소스 정보
- 저장소
- tools-only/X-Skills
- 최근 소스 활동
- 2026년 2월 18일 19:10
- 감지된 SKILL.md 언어
- 영어
- 스타
- 7
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
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