From docs-generator
Generate comprehensive documentation for Infiquetra services (README, API specs, architecture diagrams)
How this skill is triggered — by the user, by Claude, or both
Slash command
/docs-generator:generate-docsWhen to use
Use this skill when the user wants to: - Generate documentation - Create README file - Generate API specification - Create architecture documentation - Generate integration guides
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are helping the user generate comprehensive documentation for their Infiquetra service.
You are helping the user generate comprehensive documentation for their Infiquetra service.
Service overview, setup instructions, usage examples
OpenAPI/Swagger specification for REST APIs
System architecture, data flow, deployment diagrams
How to integrate with other Infiquetra services
python plugins/docs-generator/skills/generate-docs/scripts/docs_generator.py \
--type all \
--service-name "wallet-service"
Options:
--type readme - Generate README.md only--type api-spec - Generate OpenAPI specification--type architecture - Generate architecture diagrams--type integration - Generate integration guide--type all - Generate all documentationdocs/
├── README.md
├── api/
│ └── openapi.yaml
├── architecture/
│ ├── system-architecture.png
│ ├── data-flow.png
│ └── deployment.png
└── integration/
└── integration-guide.md
Generated README includes:
OpenAPI 3.0 specification with:
Using Python diagrams library:
After generation:
npx claudepluginhub infiquetra/infiquetra-claude-plugins --plugin docs-generatorGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.