[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-f40feed2-afdc-49f3-bc24-ff85f56f647c":3,"$fqA2qMSki6bfBj6VlaF0LbxR7Wxo6zSUeIprXdSNkqeM":43},{"id":4,"title":5,"description":6,"categoryId":7,"moduleId":8,"tags":9,"prompt":10,"icon":11,"source":12,"sourceUrl":13,"authorId":14,"authorName":15,"isPublic":16,"stars":17,"runs":18,"createdAt":19,"updatedAt":19,"module":20,"category":27,"packages":34},"f40feed2-afdc-49f3-bc24-ff85f56f647c","conductor-status","显示项目状态、活动跟踪和下一步行动","cat_life_career","mod_other","sickn33,other","---\nname: conductor-status\ndescription: \"Display project status, active tracks, and next actions\"\nrisk: unknown\nsource: community\ndate_added: \"2026-02-27\"\n---\n\n# Conductor Status\n\nDisplay the current status of the Conductor project, including overall progress, active tracks, and next actions.\n\n## Use this skill when\n\n- Working on conductor status tasks or workflows\n- Needing guidance, best practices, or checklists for conductor status\n\n## Do not use this skill when\n\n- The task is unrelated to conductor status\n- You need a different domain or tool outside this scope\n\n## Instructions\n\n- Clarify goals, constraints, and required inputs.\n- Apply relevant best practices and validate outcomes.\n- Provide actionable steps and verification.\n- If detailed examples are required, open `resources\u002Fimplementation-playbook.md`.\n\n## Pre-flight Checks\n\n1. Verify Conductor is initialized:\n   - Check `conductor\u002Fproduct.md` exists\n   - Check `conductor\u002Ftracks.md` exists\n   - If missing: Display error and suggest running `\u002Fconductor:setup` first\n\n2. Check for any tracks:\n   - Read `conductor\u002Ftracks.md`\n   - If no tracks registered: Display setup complete message with suggestion to create first track\n\n## Data Collection\n\n### 1. Project Information\n\nRead `conductor\u002Fproduct.md` and extract:\n\n- Project name\n- Project description\n\n### 2. Tracks Overview\n\nRead `conductor\u002Ftracks.md` and parse:\n\n- Total tracks count\n- Completed tracks (marked `[x]`)\n- In-progress tracks (marked `[~]`)\n- Pending tracks (marked `[ ]`)\n\n### 3. Detailed Track Analysis\n\nFor each track in `conductor\u002Ftracks\u002F`:\n\nRead `conductor\u002Ftracks\u002F{trackId}\u002Fplan.md`:\n\n- Count total tasks (lines matching `- [x]`, `- [~]`, `- [ ]` with Task prefix)\n- Count completed tasks (`[x]`)\n- Count in-progress tasks (`[~]`)\n- Count pending tasks (`[ ]`)\n- Identify current phase (first phase with incomplete tasks)\n- Identify next pending task\n\nRead `conductor\u002Ftracks\u002F{trackId}\u002Fmetadata.json`:\n\n- Track type (feature, bug, chore, refactor)\n- Created date\n- Last updated date\n- Status\n\nRead `conductor\u002Ftracks\u002F{trackId}\u002Fspec.md`:\n\n- Check for any noted blockers or dependencies\n\n### 4. Blocker Detection\n\nScan for potential blockers:\n\n- Tasks marked with `BLOCKED:` prefix\n- Dependencies on incomplete tracks\n- Failed verification tasks\n\n## Output Format\n\n### Full Project Status (no argument)\n\n```\n================================================================================\n                        PROJECT STATUS: {Project Name}\n================================================================================\nLast Updated: {current timestamp}\n\n--------------------------------------------------------------------------------\n                              OVERALL PROGRESS\n--------------------------------------------------------------------------------\n\nTracks:     {completed}\u002F{total} completed ({percentage}%)\nTasks:      {completed}\u002F{total} completed ({percentage}%)\n\nProgress:   [##########..........] {percentage}%\n\n--------------------------------------------------------------------------------\n                              TRACK SUMMARY\n--------------------------------------------------------------------------------\n\n| Status | Track ID          | Type    | Tasks      | Last Updated |\n|--------|-------------------|---------|------------|--------------|\n| [x]    | auth_20250110     | feature | 12\u002F12 (100%)| 2025-01-12  |\n| [~]    | dashboard_20250112| feature | 7\u002F15 (47%) | 2025-01-15  |\n| [ ]    | nav-fix_20250114  | bug     | 0\u002F4 (0%)   | 2025-01-14  |\n\n--------------------------------------------------------------------------------\n                              CURRENT FOCUS\n--------------------------------------------------------------------------------\n\nActive Track:  dashboard_20250112 - Dashboard Feature\nCurrent Phase: Phase 2: Core Components\nCurrent Task:  [~] Task 2.3: Implement chart rendering\n\nProgress in Phase:\n  - [x] Task 2.1: Create dashboard layout\n  - [x] Task 2.2: Add data fetching hooks\n  - [~] Task 2.3: Implement chart rendering\n  - [ ] Task 2.4: Add filter controls\n\n--------------------------------------------------------------------------------\n                              NEXT ACTIONS\n--------------------------------------------------------------------------------\n\n1. Complete: Task 2.3 - Implement chart rendering (dashboard_20250112)\n2. Then: Task 2.4 - Add filter controls (dashboard_20250112)\n3. After Phase 2: Phase verification checkpoint\n\n--------------------------------------------------------------------------------\n                               BLOCKERS\n--------------------------------------------------------------------------------\n\n{If blockers found:}\n! BLOCKED: Task 3.1 in dashboard_20250112 depends on api_20250111 (incomplete)\n\n{If no blockers:}\nNo blockers identified.\n\n================================================================================\nCommands: \u002Fconductor:implement {trackId} | \u002Fconductor:new-track | \u002Fconductor:revert\n================================================================================\n```\n\n### Single Track Status (with track-id argument)\n\n```\n================================================================================\n                    TRACK STATUS: {Track Title}\n================================================================================\nTrack ID:    {trackId}\nType:        {feature|bug|chore|refactor}\nStatus:      {Pending|In Progress|Complete}\nCreated:     {date}\nUpdated:     {date}\n\n--------------------------------------------------------------------------------\n                              SPECIFICATION\n--------------------------------------------------------------------------------\n\nSummary: {brief summary from spec.md}\n\nAcceptance Criteria:\n  - [x] {Criterion 1}\n  - [ ] {Criterion 2}\n  - [ ] {Criterion 3}\n\n--------------------------------------------------------------------------------\n                              IMPLEMENTATION\n--------------------------------------------------------------------------------\n\nOverall:    {completed}\u002F{total} tasks ({percentage}%)\nProgress:   [##########..........] {percentage}%\n\n## Phase 1: {Phase Name} [COMPLETE]\n  - [x] Task 1.1: {description}\n  - [x] Task 1.2: {description}\n  - [x] Verification: {description}\n\n## Phase 2: {Phase Name} [IN PROGRESS]\n  - [x] Task 2.1: {description}\n  - [~] Task 2.2: {description}  \u003C-- CURRENT\n  - [ ] Task 2.3: {description}\n  - [ ] Verification: {description}\n\n## Phase 3: {Phase Name} [PENDING]\n  - [ ] Task 3.1: {description}\n  - [ ] Task 3.2: {description}\n  - [ ] Verification: {description}\n\n--------------------------------------------------------------------------------\n                              GIT HISTORY\n--------------------------------------------------------------------------------\n\nRelated Commits:\n  abc1234 - feat: add login form ({trackId})\n  def5678 - feat: add password validation ({trackId})\n  ghi9012 - chore: mark task 1.2 complete ({trackId})\n\n--------------------------------------------------------------------------------\n                              NEXT STEPS\n--------------------------------------------------------------------------------\n\n1. Current: Task 2.2 - {description}\n2. Next: Task 2.3 - {description}\n3. Phase 2 verification pending\n\n================================================================================\nCommands: \u002Fconductor:implement {trackId} | \u002Fconductor:revert {trackId}\n================================================================================\n```\n\n## Status Markers Legend\n\nDisplay at bottom if helpful:\n\n```\nLegend:\n  [x] = Complete\n  [~] = In Progress\n  [ ] = Pending\n  [!] = Blocked\n```\n\n## Error States\n\n### No Tracks Found\n\n```\n================================================================================\n                        PROJECT STATUS: {Project Name}\n================================================================================\n\nConductor is set up but no tracks have been created yet.\n\nTo get started:\n  \u002Fconductor:new-track \"your feature description\"\n\n================================================================================\n```\n\n### Conductor Not Initialized\n\n```\nERROR: Conductor not initialized\n\nCould not find conductor\u002Fproduct.md\n\nRun \u002Fconductor:setup to initialize Conductor for this project.\n```\n\n### Track Not Found (with argument)\n\n```\nERROR: Track not found: {argument}\n\nAvailable tracks:\n  - auth_20250115\n  - dashboard_20250112\n  - nav-fix_20250114\n\nUsage: \u002Fconductor:status [track-id]\n```\n\n## Calculation Logic\n\n### Task Counting\n\n```\nFor each plan.md:\n  - Complete: count lines matching \u002F^- \\[x\\] Task\u002F\n  - In Progress: count lines matching \u002F^- \\[~\\] Task\u002F\n  - Pending: count lines matching \u002F^- \\[ \\] Task\u002F\n  - Total: Complete + In Progress + Pending\n```\n\n### Phase Detection\n\n```\nCurrent phase = first phase header followed by any incomplete task ([ ] or [~])\n```\n\n### Progress Bar\n\n```\nfilled = floor((completed \u002F total) * 20)\nempty = 20 - filled\nbar = \"[\" + \"#\".repeat(filled) + \".\".repeat(empty) + \"]\"\n```\n\n## Quick Mode\n\nIf invoked with `--quick` or `-q`:\n\n```\n{Project Name}: {completed}\u002F{total} tasks ({percentage}%)\nActive: {trackId} - Task {X.Y}\n```\n\n## JSON Output\n\nIf invoked with `--json`:\n\n```json\n{\n  \"project\": \"{name}\",\n  \"timestamp\": \"ISO_TIMESTAMP\",\n  \"tracks\": {\n    \"total\": N,\n    \"completed\": X,\n    \"in_progress\": Y,\n    \"pending\": Z\n  },\n  \"tasks\": {\n    \"total\": M,\n    \"completed\": A,\n    \"in_progress\": B,\n    \"pending\": C\n  },\n  \"current\": {\n    \"track\": \"{trackId}\",\n    \"phase\": N,\n    \"task\": \"{X.Y}\"\n  },\n  \"blockers\": []\n}\n```\n\n## Limitations\n- Use this skill only when the task clearly matches the scope described above.\n- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.\n- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.\n","","imported","https:\u002F\u002Fgithub.com\u002Fsickn33\u002Fantigravity-awesome-skills","user_system_seed","SkillOPIC",true,233,1369,"2026-05-16 13:12:41",{"id":8,"name":21,"slug":22,"icon":23,"description":24,"sort":25,"createdAt":26},"其他","other","mdi-page-next-outline","其他类型Skill",5,"2026-05-16 12:53:40",{"id":7,"name":28,"slug":29,"icon":30,"description":31,"moduleId":8,"sort":32,"skillCount":33,"createdAt":26},"职场发展","career","mdi-briefcase-outline","面试准备、简历优化、职业规划",4,575,[35],{"id":36,"skillId":4,"version":37,"fileName":38,"fileSize":39,"filePath":40,"fileHash":41,"manifest":42,"createdAt":19},"34dbce0e-abc5-455c-95d4-2c56c63cb243","1.0.0","conductor-status.zip",3063,"uploads\u002Fskills\u002Ff40feed2-afdc-49f3-bc24-ff85f56f647c\u002Fconductor-status.zip","ddba87ca5dd9cfa4a0ee559dc1b450aefef447fd44b2680d64603ab57c35527a","[{\"path\":\"SKILL.md\",\"isDirectory\":false,\"size\":9872}]",{"code":44,"message":45,"data":46},200,"success",{"items":47,"stats":48,"page":51},[],{"averageRating":49,"totalRatings":49,"ratingCounts":50},0,[49,49,49,49,49],{"limit":52,"offset":49,"hasMore":53,"nextOffset":52,"ratedOnly":16},15,false]