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.
How this command is triggered — by the user, by Claude, or both
Slash command
/teammcp:SKILLskills/submit-for-review/This command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
# 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` ...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-123npx claudepluginhub cookjohn/teammcp/to-reviewSets a task's status to 'review' for the given task ID via task-master CLI, generates review checklist with PR links/tests, updates docs/notes/reviewers, and sets up reminders/tracking.
/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.
/SKILLResolves GitHub issue via isolated worktree, TDD workflow, and auto-closing PR creation.
/SKILLCreates conventional git commit from conversation intent using git-agent and pushes to remote. Accepts optional Claude model name for co-author.