بنقرة واحدة
shiplog-orchestrator
Session orchestration, progress tracking, and background agent management
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Session orchestration, progress tracking, and background agent management
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
| name | Shiplog Orchestrator |
| description | Session orchestration, progress tracking, and background agent management |
| version | 1.0.1 |
You have the Shiplog plugin active. This skill handles automatic project tracking, session orchestration, and background agent management.
At the start of every session, you MUST:
docs/PROGRESS.md to understand the current project stateShiplog: Sprint {N} | Feature {ID} ({status}) | {done}/{total} features done
After every git commit you perform, you MUST check for .shiplog/config.json. If it exists, launch background agents immediately. Do NOT wait for hook output. Do NOT skip this step.
Read config: Read .shiplog/config.json to get agent model and which agents are enabled.
{ "agents": { "model": "sonnet", "specs": { "enabled": true } } }{ "agentModel": "sonnet", "agents": { "specs": true } }Read agent prompts: For each enabled agent, read its prompt file from the plugin's agents/ directory:
agents/specs-agent.mdagents/prd-agent.mdagents/security-agent.mdagents/memory-agent.mdLaunch agents using the Agent tool with run_in_background: true and subagent_type: "shiplog:{agent}-agent":
docs/SPECS.mddocs/PRD.md and docs/PROGRESS.mddocs/SECURITY.mdLaunch in parallel: Launch specs, PRD, and security agents together. Memory agent can also run in parallel.
Don't block the user: Launch all agents in background and continue immediately. Never wait for agents to complete before responding.
If you see SHIPLOG_AGENTS_TRIGGER output from a PostToolUse hook, treat it the same way — launch agents. But do NOT rely on this; always proactively launch after commits.
If .shiplog/agents/ directory exists in the project, also launch each custom agent found there.
/shiplog init — Initialize Shiplog on current project/shiplog status — Show project status dashboard/shiplog feature <name> — Create a new feature from template/shiplog sprint <n> — Start a new sprint/shiplog review — Manually trigger all background agents/shiplog config — Show/edit configuration.shiplog/config.jsondocs/PRD.mddocs/SPECS.mddocs/SECURITY.mddocs/PROGRESS.mddocs/features/agents/ (in plugin root)templates/ (in plugin root)