Marketplace use-conductor
Scan conductor/ directory for project direction, workflows, and task planning when present
install
source · Clone the upstream repo
git clone https://github.com/aiskillstore/marketplace
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/aiskillstore/marketplace "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/89jobrien/use-conductor" ~/.claude/skills/aiskillstore-marketplace-use-conductor && rm -rf "$T"
manifest:
skills/89jobrien/use-conductor/SKILL.mdsource content
Use Conductor
Scan the
conductor/ directory at project root for structured project management files that provide direction, workflows,
and task planning context.
When to Use
Use this skill when:
- Starting work on a project that may have conductor files
- Looking for project context, guidelines, or current tasks
- Needing to understand the project's workflow methodology
- Determining what work is in progress or next in queue
Conductor Directory Structure
The conductor system uses this structure:
conductor/ ├── product.md # Product vision and purpose ├── product-guidelines.md # Standards and conventions ├── tech-stack.md # Technology decisions ├── workflow.md # Task execution methodology ├── tracks.md # Index of active work tracks ├── setup_state.json # Setup progress state ├── code_styleguides/ # Language-specific style guides │ ├── general.md │ └── python.md └── tracks/ # Detailed track plans └── <track_name>/ ├── spec.md # Track specification ├── plan.md # Task checklist with progress └── metadata.json # Track metadata
File Purposes
| File | Purpose |
|---|---|
| Product vision, target audience, core features |
| Naming conventions, quality standards, documentation rules |
| Approved technologies and libraries |
| TDD methodology, task workflow, commit guidelines |
| High-level index of all work tracks |
| Detailed task checklist with , , status |
| Goals, scope, and success criteria for the track |
How to Scan
- Check if
directory exists at project rootconductor/ - If present, read core files to understand project context:
for visionproduct.md
for standardsproduct-guidelines.md
for active worktracks.md
- For active tracks (marked
), read the track's[~]
to find current tasksplan.md - Follow the workflow methodology defined in
workflow.md
Task Status Markers
In
plan.md files:
- Task not started[ ]
- Task in progress[~]
- Task completed (may include commit SHA)[x]
Integration with Work
When conductor files are present:
- Respect the plan - Follow the task order in
plan.md - Update status - Mark tasks as
when starting,[~]
when done[x] - Follow workflow - Use the TDD methodology if specified
- Maintain standards - Follow
and style guidesproduct-guidelines.md - Stay in scope - Check
for what's in/out of scopespec.md
Example Usage
Before starting work on a project:
User: "What should I work on next?" Claude: [Checks for conductor/ directory] [Reads tracks.md to find active track] [Reads tracks/<active>/plan.md to find next [ ] task] "According to the conductor plan, the next task is..."