ワンクリックで
aw-done
Mark a task as completed and notify the principal agent. Usage — /aw-done <task-id> ["optional completion note"]
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Mark a task as completed and notify the principal agent. Usage — /aw-done <task-id> ["optional completion note"]
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Orient yourself at the start of an AgentWeave session — read your assigned role from roles.json, check your inbox for unread messages, and list your active tasks. Run this automatically at the beginning of any session in an AgentWeave project.
Manage scheduled AI jobs in AgentWeave — create recurring tasks that trigger agents on a cron schedule. Usage — /aw-jobs [list|create|pause|resume|delete|run]
Delegate a task to another agent in the AgentWeave session. Usage — /aw-delegate <agent> "<task description>"
Generate a relay prompt to hand off pending work to another agent manually. Usage — /aw-relay <agent-name>
Request a code review from another agent in the AgentWeave session. Usage — /aw-review "<what to review>" ["focus area or specific concern"]
Accept a revision request for a task that came back as revision_needed — acknowledge receipt, move the task back to in_progress, and notify the principal. Usage — /aw-revise <task-id> ["what you plan to do"]
| name | aw-done |
| description | Mark a task as completed and notify the principal agent. Usage — /aw-done <task-id> ["optional completion note"] |
| disable-model-invocation | true |
Mark a task as completed and notify the principal.
Project: Agentweave Principal to notify: claude Mode: hierarchical
Parse $ARGUMENTS as: <task-id> ["optional note"]
Steps:
agentweave task show <task-id> to display the task details and confirm with the user that this is the correct task.agentweave task update <task-id> --status completed (include --note "<note>" if a note was provided).agentweave msg send --to claude --type message --subject "Completed: <task-title>" --task-id <task-id> --message "Task <task-id> is complete. <note if provided>"agentweave task update <task-id> --status under_review and update the message subject to "Ready for review: "agentweave transport status
agentweave relay --agent claude and show the relay prompt so the user can hand it off.Report: task ID, final status, whether relay is needed.