/docs-init
Initialize Docusaurus documentation site with Deno lifecycle integration
How it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/docs-init
Context preview
What this command does when you run it.
Initialize Docusaurus documentation site with Deno lifecycle integration
Command definition
docs-init.mdallowed-tools: Read, Write, Edit, Bash(git:*), Bash(npm:*), Bash(node:*), Bash(fd:*), Bash(jq:*), Bash(gdate:*), Bash(mkdir:*), Bash(cp:*)
name: "Docs Init"
description: "Initialize Docusaurus documentation site with Deno lifecycle integration"
author: "wcygan"
tags: ["docs","manage"]
version: "1.0.0"
created_at: "2025-07-14T00:00:00Z"
updated_at: "2025-07-14T00:00:00Z"
Context
- Session ID: !`gdate +%s%N`
- Current directory: !`pwd`
- Project name (directory): !`basename "$(pwd)"`
- Project name (deno.json): !`if [ -f "deno.json" ]; then jq -r '.name // "unknown"' deno.json 2>/dev/null || echo "unknown"; else echo "no deno.json"; fi`
- Git repository: !`git rev-parse --is-inside-work-tree 2>/dev/null || echo "false"`
- Docs folder status: !`if [ -d "docs" ]; then echo "exists"; else echo "not found"; fi`
- Node.js/npm available: !`which node npm 2>/dev/null | wc -l | tr -d ' ' || echo "0"`
- Existing deno.json: !`if [ -f "deno.json" ]; then echo "exists"; else echo "not found"; fi`
- Target: $ARGUMENTS
Your task
Initialize a Docusaurus documentation site in the `/docs` folder with automatic integration into the project's Deno task lifecycle.
STEP 1: Initialize session state and validate prerequisites
- CREATE session state file: `/tmp/docs-init-state-$SESSION_ID.json`
- SET initial state:
{
"sessionId": "$SESSION_ID",
"timestamp": "ISO_8601_TIMESTAMP",
"phase": "validation",
"project_name": "auto-detect",
"docs_status": "unknown",
"prerequisites": {
"node_available": false,
"npm_available": false,
"git_repo": false,
"deno_json": false
},
"initialization_plan": {},
"created_files": [],
"errors": []
}TRY:
- VALIDATE Node.js availability (required for Docusaurus)
- VALIDATE npm package manager availability
- DETECT project name from $ARGUMENTS, deno.json, or directory name
- CHECK existing docs folder and prompt if overwrite needed
CATCH (prerequisites_failed):
- LOG missing prerequisites to state file
- PROVIDE installation instructions for missing tools
- EXIT with clear error message and recovery steps
STEP 2: Determine project configuration and docs strategy
CASE docs_folder_status: WHEN "not found":
- SET strategy = "create_new"
- PLAN full Docusaurus initialization
WHEN "exists" AND empty:
- SET strategy = "initialize_existing"
- PLAN Docusaurus setup in existing folder
WHEN "exists" AND contains_files:
IF $ARGUMENTS contains "force":
- SET strategy = "overwrite"
- BACKUP existing docs to `/docs-backup-$SESSION_ID/`
ELSE:
- PROMPT user for confirmation
- AWAIT user decision (overwrite/cancel/merge)
STEP 3: Execute Docusaurus initialization
TRY:
CASE strategy: WHEN "create_new" OR "initialize_existing":
- CREATE docs directory if needed
- EXECUTE: `cd docs && npx create-docusaurus@latest . classic --typescript`
- CONFIGURE docusaurus.config.ts with detected project information
- CLEAN UP default tutorial content
- CREATE project-specific documentation structure
WHEN "overwrite":
- BACKUP existing docs folder
- EXECUTE clean initialization
- RESTORE any custom content from backup if requested
STEP 4: Configure Deno lifecycle integration
TRY:
IF deno.json exists:
- READ current deno.json configuration
- ADD docs tasks to existing task list:
{
"docs": "cd docs && npm run start",
"docs:build": "cd docs && npm run build",
"docs:serve": "cd docs && npm run serve"
}- PRESERVE existing tasks and configuration
ELSE:
- CREATE new deno.json with docs tasks
- INCLUDE basic project structure for Deno integration
STEP 5: Customize Docusaurus configuration
- EDIT docusaurus.config.ts with project-specific settings:
- Project name from detection or $ARGUMENTS
- GitHub repository URLs if git remote detected
- Tagline from README.md if available
- Mermaid diagram support (enabled by default)
- CONFIGURE sidebar.js for project structure
- CREATE initial docs/intro.md with project overview
- SET UP API documentation placeholder structure
STEP 6: Generate project-specific content
CASE project_type_detected: WHEN "deno":
- CREATE Deno-specific documentation sections
- INCLUDE JSR publishing guides
- ADD TypeScript configuration examples
WHEN "go":
- CREATE Go module documentation structure
- INCLUDE package documentation integration
- ADD API reference structure for REST/gRPC
WHEN "rust":
- CREATE Rust crate documentation structure
- INCLUDE cargo doc integration
- ADD performance and safety documentation
WHEN "java":
- CREATE Java project documentation structure
- INCLUDE Spring Boot/Quarkus patterns
- ADD OpenAPI integration examples
WHEN "generic":
- CREATE standard documentation structure
- INCLUDE basic getting started guide
- ADD general project documentation templates
STEP 7: Finalize setup and validation
TRY:
- INSTALL npm dependencies: `cd docs && npm install`
- VALIDATE Docusaurus builds successfully: `cd docs && npm run build`
- CREATE .gitignore for docs build artifacts
- UPDATE session state with completion status
CATCH (build_failed):
- LOG build errors to state file
- ATTEMPT dependency resolution
- PROVIDE manual fix instructions
- SAVE partial configuration for recovery
FINALLY:
- UPDATE session state with final status
- CREATE setup summary: `/tmp/docs-init-summary-$SESSION_ID.md`
- PROVIDE next steps and usage instructions
- CLEAN UP temporary session files
Post-Installation Instructions
After successful initialization:
1. **Start documentation server**: `deno task docs` 2. **Build for production**: `deno task docs:build` 3. **Add new content**: Use `/docs-add` command 4. **Update existing docs**: Use `/docs-update` command
State Management
- Session state tracked in `/tmp/docs-init-state-$SESSION_ID.json`
- Checkpoint after each major step
- Recovery capability from any checkpoint
- Error logging with specific failure points and recovery instructions
Read more
allowed-tools: Read, Write, Edit, Bash(git:*), Bash(npm:*), Bash(node:*), Bash(fd:*), Bash(jq:*), Bash(gdate:*), Bash(mkdir:*), Bash(cp:*) name: "Docs Init" description: "Initialize Docusaurus documentation site with Deno lifecycle integration" author: "wcygan" tags: ["docs","manage"] version: "1.0.0" created_at: "2025-07-14T00:00:00Z" updated_at: "2025-07-14T00:00:00Z"
Context
- Session ID: !`gdate +%s%N`
- Current directory: !`pwd`
- Project name (directory): !`basename "$(pwd)"`
- Project name (deno.json): !`if [ -f "deno.json" ]; then jq -r '.name // "unknown"' deno.json 2>/dev/null || echo "unknown"; else echo "no deno.json"; fi`
- Git repository: !`git rev-parse --is-inside-work-tree 2>/dev/null || echo "false"`
- Docs folder status: !`if [ -d "docs" ]; then echo "exists"; else echo "not found"; fi`
- Node.js/npm available: !`which node npm 2>/dev/null | wc -l | tr -d ' ' || echo "0"`
- Existing deno.json: !`if [ -f "deno.json" ]; then echo "exists"; else echo "not found"; fi`
- Target: $ARGUMENTS
Your task
Initialize a Docusaurus documentation site in the `/docs` folder with automatic integration into the project's Deno task lifecycle.
STEP 1: Initialize session state and validate prerequisites
- CREATE session state file: `/tmp/docs-init-state-$SESSION_ID.json`
- SET initial state:
{
"sessionId": "$SESSION_ID",
"timestamp": "ISO_8601_TIMESTAMP",
"phase": "validation",
"project_name": "auto-detect",
"docs_status": "unknown",
"prerequisites": {
"node_available": false,
"npm_available": false,
"git_repo": false,
"deno_json": false
},
"initialization_plan": {},
"created_files": [],
"errors": []
}TRY:
- VALIDATE Node.js availability (required for Docusaurus)
- VALIDATE npm package manager availability
- DETECT project name from $ARGUMENTS, deno.json, or directory name
- CHECK existing docs folder and prompt if overwrite needed
CATCH (prerequisites_failed):
- LOG missing prerequisites to state file
- PROVIDE installation instructions for missing tools
- EXIT with clear error message and recovery steps
STEP 2: Determine project configuration and docs strategy
CASE docs_folder_status: WHEN "not found":
- SET strategy = "create_new"
- PLAN full Docusaurus initialization
WHEN "exists" AND empty:
- SET strategy = "initialize_existing"
- PLAN Docusaurus setup in existing folder
WHEN "exists" AND contains_files:
IF $ARGUMENTS contains "force":
- SET strategy = "overwrite"
- BACKUP existing docs to `/docs-backup-$SESSION_ID/`
ELSE:
- PROMPT user for confirmation
- AWAIT user decision (overwrite/cancel/merge)
STEP 3: Execute Docusaurus initialization
TRY:
CASE strategy: WHEN "create_new" OR "initialize_existing":
- CREATE docs directory if needed
- EXECUTE: `cd docs && npx create-docusaurus@latest . classic --typescript`
- CONFIGURE docusaurus.config.ts with detected project information
- CLEAN UP default tutorial content
- CREATE project-specific documentation structure
WHEN "overwrite":
- BACKUP existing docs folder
- EXECUTE clean initialization
- RESTORE any custom content from backup if requested
STEP 4: Configure Deno lifecycle integration
TRY:
IF deno.json exists:
- READ current deno.json configuration
- ADD docs tasks to existing task list:
{
"docs": "cd docs && npm run start",
"docs:build": "cd docs && npm run build",
"docs:serve": "cd docs && npm run serve"
}- PRESERVE existing tasks and configuration
ELSE:
- CREATE new deno.json with docs tasks
- INCLUDE basic project structure for Deno integration
STEP 5: Customize Docusaurus configuration
- EDIT docusaurus.config.ts with project-specific settings:
- Project name from detection or $ARGUMENTS
- GitHub repository URLs if git remote detected
- Tagline from README.md if available
- Mermaid diagram support (enabled by default)
- CONFIGURE sidebar.js for project structure
- CREATE initial docs/intro.md with project overview
- SET UP API documentation placeholder structure
STEP 6: Generate project-specific content
CASE project_type_detected: WHEN "deno":
- CREATE Deno-specific documentation sections
- INCLUDE JSR publishing guides
- ADD TypeScript configuration examples
WHEN "go":
- CREATE Go module documentation structure
- INCLUDE package documentation integration
- ADD API reference structure for REST/gRPC
WHEN "rust":
- CREATE Rust crate documentation structure
- INCLUDE cargo doc integration
- ADD performance and safety documentation
WHEN "java":
- CREATE Java project documentation structure
- INCLUDE Spring Boot/Quarkus patterns
- ADD OpenAPI integration examples
WHEN "generic":
- CREATE standard documentation structure
- INCLUDE basic getting started guide
- ADD general project documentation templates
STEP 7: Finalize setup and validation
TRY:
- INSTALL npm dependencies: `cd docs && npm install`
- VALIDATE Docusaurus builds successfully: `cd docs && npm run build`
- CREATE .gitignore for docs build artifacts
- UPDATE session state with completion status
CATCH (build_failed):
- LOG build errors to state file
- ATTEMPT dependency resolution
- PROVIDE manual fix instructions
- SAVE partial configuration for recovery
FINALLY:
- UPDATE session state with final status
- CREATE setup summary: `/tmp/docs-init-summary-$SESSION_ID.md`
- PROVIDE next steps and usage instructions
- CLEAN UP temporary session files
Post-Installation Instructions
After successful initialization:
1. **Start documentation server**: `deno task docs` 2. **Build for production**: `deno task docs:build` 3. **Add new content**: Use `/docs-add` command 4. **Update existing docs**: Use `/docs-update` command
State Management
- Session state tracked in `/tmp/docs-init-state-$SESSION_ID.json`
- Checkpoint after each major step
- Recovery capability from any checkpoint
- Error logging with specific failure points and recovery instructions
A lightweight (~46kB) and comprehensive CLI tool for managing Claude commands, configurations, and workflows.
Repo: kiliczsh/claude-cmd
Other commands on claude-cmd.
- /agent-browser-automation
Automate browser interactions for development testing using Puppeteer MCP
Open command - /agent-prep-merge
Prepare branches for merging across multiple worktrees and coordinate integration
Open command - /agent-persona-accessibility-expert
Transform into accessibility expert for WCAG compliance and inclusive design
Open command - /agent-persona-api-designer
Transform into an API design specialist who creates well-structured, developer-friendly APIs
Open command - /agent-persona-backend-specialist
Transform into backend specialist for scalable API and system design
Open command - /agent-persona-cloud-architect
Cloud architect persona for designing scalable, secure cloud infrastructure using modern cloud-native technologies
Open command

