Introduce `/project-wiki` bundled skill that orchestrates a multi-stage pipeline to analyze a codebase and generate a complete technical documentation wiki. Adds four specialized sub-agents: - WikiProjectAnalyze: deep repository analysis and classification - WikiCatalogueDesign: dynamic document structure design based on project traits - WikiDocumentGenerate: code-driven technical document authoring - WikiIndexGeneration: structured index and navigation creation Also updates .gitignore to exclude `.costrict`, `.claude`, and `/costrict` directories.
34 lines
329 B
Plaintext
34 lines
329 B
Plaintext
node_modules
|
|
.DS_Store
|
|
dist
|
|
coverage
|
|
.env
|
|
*.log
|
|
.idea
|
|
.vscode
|
|
*.suo
|
|
*.lock
|
|
src/utils/vendor/
|
|
|
|
# AI tool runtime directories
|
|
.agents/
|
|
.codex/
|
|
.omx/
|
|
|
|
# Binary / screenshot files (root only)
|
|
/*.png
|
|
*.bmp
|
|
|
|
# Agent / tool state dirs
|
|
.swarm/
|
|
.agents/__pycache__/
|
|
|
|
# Python bytecode
|
|
__pycache__/
|
|
*.pyc
|
|
logs
|
|
|
|
.costrict
|
|
.claude
|
|
/costrict
|