원클릭으로
doc-generator
Generates project documentation (CLAUDE.md and README.md) with SDLC Agêntico signature
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Generates project documentation (CLAUDE.md and README.md) with SDLC Agêntico signature
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
One-shot utility skill that migrates every agent under `.claude/agents/` to carry a tier-2 contract_version=1.0 frontmatter block, as required by Constitution Principle XI. Idempotent — agents that already have a contract are skipped verbatim. This skill is scheduled for removal after Phase B closes; its value is historical reproducibility.
Orchestrates GitHub Copilot Cloud Agent as the default strategy for parallel implementation work. Converts SDD tasks into GitHub issues, assigns them to @copilot, tracks agent jobs, reviews resulting PRs, and feeds back review comments as @copilot replies until merge-ready. This is the primary parallelization strategy for Phase 6 (Implementation) in Levels 2 and 3. Local parallel-workers (git worktrees) remains the fallback for tasks that require local environment access or credentials.
Integracao com BMAD Method para escala adaptativa e workflows guiados. Detecta nivel de complexidade e ajusta agentes automaticamente. Use quando: iniciar workflow, detectar complexidade, mapear agentes BMAD.
Avalia quality gates entre fases do SDLC. Verifica artefatos obrigatorios, criterios de qualidade, e aprovacoes necessarias antes de permitir transicao. Use quando: transicao entre fases, verificacao manual de gate, auditoria de qualidade.
Manages parallelization strategies (Agent Teams vs Parallel Workers) for SDLC phases. Detects optimal strategy based on phase, complexity, and task characteristics. Coordinates team creation, messaging, and task dependencies for Agent Teams. Falls back to parallel-workers for implementation phases requiring file isolation. Use when: coordinating parallel work, research phases, architecture discussions, quality reviews.
Analisa sessoes do Claude Code para extrair learnings e persistir conhecimento. Le arquivos de sessao em ~/.claude/projects/ e extrai decisoes, bloqueios e resolucoes. Invocado automaticamente pelo gate-check e orchestrator. Use quando: fim de fase, retrospectiva, analise de progresso.
| name | doc-generator |
| version | 1.8.1 |
| description | Generates project documentation (CLAUDE.md and README.md) with SDLC Agêntico signature |
| author | SDLC Agêntico Team |
| created | "2026-01-23T00:00:00.000Z" |
| updated | "2026-01-23T00:00:00.000Z" |
| status | active |
| type | utility |
| invocation | manual |
Automatically generates professional documentation for projects by analyzing the codebase structure, detecting languages and frameworks, and creating:
CLAUDE.md - Guidance for Claude CodeREADME.md - Project documentationBoth files include the SDLC Agêntico signature: 🤖 Generated with SDLC Agêntico by @arbgjr
/doc-generate
# Generate in current directory
python3 .claude/skills/doc-generator/scripts/generate_docs.py
# Generate in specific directory
python3 .claude/skills/doc-generator/scripts/generate_docs.py --output-dir /path/to/project
# Force overwrite existing files
python3 .claude/skills/doc-generator/scripts/generate_docs.py --force
Detected by file extensions:
*.py*.js, *.jsx*.ts, *.tsx*.java*.cs*.go*.rs*.rbDetected by dependency files:
requirements.txt → Django, Flask, FastAPIpackage.json → React, Next.js, Vue, Angular, Express*.csproj filespom.xml (Maven), build.gradle (Gradle)Detected by:
test_*.py, *_test.py, *.test.js, *.spec.jstests/, test/, __tests__/, spec/Templates are located in .claude/skills/doc-generator/templates/:
CLAUDE.md.template - Claude Code guidance templateREADME.md.template - Project README templateTemplates use {{placeholder}} syntax for variable substitution.
All generated files end with:
---
🤖 *Generated with [SDLC Agêntico](https://github.com/arbgjr/sdlc_agentico) by [@arbgjr](https://github.com/arbgjr)*
This provides:
This skill can be invoked by:
/doc-generate commandTypically used in Phase 7 (Release) but can be invoked at any time.
.claude/lib/python/sdlc_logging.py (structured logging)All operations are logged with:
doc-generatorView logs:
# Grafana query
{skill="doc-generator"} | json
Input:
requirements.txt with djangotests/ directoryDockerfileOutput:
python manage.py runserverpytestInput:
package.json with react and typescript__tests__/ directory.github/workflows/Output:
npm startnpm test