lackeyjb

context-awareness

@lackeyjb/context-awareness
lackeyjb
8
0 forks
Updated 1/18/2026
View on GitHub

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.

Installation

$skills install @lackeyjb/context-awareness
Claude Code
Cursor
Copilot
Codex
Antigravity

Details

Pathskills/context-awareness/SKILL.md
Branchmain
Scoped Name@lackeyjb/context-awareness

Usage

After installing, this skill will be available to your AI coding assistant.

Verify installation:

skills list

Skill Instructions


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

Automatic context loading for Conductor-managed projects.

When to Activate

When conductor/ directory exists and user is: implementing tasks, working on features/bugs, or mentions "plan"/"tracks".

Context Files

FileContainsUse For
product.mdVision, goals, users, features, metricsThe WHY
tech-stack.mdLanguages, frameworks, DBs, libraries, architectureThe HOW
workflow.mdMethodology (TDD), coverage, commits, quality gatesThe PROCESS
tracks.mdAll tracks (features/bugs), status, prioritiesThe WHAT
code_styleguides/Language-specific standards, conventions, practicesThe STYLE

Workflow Reference

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

Loading Sequence

Before starting implementation:

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

Full context load order:

  1. product.md (why)
  2. tech-stack.md (how)
  3. tracks.md (what)
  4. Track's spec.md and plan.md

Quick Commands

# 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

Integration

Works with: tdd-workflow (TDD guidance), code-styleguides (language conventions)