用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tools-only/X-Skills --skill new-track命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Index of Build Systems Skills
Coordination patterns for distributed dataflow systems including barriers, epochs, and distributed snapshots
Windowing, sessionization, time-series aggregation, and late data handling for streaming systems
基于 SOC 职业分类
正在显示 SKILL.md
| name | new-track |
| description | Create a new development track with spec, plan, and metadata - interactive workflow |
| arguments | [{"name":"description","description":"Brief description of what you want to build","required":false}] |
| user_invocable | true |
Interactive workflow to create a new development track with specification, implementation plan, and metadata.
/conductor:new-track
/conductor:new-track "Add Stripe payment integration"
Guide the user through creating a new track:
If $ARGUMENTS provided, use it as the track goal.
If not, ask: "What would you like to build or fix?"
Create a kebab-case slug from the goal:
stripe-payment-integrationfix-login-buganalytics-dashboardconductor/tracks/{track-name}_{YYYYMMDD}/
├── spec.md # Requirements and acceptance criteria
├── plan.md # Implementation plan (created after spec)
└── metadata.json # Track configuration
Write a comprehensive spec including:
{
"version": 3,
"track_id": "{track-name}_{YYYYMMDD}",
"name": "Human-readable Track Name",
"type": "feature | bugfix | refactor | infrastructure",
"status": "new",
"superpower_enhanced": true,
"created_at": "YYYY-MM-DD",
"loop_state": {
"current_step": "NOT_STARTED",
"step_status": "NOT_STARTED",
"fix_cycle_count": 0
}
}
Note: Always set superpower_enhanced: true for new tracks — they use the superior superpowers agents by default.
Add entry to conductor/tracks.md:
| Track ID | Name | Type | Status | Created |
|----------|------|------|--------|---------|
| my-feature_20260216 | My Feature | feature | new | 2026-02-16 |
Show the user:
/conductor:implement to start| Type | When to Use |
|---|---|
feature | New user-facing functionality |
bugfix | Fixing existing broken behavior |
refactor | Improving code without changing behavior |
infrastructure | DevOps, CI/CD, tooling, dependencies |
## New Track Created
**Track**: stripe-payment-integration_20260216
**Location**: conductor/tracks/stripe-payment-integration_20260216/
**Spec Summary**:
- Add Stripe Checkout for one-time purchases
- Support card payments in 10+ currencies
- Webhook handling for payment confirmation
- Update user tier on successful payment
- Email receipt after purchase
**Type**: feature
**Complexity**: Medium (estimated 8-12 tasks)
**Superpowers**: Enabled ✓
**Files Created**:
- conductor/tracks/stripe-payment-integration_20260216/spec.md
- conductor/tracks/stripe-payment-integration_20260216/metadata.json
**Next Step**: Run `/conductor:implement` to start the Evaluate-Loop
/conductor:implement — Run the evaluate-loop on this track/conductor:status — Check track status/go — Shorthand that creates track + starts implement automatically