Back to list
lackeyjb

conductor-context

by lackeyjb

Context-Driven Development framework for Claude Code. Inspired by https://github.com/gemini-cli-extensions/conductor

9🍴 0📅 Jan 23, 2026

SKILL.md


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

Conductor Context Awareness

This skill provides automatic context loading for Conductor-managed projects.

When to Activate

Activate this skill when:

  • A conductor/ directory exists in the project
  • User is asking about implementation tasks
  • User is working on features or bugs
  • User mentions "the plan" or "tracks"

Context Files

When detected, consider these files:

1. Product Context (conductor/product.md)

Contains:

  • Product vision and goals
  • Target users
  • Key features
  • Success metrics

Use for: Understanding WHAT we're building and WHY.

2. Tech Stack (conductor/tech-stack.md)

Contains:

  • Programming languages
  • Frameworks
  • Databases
  • Key libraries
  • Architecture decisions

Use for: Making technology choices consistent with project standards.

3. Workflow (conductor/workflow.md)

Contains:

  • Development methodology (likely TDD)
  • Coverage requirements
  • Commit conventions
  • Quality gates

Use for: Following the established development process.

4. Tracks (conductor/tracks.md)

Contains:

  • List of all tracks (features/bugs)
  • Current status of each
  • Links to track details

Use for: Understanding current work and priorities.

5. Code Styleguides (conductor/code_styleguides/)

Contains:

  • Language-specific coding standards
  • Naming conventions
  • Best practices

Use for: Writing code that matches project conventions.

Quick Reference

Before Starting Implementation

  1. Check conductor/tracks.md for current track
  2. Read the track's spec.md for requirements
  3. Read the track's plan.md for tasks
  4. Follow conductor/workflow.md methodology

During Implementation

  • Follow TDD if specified in workflow.md
  • Meet coverage targets from workflow.md
  • Use commit format from workflow.md
  • Apply styleguides from code_styleguides/

Key Context Points

AspectWhere to Find
Coverage targetworkflow.md
Commit formatworkflow.md
Test methodologyworkflow.md
Technology choicestech-stack.md
Coding stylecode_styleguides/
Current focustracks.md

Integration with Other Skills

This skill works with:

  • tdd-workflow: For test-driven development guidance
  • code-styleguides: For language-specific conventions

Common Patterns

Finding Current Task

# Find in-progress items
grep -r "\[~\]" conductor/tracks/*/plan.md

Understanding Track Status

# Count by status
grep -c "\[ \]" conductor/tracks.md  # Pending
grep -c "\[~\]" conductor/tracks.md  # In Progress
grep -c "\[x\]" conductor/tracks.md  # Complete

Loading Full Context

Read in this order:

  1. conductor/product.md (the why)
  2. conductor/tech-stack.md (the how)
  3. conductor/tracks.md (the what)
  4. Current track's spec.md and plan.md

Score

Total Score

75/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

1ヶ月以内に更新

+10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

+5

Reviews

💬

Reviews coming soon