用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tools-only/X-Skills --skill setup命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 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 | setup |
| description | Initialize the Conductor environment in a new project - creates conductor/ directory structure |
| user_invocable | true |
Set up the Conductor workflow system in a new project. Creates the directory structure, registry files, and documentation needed to start using tracks.
/conductor:setup
conductor/
├── tracks.md # Track registry (list of all tracks)
├── index.md # Current project status overview
├── workflow.md # Evaluate-Loop process documentation
├── decision-log.md # Business and technical decision history
├── knowledge/
│ ├── patterns.md # Discovered code patterns and conventions
│ └── errors.json # Known errors and their fixes
└── tracks/ # Individual track directories (created per-track)
If conductor/ directory exists, show current status instead of reinitializing.
mkdir -p conductor/tracks
mkdir -p conductor/knowledge
# Conductor Track Registry
Active and completed development tracks.
## Active Tracks
| Track ID | Name | Type | Status | Step | Created |
|----------|------|------|--------|------|---------|
| (none yet) | | | | | |
## Completed Tracks
| Track ID | Name | Completed | Summary |
|----------|------|-----------|---------|
| (none yet) | | | |
# Project Status
**Last Updated**: YYYY-MM-DD
## Current Focus
(no active tracks)
## Recent Completions
(none)
## System Health
- Conductor v3 initialized
- Superpowers: enabled
# Decision Log
Technical and business decisions made during development.
## Format
### DECISION-XXX: [Title]
- **Date**: YYYY-MM-DD
- **Track**: track-id
- **Decision**: What was decided
- **Rationale**: Why this decision was made
- **Alternatives**: What else was considered
- **Impact**: Effects on architecture/product/business
# Code Patterns & Conventions
Discovered patterns from the codebase.
## Architecture Patterns
(add as discovered)
## Common Solutions
(add as discovered)
## Anti-patterns to Avoid
(add as discovered)
{
"version": 1,
"errors": []
}
Copy or reference the Conductor workflow documentation from the plugin's docs/workflow.md.
## Conductor Initialized
**Location**: conductor/
**Files Created**: 6 files, 2 directories
**Next Steps**:
1. Run `/conductor:new-track` to create your first development track
2. Or run `/go <your goal>` to create and start a track automatically
**Quick Start**:
/go Add user authentication
If conductor/ already exists:
## Conductor Already Initialized
**Status**: Active
**Tracks**: 3 active, 7 complete
**Last Activity**: 2026-02-16
Run `/conductor:status` to see current state.
/conductor:new-track — Create your first track/go — Start working immediatelyconductor/workflow.md — Full process documentation