بنقرة واحدة
project-management
Use when managing multi-worker projects with phases, dependencies, and shared deliverables.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Use when managing multi-worker projects with phases, dependencies, and shared deliverables.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Use when you need to interact with the AgentHub Controller — create tasks, create workers, check status, send heartbeat.
Use when inspecting, registering, summarizing, or handing off task artifacts.
Use when deciding whether existing Workers can handle a goal or whether a new Worker/team should be proposed.
Use when you need to manage Matrix rooms, send messages, or handle room participants.
Use when a Worker, RuntimeLease, Matrix binding, task, or artifact pipeline is stale, failed, or blocked.
Use when managing shared task files and artifact storage. Coordinate file handoffs between workers via shared storage.
| name | project-management |
| description | Use when managing multi-worker projects with phases, dependencies, and shared deliverables. |
Coordinate multi-worker projects with structured phases and task dependencies.
shared/projects/{project-id}/
├── meta.json # Project metadata (status, team, phases)
├── plan.md # Project plan with task assignments and dependencies
└── results/ # Collected deliverables
agenthub run status --id <run-id>.# Read the current Controller operation schema before applying project resources.
agenthub schema
# Create a project run
agenthub run create --workspace <id> --goal "Project: <description>"
# Create tasks with dependencies
agenthub task create --workspace <id> --run <run-id> --title "Phase 1: Design" --assign-to <designer>
agenthub task create --workspace <id> --run <run-id> --title "Phase 2: Build" --assign-to <builder>
# Apply Worker / Room / Task manifests when a project needs auditable setup
agenthub apply -f project-workers.yaml
agenthub apply -f project-rooms.yaml
agenthub apply -f project-tasks.yaml
# Monitor project progress
agenthub run status --id <run-id>
agenthub schema to confirm current Worker / Room / Task capabilities.