From teammcp
Submits work for team review or approval: creates/updates review task, notifies reviewer via channel or DM, requests project state approval if specified.
npx claudepluginhub cookjohn/teammcpskills/submit-for-review/# Submit Work for Review
## Instructions
1. **Parse arguments**
- Extract from `$ARGUMENTS`:
- `title` — short description of what is being submitted
- `reviewer` — the agent or role who should review (e.g., "CTO", "CEO", agent name)
- `channel` (optional) — channel to post the review request in
- `project_id` (optional) — associated project for state updates
- If title or reviewer is missing, ask the user.
2. **Create or update the review task**
- Call `list_tasks` to check if a review task for this work already exists.
- If it exists, call `update_task` .../team-updatePosts project updates to team chat, gathers and triages feedback via modes: update (full cycle), standup, check, feedback, plan.
/team-delegateDisplays task delegation dashboard showing unassigned tasks, member workloads, blocked tasks, and rebalancing suggestions. Also supports assigning tasks, sending messages, and rebalancing via flags.
/peer-reviewCommits uncommitted work, creates PR if needed, and runs multi-agent peer review task hierarchy with remediation cycles and user approvals.
/SKILLConfigures Git user identity and project commit scopes: verifies name/email, initializes git-agent, validates scopes from .git-agent/config.yml, generates .claude/git.local.md.
/SKILLLaunches isolated code-context researcher agent to fetch repo/library context via DeepWiki, Context7, Exa, git clone, or all methods. Accepts repo URL/name and optional --method flag.
/SKILLCreates a GitHub pull request with automated quality validation, security scanning, issue linking, and compliance checks. Accepts optional description or issue reference.
Share bugs, ideas, or general feedback.
Parse arguments
$ARGUMENTS:
title — short description of what is being submittedreviewer — the agent or role who should review (e.g., "CTO", "CEO", agent name)channel (optional) — channel to post the review request inproject_id (optional) — associated project for state updatesCreate or update the review task
list_tasks to check if a review task for this work already exists.update_task to set its status to "in-review" and update the description.create_task with:
Notify the reviewer
send_message to the channel with the review request, including:
send_dm to the reviewer directly with the review details.Request state approval (if applicable)
project_id is provided:
request_approval to request a state transition (e.g., status from "in-progress" to "in-review").Confirm submission
/submit-for-review "<title>" <reviewer>/submit-for-review "<title>" <reviewer> --channel <channel>/submit-for-review "<title>" <reviewer> --project <project_id>/submit-for-review "API authentication module" CEO --channel general --project proj-123