Skip to main content
Exécutez n'importe quel Skill dans Manus
en un clic
Dépôt GitHub

director-mode-lite

director-mode-lite contient 33 skills collectées depuis claude-world, avec une couverture métier par dépôt et des pages de détail sur le site.

skills collectés
33
Stars
75
mis à jour
2026-07-08
Forks
11
Couverture métier
3 catégories métier · 100% classifié
explorateur de dépôts

Skills dans ce dépôt

getting-started
Développeurs de logiciels

Guided 5-minute onboarding for Director Mode Lite. Use immediately after installing Director Mode Lite, or when unsure which command to run next.

2026-07-08
evolving-loop
Développeurs de logiciels

Self-Evolving Development Loop - Dynamic skill generation with learning and evolution

2026-07-06
evolving-status
Développeurs de logiciels

View Self-Evolving Loop session status, history, and memory metrics

2026-07-06
interop-router
Développeurs de logiciels

Automatically routes tasks to external AI CLIs (Codex or Gemini) when more efficient; routing decisions are made automatically based on task type, with no manual commands needed. Use when a task is a large refactor, a batch operation, or needs 100K+ tokens of context better handled by an external CLI.

2026-07-06
agent-check
Développeurs de logiciels

Validate custom agent file format and structure. Use after creating or editing an agent, before committing agent changes, or when an agent fails to load.

2026-07-06
agent-template
Développeurs de logiciels

Generate custom agent from template. Use when creating a new subagent from scratch, or scaffolding an agent file with correct frontmatter.

2026-07-06
agents
Développeurs de logiciels

List all available agents (core, expert, self-evolving). Use when the user asks what agents are available or runs /agents.

2026-07-06
auto-loop
Développeurs de logiciels

TDD-based autonomous development loop with checkpoint recovery and observability changelog

2026-07-06
changelog
Développeurs de logiciels

View and manage the runtime changelog for observability

2026-07-06
check-environment
Développeurs de logiciels

Verify the development environment is ready for Director Mode: claude CLI, git, python3, jq, project runtime, and installed skills/agents/hooks. Use after installation, when hooks or skills misbehave, or when the user runs /check-environment.

2026-07-06
code-reviewer
Analystes en assurance qualité des logiciels et testeurs

Code review knowledge base: quality, security (OWASP Top 10), error-handling, performance, and test-coverage checklists with severity-ranked output format. Use when reviewing code changes, PRs, or before commits. Loaded automatically by the code-reviewer agent.

2026-07-06
debugger
Développeurs de logiciels

Systematic debugging method: 5-step root-cause analysis (capture, isolate, hypothesize, investigate, fix & verify) plus common bug-pattern reference. Use when errors, exceptions, test failures, or unexpected behavior appear. Loaded automatically by the debugger agent.

2026-07-06
doc-writer
Développeurs de logiciels

Documentation templates and standards: README structure, API reference format, changelog (Keep a Changelog), and comment guidelines. Use when creating or updating documentation. Loaded automatically by the doc-writer agent.

2026-07-06
focus-problem
Développeurs de logiciels

Deeply scope a problem before coding: parallel Explore agents map related files, similar implementations, and test patterns, producing a problem definition, boundaries, and minimal implementation plan. Use when planning a feature, investigating a bug, or entering an unfamiliar codebase area.

2026-07-06
handoff-claude
Développeurs de logiciels

Delegate tasks to other authorized Claude Code instances (separate accounts/profiles like claude-z-1, claude-z-2) via headless `claude -p`. Use when you need parallel execution on a second account's quota, account isolation, or background workers that don't consume this session's context.

2026-07-06
handoff-codex
Développeurs de logiciels

Delegate bulk mechanical tasks (mass refactors, template generation, simple batch edits) to OpenAI Codex CLI via non-interactive `codex exec`, preserving Claude context. Use when the user says 'use codex'/'hand off to codex' or a task is 10+ files of mechanical changes.

2026-07-06
handoff-gemini
Développeurs de logiciels

Delegate long-context analysis, research, and large-document summarization to Google Gemini CLI (1M-token context) via non-interactive `gemini -p`, preserving Claude context. Use when the user says 'use gemini'/'hand off to gemini' or a task needs 100K+ tokens of context.

2026-07-06
hook-template
Développeurs de logiciels

Generate hook script from template. Use when adding a new hook, wiring a PreToolUse/PostToolUse/Stop/Notification hook, or scaffolding hook config for settings.json.

2026-07-06
hooks-check
Développeurs de logiciels

Validate hooks configuration and scripts. Use after adding or editing hooks in settings.json, before committing hook changes, or when a hook fails to fire.

2026-07-06
mcp-check
Développeurs de logiciels

Validate MCP configuration and suggest improvements. Use when MCP servers fail to load, after editing .mcp.json, or when the user runs /mcp-check.

2026-07-06
plan
Spécialistes en gestion de projets

Break a complex task into an ordered, dependency-aware task list with estimates and verification steps. Use when a request spans multiple components or days, before starting large features, or when the user runs /plan.

2026-07-06
project-health-check
Développeurs de logiciels

Audit project health across 7 dimensions (documentation, test coverage, security, code quality, dependencies, database, build/deploy) producing a scored report with prioritized fixes. Use for periodic checkups, before releases, or when the user runs /project-health-check.

2026-07-06
project-init
Développeurs de logiciels

Set up Director Mode in a project: detect language/framework, generate CLAUDE.md, configure agents/skills/hooks and MCP, and verify the install. Use on first setup of a project, after cloning, or when the user runs /project-init.

2026-07-06
skill-check
Développeurs de logiciels

Validate skill/command file format and structure. Use after creating or editing a skill, before committing skill changes, or when a skill fails to load or trigger.

2026-07-06
skill-template
Développeurs de logiciels

Generate custom skill/command from template. Use when creating a new skill or slash command from scratch, or scaffolding a skill file with correct frontmatter.

2026-07-06
skills
Développeurs de logiciels

List all available skills grouped by category. Use when the user asks what skills are available or runs /skills.

2026-07-06
smart-commit
Développeurs de logiciels

Create clean Conventional Commits: inspect the diff, group related changes, run quality checks, and write type(scope) messages. Use when committing work, or when the user runs /smart-commit or asks to commit changes.

2026-07-06
test-first
Analystes en assurance qualité des logiciels et testeurs

Drive one feature through a strict TDD Red-Green-Refactor cycle with checklists for each phase. Use when implementing new functionality test-first, or when the user runs /test-first.

2026-07-06
test-runner
Analystes en assurance qualité des logiciels et testeurs

Test execution reference: framework detection (pytest/jest/vitest/go/cargo/junit) and correct run/coverage commands, plus failure-analysis steps. Use when running tests, analyzing test failures, or verifying coverage after code changes.

2026-07-06
workflow
Développeurs de logiciels

Run the complete 5-step development workflow: focus problem → prevent over-development → test-first (TDD) → document → smart commit. Use when starting a new feature, or when the user runs /workflow or asks for the full development flow.

2026-07-06
changelog-observer
Développeurs de logiciels

Track development session events in a daily markdown changelog, including file changes, test results, and key decisions.

2026-03-13
claude-md-check
Développeurs de logiciels

Validate CLAUDE.md structure and completeness

2026-01-16
claude-md-template
Développeurs de logiciels

Generate CLAUDE.md template for current project

2026-01-16