بنقرة واحدة
team-stop
Shutdown the active native Claude Code team, notify teammates, and cleanup
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Shutdown the active native Claude Code team, notify teammates, and cleanup
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Run an autonomous, spec-driven, tiered self/cross-verifying loop — the harness forces continuation until the goal is objectively met or a guardrail fires
Author a durable, machine-checkable SPEC.md (the anchor for an autonomous loop) with EARS-style acceptance criteria mapped to verify commands
Tier 3 작업 완료 전 N-라운드 독립검증·수정 루프. git diff를 모델 로테이션(Claude/GPT/Gemini)으로 라운드마다 독립 검증하고 수정한다.
Initialize oh-my-harness in the current project (plugin mode)
Configure oh-my-harness settings (features, thresholds, model routing, multi-agent)
Create a native Claude Code team with configured teammates and task assignments
| name | team-stop |
| description | Shutdown the active native Claude Code team, notify teammates, and cleanup |
| level | 2 |
Shutdown the active native Claude Code team: notify teammates, cleanup team and task files.
Usage: /team-stop
Read team state from .claude/.omh/teams.json.
If the file doesn't exist or is empty, report "No active team." and exit.
Check task completion: Call TaskList to see if there are incomplete tasks.
If there are in_progress or pending tasks, warn the user via AskUserQuestion:
Team '{teamName}' has {N} incomplete task(s):
- [{status}] {subject} ({owner})
- ...
What would you like to do?
continue — let teammates finish their work
stop — shutdown now (incomplete tasks will be abandoned)
cancel — abort, do nothing
continue, exit without stopping.cancel, exit without stopping.stop, proceed with shutdown.Send shutdown requests: Use SendMessage to broadcast a shutdown request to all teammates:
{ "to": "*", "message": { "type": "shutdown_request", "reason": "Team shutdown requested by user" } }
Delete team: Call TeamDelete to remove team and task directories.
TeamDelete fails because active members still exist, report the issue:
Some teammates have not yet shut down. Waiting for shutdown confirmations...
Retry TeamDelete after a brief wait (send shutdown messages again if needed).Clean up OMH state: Delete .claude/.omh/teams.json using the Bash tool:
rm -f .claude/.omh/teams.json
Report cleanup summary:
Team '{teamName}' has been shut down.
Tasks completed: {completed}/{total}
Teammates stopped: {list of names}
Team files cleaned up.