com um clique
conductor-context
// Auto-load Conductor project context when conductor/ directory exists. Use for any development task in a Conductor-managed project to ensure alignment with product goals, tech stack, and workflow methodology.
// Auto-load Conductor project context when conductor/ directory exists. Use for any development task in a Conductor-managed project to ensure alignment with product goals, tech stack, and workflow methodology.
Language-specific code style guidelines. Use when writing TypeScript, Python, Go, JavaScript, or HTML/CSS code to ensure consistent, idiomatic, and maintainable code following best practices.
Test-Driven Development guidance. Use when writing code, implementing features, or fixing bugs in projects that follow TDD methodology. Provides the Red-Green-Refactor cycle structure.
Auto-load Conductor project context when conductor/ directory exists. Use for any development task in a Conductor-managed project to ensure alignment with product goals, tech stack, and workflow methodology.
Test-Driven Development guidance. Use when writing code, implementing features, or fixing bugs in projects that follow TDD methodology. Provides the Red-Green-Refactor cycle structure.
| name | conductor-context |
| description | Auto-load Conductor project context when conductor/ directory exists. Use for any development task in a Conductor-managed project to ensure alignment with product goals, tech stack, and workflow methodology. |
| allowed-tools | Read, Glob |
Automatic context loading for Conductor-managed projects.
When conductor/ directory exists and user is: implementing tasks, working on features/bugs, or mentions "plan"/"tracks".
| File | Contains | Use For |
|---|---|---|
product.md | Vision, goals, users, features, metrics | The WHY |
tech-stack.md | Languages, frameworks, DBs, libraries, architecture | The HOW |
workflow.md | Methodology (TDD), coverage, commits, quality gates | The PROCESS |
tracks.md | All tracks (features/bugs), status, priorities | The WHAT |
code_styleguides/ | Language-specific standards, conventions, practices | The STYLE |
| Need | Read |
|---|---|
| Coverage target | workflow.md |
| Commit format | workflow.md |
| Test methodology | workflow.md |
| Technology choices | tech-stack.md |
| Coding style | code_styleguides/ |
| Current focus | tracks.md |
Before starting implementation:
tracks.md for current trackspec.md for requirementsplan.md for tasksworkflow.md methodologyFull context load order:
product.md (why)tech-stack.md (how)tracks.md (what)spec.md and plan.md# Find in-progress items
grep -r "\[~\]" conductor/tracks/*/plan.md
# Count by status
grep -c "\[ \]" conductor/tracks.md # Pending
grep -c "\[~\]" conductor/tracks.md # In progress
grep -c "\[x\]" conductor/tracks.md # Complete
Works with: tdd-workflow (TDD guidance), code-styleguides (language conventions)