conductor-status by sickn33/antigravity-awesome-skills
npx skills add https://github.com/sickn33/antigravity-awesome-skills --skill conductor-status显示 Conductor 项目的当前状态,包括整体进度、活跃的轨道和后续操作。
resources/implementation-playbook.md。conductor/product.md 是否存在conductor/tracks.md 是否存在/conductor:setup广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
conductor/tracks.md读取 conductor/product.md 并提取:
读取 conductor/tracks.md 并解析:
[x])[~])[ ])对于 conductor/tracks/ 中的每个轨道:
读取 conductor/tracks/{trackId}/plan.md:
- [x]、- [~]、- [ ] 且以 Task 为前缀的行)[x])[~])[ ])[ ] 或 [~] 的阶段)读取 conductor/tracks/{trackId}/metadata.json:
读取 conductor/tracks/{trackId}/spec.md:
扫描潜在的阻塞项:
BLOCKED: 前缀的任务================================================================================
项目状态: {Project Name}
================================================================================
最后更新: {current timestamp}
--------------------------------------------------------------------------------
整体进度
--------------------------------------------------------------------------------
轨道: {completed}/{total} 完成 ({percentage}%)
任务: {completed}/{total} 完成 ({percentage}%)
进度: [##########..........] {percentage}%
--------------------------------------------------------------------------------
轨道摘要
--------------------------------------------------------------------------------
| 状态 | 轨道 ID | 类型 | 任务 | 最后更新 |
|--------|-------------------|---------|------------|--------------|
| [x] | auth_20250110 | feature | 12/12 (100%)| 2025-01-12 |
| [~] | dashboard_20250112| feature | 7/15 (47%) | 2025-01-15 |
| [ ] | nav-fix_20250114 | bug | 0/4 (0%) | 2025-01-14 |
--------------------------------------------------------------------------------
当前焦点
--------------------------------------------------------------------------------
活跃轨道: dashboard_20250112 - Dashboard Feature
当前阶段: Phase 2: Core Components
当前任务: [~] Task 2.3: Implement chart rendering
阶段内进度:
- [x] Task 2.1: Create dashboard layout
- [x] Task 2.2: Add data fetching hooks
- [~] Task 2.3: Implement chart rendering
- [ ] Task 2.4: Add filter controls
--------------------------------------------------------------------------------
后续操作
--------------------------------------------------------------------------------
1. 完成: Task 2.3 - Implement chart rendering (dashboard_20250112)
2. 然后: Task 2.4 - Add filter controls (dashboard_20250112)
3. Phase 2 之后: Phase verification checkpoint
--------------------------------------------------------------------------------
阻塞项
--------------------------------------------------------------------------------
{如果发现阻塞项:}
! BLOCKED: Task 3.1 in dashboard_20250112 depends on api_20250111 (incomplete)
{如果无阻塞项:}
未发现阻塞项。
================================================================================
命令: /conductor:implement {trackId} | /conductor:new-track | /conductor:revert
================================================================================
================================================================================
轨道状态: {Track Title}
================================================================================
轨道 ID: {trackId}
类型: {feature|bug|chore|refactor}
状态: {Pending|In Progress|Complete}
创建于: {date}
更新于: {date}
--------------------------------------------------------------------------------
规格说明
--------------------------------------------------------------------------------
摘要: {brief summary from spec.md}
验收标准:
- [x] {Criterion 1}
- [ ] {Criterion 2}
- [ ] {Criterion 3}
--------------------------------------------------------------------------------
实施情况
--------------------------------------------------------------------------------
整体: {completed}/{total} 任务 ({percentage}%)
进度: [##########..........] {percentage}%
## Phase 1: {Phase Name} [完成]
- [x] Task 1.1: {description}
- [x] Task 1.2: {description}
- [x] Verification: {description}
## Phase 2: {Phase Name} [进行中]
- [x] Task 2.1: {description}
- [~] Task 2.2: {description} <-- 当前
- [ ] Task 2.3: {description}
- [ ] Verification: {description}
## Phase 3: {Phase Name} [待处理]
- [ ] Task 3.1: {description}
- [ ] Task 3.2: {description}
- [ ] Verification: {description}
--------------------------------------------------------------------------------
GIT 历史
--------------------------------------------------------------------------------
相关提交:
abc1234 - feat: add login form ({trackId})
def5678 - feat: add password validation ({trackId})
ghi9012 - chore: mark task 1.2 complete ({trackId})
--------------------------------------------------------------------------------
后续步骤
--------------------------------------------------------------------------------
1. 当前: Task 2.2 - {description}
2. 下一步: Task 2.3 - {description}
3. Phase 2 验证待处理
================================================================================
命令: /conductor:implement {trackId} | /conductor:revert {trackId}
================================================================================
如有需要,在底部显示:
Legend:
[x] = 完成
[~] = 进行中
[ ] = 待处理
[!] = 已阻塞
================================================================================
项目状态: {Project Name}
================================================================================
Conductor 已设置,但尚未创建任何轨道。
开始使用:
/conductor:new-track "your feature description"
================================================================================
ERROR: Conductor 未初始化
未找到 conductor/product.md
请运行 /conductor:setup 来为此项目初始化 Conductor。
ERROR: 未找到轨道: {argument}
可用轨道:
- auth_20250115
- dashboard_20250112
- nav-fix_20250114
用法: /conductor:status [track-id]
For each plan.md:
- Complete: count lines matching /^- \[x\] Task/
- In Progress: count lines matching /^- \[~\] Task/
- Pending: count lines matching /^- \[ \] Task/
- Total: Complete + In Progress + Pending
Current phase = first phase header followed by any incomplete task ([ ] or [~])
filled = floor((completed / total) * 20)
empty = 20 - filled
bar = "[" + "#".repeat(filled) + ".".repeat(empty) + "]"
如果使用 --quick 或 -q 调用:
{Project Name}: {completed}/{total} 任务 ({percentage}%)
Active: {trackId} - Task {X.Y}
如果使用 --json 调用:
{
"project": "{name}",
"timestamp": "ISO_TIMESTAMP",
"tracks": {
"total": N,
"completed": X,
"in_progress": Y,
"pending": Z
},
"tasks": {
"total": M,
"completed": A,
"in_progress": B,
"pending": C
},
"current": {
"track": "{trackId}",
"phase": N,
"task": "{X.Y}"
},
"blockers": []
}
每周安装量
106
代码仓库
GitHub 星标数
27.1K
首次出现
2026年1月28日
安全审计
安装于
gemini-cli99
opencode98
codex96
github-copilot94
antigravity93
cursor93
Display the current status of the Conductor project, including overall progress, active tracks, and next actions.
resources/implementation-playbook.md.Verify Conductor is initialized:
conductor/product.md existsconductor/tracks.md exists/conductor:setup firstCheck for any tracks:
conductor/tracks.mdRead conductor/product.md and extract:
Read conductor/tracks.md and parse:
[x])[~])[ ])For each track in conductor/tracks/:
Read conductor/tracks/{trackId}/plan.md:
- [x], - [~], - [ ] with Task prefix)[x])[~])[ ])Read conductor/tracks/{trackId}/metadata.json:
Read conductor/tracks/{trackId}/spec.md:
Scan for potential blockers:
BLOCKED: prefix================================================================================
PROJECT STATUS: {Project Name}
================================================================================
Last Updated: {current timestamp}
--------------------------------------------------------------------------------
OVERALL PROGRESS
--------------------------------------------------------------------------------
Tracks: {completed}/{total} completed ({percentage}%)
Tasks: {completed}/{total} completed ({percentage}%)
Progress: [##########..........] {percentage}%
--------------------------------------------------------------------------------
TRACK SUMMARY
--------------------------------------------------------------------------------
| Status | Track ID | Type | Tasks | Last Updated |
|--------|-------------------|---------|------------|--------------|
| [x] | auth_20250110 | feature | 12/12 (100%)| 2025-01-12 |
| [~] | dashboard_20250112| feature | 7/15 (47%) | 2025-01-15 |
| [ ] | nav-fix_20250114 | bug | 0/4 (0%) | 2025-01-14 |
--------------------------------------------------------------------------------
CURRENT FOCUS
--------------------------------------------------------------------------------
Active Track: dashboard_20250112 - Dashboard Feature
Current Phase: Phase 2: Core Components
Current Task: [~] Task 2.3: Implement chart rendering
Progress in Phase:
- [x] Task 2.1: Create dashboard layout
- [x] Task 2.2: Add data fetching hooks
- [~] Task 2.3: Implement chart rendering
- [ ] Task 2.4: Add filter controls
--------------------------------------------------------------------------------
NEXT ACTIONS
--------------------------------------------------------------------------------
1. Complete: Task 2.3 - Implement chart rendering (dashboard_20250112)
2. Then: Task 2.4 - Add filter controls (dashboard_20250112)
3. After Phase 2: Phase verification checkpoint
--------------------------------------------------------------------------------
BLOCKERS
--------------------------------------------------------------------------------
{If blockers found:}
! BLOCKED: Task 3.1 in dashboard_20250112 depends on api_20250111 (incomplete)
{If no blockers:}
No blockers identified.
================================================================================
Commands: /conductor:implement {trackId} | /conductor:new-track | /conductor:revert
================================================================================
================================================================================
TRACK STATUS: {Track Title}
================================================================================
Track ID: {trackId}
Type: {feature|bug|chore|refactor}
Status: {Pending|In Progress|Complete}
Created: {date}
Updated: {date}
--------------------------------------------------------------------------------
SPECIFICATION
--------------------------------------------------------------------------------
Summary: {brief summary from spec.md}
Acceptance Criteria:
- [x] {Criterion 1}
- [ ] {Criterion 2}
- [ ] {Criterion 3}
--------------------------------------------------------------------------------
IMPLEMENTATION
--------------------------------------------------------------------------------
Overall: {completed}/{total} tasks ({percentage}%)
Progress: [##########..........] {percentage}%
## Phase 1: {Phase Name} [COMPLETE]
- [x] Task 1.1: {description}
- [x] Task 1.2: {description}
- [x] Verification: {description}
## Phase 2: {Phase Name} [IN PROGRESS]
- [x] Task 2.1: {description}
- [~] Task 2.2: {description} <-- CURRENT
- [ ] Task 2.3: {description}
- [ ] Verification: {description}
## Phase 3: {Phase Name} [PENDING]
- [ ] Task 3.1: {description}
- [ ] Task 3.2: {description}
- [ ] Verification: {description}
--------------------------------------------------------------------------------
GIT HISTORY
--------------------------------------------------------------------------------
Related Commits:
abc1234 - feat: add login form ({trackId})
def5678 - feat: add password validation ({trackId})
ghi9012 - chore: mark task 1.2 complete ({trackId})
--------------------------------------------------------------------------------
NEXT STEPS
--------------------------------------------------------------------------------
1. Current: Task 2.2 - {description}
2. Next: Task 2.3 - {description}
3. Phase 2 verification pending
================================================================================
Commands: /conductor:implement {trackId} | /conductor:revert {trackId}
================================================================================
Display at bottom if helpful:
Legend:
[x] = Complete
[~] = In Progress
[ ] = Pending
[!] = Blocked
================================================================================
PROJECT STATUS: {Project Name}
================================================================================
Conductor is set up but no tracks have been created yet.
To get started:
/conductor:new-track "your feature description"
================================================================================
ERROR: Conductor not initialized
Could not find conductor/product.md
Run /conductor:setup to initialize Conductor for this project.
ERROR: Track not found: {argument}
Available tracks:
- auth_20250115
- dashboard_20250112
- nav-fix_20250114
Usage: /conductor:status [track-id]
For each plan.md:
- Complete: count lines matching /^- \[x\] Task/
- In Progress: count lines matching /^- \[~\] Task/
- Pending: count lines matching /^- \[ \] Task/
- Total: Complete + In Progress + Pending
Current phase = first phase header followed by any incomplete task ([ ] or [~])
filled = floor((completed / total) * 20)
empty = 20 - filled
bar = "[" + "#".repeat(filled) + ".".repeat(empty) + "]"
If invoked with --quick or -q:
{Project Name}: {completed}/{total} tasks ({percentage}%)
Active: {trackId} - Task {X.Y}
If invoked with --json:
{
"project": "{name}",
"timestamp": "ISO_TIMESTAMP",
"tracks": {
"total": N,
"completed": X,
"in_progress": Y,
"pending": Z
},
"tasks": {
"total": M,
"completed": A,
"in_progress": B,
"pending": C
},
"current": {
"track": "{trackId}",
"phase": N,
"task": "{X.Y}"
},
"blockers": []
}
Weekly Installs
106
Repository
GitHub Stars
27.1K
First Seen
Jan 28, 2026
Security Audits
Gen Agent Trust HubPassSocketPassSnykPass
Installed on
gemini-cli99
opencode98
codex96
github-copilot94
antigravity93
cursor93
Azure Data Explorer (Kusto) 查询技能:KQL数据分析、日志遥测与时间序列处理
133,300 周安装