agent-factory
Creates specialized worker agents dynamically from templates. Use when orchestrator needs to spawn task-specific workers for parallel execution. Handles agent…
Load project context efficiently for Conductor workflows. Use when starting work on a track, implementing features, or needing project context without consuming excessive tokens.
$ npx -y skills add Ibrahim-3d/orchestrator-supaconductor --skill context-loader --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/context-loaderContext preview
The summary Claude sees to decide when to auto-load this skill.
Load project context efficiently for Conductor workflows. Use when starting work on a track, implementing features, or needing project context without consuming excessive tokens.
name: context-loader description: Load project context efficiently for Conductor workflows. Use when starting work on a track, implementing features, or needing project context without consuming excessive tokens.
Efficiently load and manage project context for Conductor's context-driven development workflow.
Use this skill when:
Before scanning files, check for:
1. `.claudeignore` - Claude-specific ignores 2. `.gitignore` - Standard git ignores
# Check for ignore files ls -la .claudeignore .gitignore 2>/dev/null
Use git for tracked files:
git ls-files --exclude-standard -co | head -100
For directory structure:
git ls-files --exclude-standard -co | xargs -n 1 dirname | sort -u
| Priority | File Type | Examples | | -------- | --------- | ------------------------------------------------- | | 1 | Manifests | `package.json`, `Cargo.toml`, `pyproject.toml` | | 2 | Conductor | `conductor/product.md`, `conductor/tech-stack.md` | | 3 | Track | `conductor/tracks/<id>/spec.md`, `plan.md` | | 4 | Config | `tsconfig.json`, `.env.example` |
For files over 1MB:
1. Check file size via run_shell_command `ls -la` before reading
2. Stop after Tier 1-3 files. Tier 4 (config files) only if task-specific. 3. Never load completed tracks — only active track spec.md + plan.md. 4. Maximum 15 files per context load. If more are needed, prioritize by tier.
1. Load CLAUDE.md (if exists) 2. Load conductor/product.md (project vision) 3. Load conductor/tech-stack.md (technical context) 4. Load conductor/tracks.md (completed work — prevents duplicate effort) 5. Load current track spec.md (requirements) 6. Load current track plan.md (tasks — check [x] vs [ ] status)
This skill is used by multiple loop agents:
**Critical:** Always load `tracks.md` and check `plan.md` task markers to prevent duplicate work across sessions.
After loading context, summarize:
## Project Context Loaded **Product**: [one-line summary] **Tech Stack**: [key technologies] **Current Track**: [track name/id] **Active Phase**: [current phase] **Pending Tasks**: [count of [ ] tasks] **Completed Tasks**: [count of [x] tasks] **Loop Step**: [current Evaluate-Loop step — Plan/Execute/Evaluate/Fix]
Multi-agent orchestration system for Claude Code with parallel execution, automated quality gates, Board of Directors, and bundled Superpowers skills
Repo: Ibrahim-3d/orchestrator-supaconductor
Creates specialized worker agents dynamically from templates. Use when orchestrator needs to spawn task-specific workers for parallel execution. Handles agent…
Simulate a 5-member expert board deliberation for major decisions. Use when evaluating plans, architecture choices, feature designs, or any decision requiring…
You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent,…
Ensures all business strategy, pricing, and product documents stay synchronized when product decisions change during any track execution or evaluation.
Master coordinator for the Evaluate-Loop workflow v3. Supports GOAL-DRIVEN entry, PARALLEL execution via worker agents, BOARD OF DIRECTORS deliberation, and…
Use this skill when working with Conductor's context-driven development methodology, managing project context artifacts, or understanding the relationship…