Create professional API documentation using Hugo static site generator or Postman. Use when users need to generate API docs from OpenAPI specs, create developer portals, build interactive API explorers, or publish Postman collections. Supports multiple documentation themes and formats.
/plugin marketplace add leobrival/topographic-studio-plugins/plugin install code-workflows@topographic-studio-pluginsThis skill inherits all available tools. When active, it can use any tool Claude has access to.
assets/hugo/archetypes/endpoint.mdassets/hugo/archetypes/guide.mdassets/hugo/config.tomlassets/hugo/shortcodes/api-endpoint.htmlassets/hugo/shortcodes/code-tabs.htmlassets/hugo/shortcodes/param-table.htmlassets/hugo/shortcodes/response-example.htmlassets/postman/collection-template.jsonassets/postman/environment-production.jsonassets/postman/environment-template.jsonassets/postman/globals.jsonassets/postman/pre-request-scripts/auth-refresh.jsassets/postman/test-scripts/common-tests.jsreferences/hugo-setup.mdreferences/openapi-to-docs.mdreferences/postman-collections.mdreferences/writing-guide.mdCreate professional, interactive API documentation for developer portals.
User request → What format/tool?
│
├─ Static Documentation Site → Hugo
│ ├─ Which theme?
│ │ ├─ Docsy → Enterprise docs, multi-language
│ │ ├─ Doks → Modern, minimal, fast
│ │ ├─ Geekdoc → Technical, clean
│ │ └─ Book → Simple, book-like
│ │
│ └─ From OpenAPI? → Use widdershins or redoc-cli
│
├─ Interactive API Explorer → Postman
│ ├─ Collection → Organized endpoints
│ ├─ Documentation → Published docs
│ └─ Mock Server → Test without backend
│
├─ Standalone API Reference →
│ ├─ Redoc → Beautiful single-page
│ ├─ Swagger UI → Interactive try-it
│ └─ Stoplight → Full-featured portal
│
└─ OpenAPI-first workflow →
└─ Generate from spec → See references/openapi-to-docs.md
# Install Hugo
brew install hugo
# Create new site with Doks theme
hugo new site api-docs
cd api-docs
git init
git submodule add https://github.com/h-enk/doks themes/doks
# Or use Docsy
git submodule add https://github.com/google/docsy themes/docsy
# Start dev server
hugo server -D
# Install Newman (Postman CLI)
npm install -g newman
# Run collection
newman run collection.json -e environment.json
# Generate HTML report
newman run collection.json -r htmlextra
# Generate Markdown for Hugo
npx widdershins openapi.yaml -o api-reference.md
# Generate Redoc standalone HTML
npx @redocly/cli build-docs openapi.yaml -o docs/index.html
# Generate Swagger UI
docker run -p 8080:8080 -e SWAGGER_JSON=/spec/openapi.yaml \
-v $(pwd):/spec swaggerapi/swagger-ui
| Need | Tool | Best For |
|---|---|---|
| Full dev portal | Hugo + Docsy | Enterprise, multi-product |
| Quick API docs | Hugo + Doks | Startups, single API |
| Interactive testing | Postman | API exploration, QA |
| Beautiful reference | Redoc | Public API docs |
| Try-it-out | Swagger UI | Developer onboarding |
| Mock + docs | Postman | Early development |
| Theme | Pros | Cons |
|---|---|---|
| Docsy | Full-featured, i18n, versioning | Heavy, complex setup |
| Doks | Fast, modern, simple | Less features |
| Geekdoc | Clean, technical | Basic customization |
| Book | Simple, familiar | Limited API features |
api-docs/
├── content/
│ ├── _index.md # Homepage
│ ├── getting-started/
│ │ ├── _index.md
│ │ ├── quickstart.md
│ │ └── authentication.md
│ ├── api-reference/
│ │ ├── _index.md
│ │ ├── users.md
│ │ ├── posts.md
│ │ └── webhooks.md
│ ├── guides/
│ │ ├── pagination.md
│ │ ├── rate-limits.md
│ │ └── errors.md
│ └── sdks/
│ ├── javascript.md
│ ├── python.md
│ └── go.md
├── static/
│ ├── openapi.yaml
│ └── postman-collection.json
└── config.toml
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.