AgentSkillsCN

project-status

在 WORKDIR 和 IDEATION 环境中,统筹多代理工作流,以实现项目状态的全面汇报。适用于用户要求获取项目状态概览、发起扫描任务,或仅需“运行项目状态报告”时使用。

SKILL.md
--- frontmatter
name: project-status
description: Orchestrate multi-agent workflow for project status reporting across WORKDIR and IDEATION. Use when user asks for project status overview, requests a scan, or says "run project status."

Project Status

Run a multi-agent workflow for project analysis and reporting.

Quick Start

bash
# Full workflow (scan + analyze + report + commit)
uv run ~/.config/opencode/skill/util-project-status/scripts/orchestrator.py

# Dry run (no file writes)
uv run ~/.config/opencode/skill/util-project-status/scripts/orchestrator.py --dry-run

# Skip git commit
uv run ~/.config/opencode/skill/util-project-status/scripts/orchestrator.py --no-commit

Scan Only

bash
# Just scan projects without full analysis
uv run ~/.config/opencode/skill/util-project-status/scripts/scan_projects.py

# Show last scan result
uv run ~/.config/opencode/skill/util-project-status/scripts/scan_projects.py --latest

# Machine-readable output
uv run ~/.config/opencode/skill/util-project-status/scripts/scan_projects.py --json

Workflow Steps

StepAgentDescription
0L1Run scan_projects.py → discovery.json
1L1×9Analyze projects in parallel → analyses.json
2L3Write STATUT.md using template
3L2Append post-mortem
4L2Commit files to git
5-Summary to user

Output Structure

code
EXPORT/statut_de_projet/
├── STATUT_<run_id>/
│   ├── discovery.json
│   └── STATUT.md
└── historique/
    └── STATUT_<previous_run>/

Constraints

  • Max 9 parallel agents
  • 60s timeout per agent

References