documentation — community epicenter, community, ide skills, Claude Code, Cursor, Windsurf

v1.0.0
GitHub

About this Skill

Ideal for Developer Agents requiring comprehensive code explanations and folder organization insights. Press shortcut → speak → get text. Free and open source. More local-first apps soon ❤️

EpicenterHQ EpicenterHQ
[0]
[0]
Updated: 3/5/2026

Agent Capability Analysis

The documentation skill by EpicenterHQ is an open-source community AI agent skill for Claude Code and other IDE workflows, helping agents execute tasks with better context, repeatability, and domain-specific guidance.

Ideal Agent Persona

Ideal for Developer Agents requiring comprehensive code explanations and folder organization insights.

Core Value

Empowers agents to create informative READMEs, explaining the reasoning behind code and folder structures, utilizing ASCII art diagrams for complex relationships and providing brief file descriptions in Markdown format.

Capabilities Granted for documentation

Generating folder READMEs with ASCII art diagrams
Explaining mental models behind code organization
Creating brief file descriptions for context

! Prerequisites & Limits

  • Requires understanding of Markdown formatting
  • Limited to local-first applications
Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

documentation

Install documentation, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

SKILL.md
Readonly

Documentation

Follow writing-voice for tone.

Documentation explains why, not what. Users can read code to see what it does. They need you to explain the reasoning.

Folder READMEs

Primary job: explain why this folder exists and the mental model.

Can Include

  • ASCII art diagrams for complex relationships
  • Overview of key exports or entry points
  • Brief file descriptions IF they add context beyond the filename
  • Relationships to other folders

Avoid

  • Exhaustive file listings that just duplicate ls
  • Descriptions that repeat the filename ("auth.ts - authentication")
  • Implementation details better expressed in code

Good

markdown
1# Converters 2 3Transform field schemas into format-specific representations. 4 5``` 6┌─────────────┐ ┌──────────────┐ 7│ Field Schema│────▶│ to-arktype │────▶ Runtime validation 8└─────────────┘ ├──────────────┤ 9 │ to-drizzle │────▶ SQLite columns 10 └──────────────┘ 11``` 12 13Field schemas are pure JSON Schema objects with `x-component` hints. Each converter takes the same input and produces output for a specific consumer.

Bad

markdown
1# Converters 2 3- `to-arktype.ts` - Converts to ArkType 4- `to-drizzle.ts` - Converts to Drizzle 5- `index.ts` - Exports

The bad example just lists files without explaining the pattern or when to add new converters.

JSDoc Comments

JSDoc explains when and why to use something, not just what it does.

Good

typescript
1/** 2 * Get all table helpers as an array. 3 * 4 * Useful for providers and indexes that need to iterate over all tables. 5 * Returns only the table helpers, excluding utility methods like `clearAll`. 6 * 7 * @example 8 * ```typescript 9 * for (const table of tables.defined()) { 10 * console.log(table.name, table.count()); 11 * } 12 * ``` 13 */ 14defined() { ... }

Bad

typescript
1/** Returns all table helpers as an array. */ 2defined() { ... }

Rules

  • Include @example blocks with realistic usage
  • Explain WHEN to use it, not just WHAT it does
  • Document non-obvious behavior or edge cases
  • Public APIs get detailed docs; internal helpers can be minimal

Code Comments

Comments explain why, not what.

Good

typescript
1// Y.Doc clientIDs are random 32-bit integers, so we can't rely on ordering. 2// Use timestamps from the entries themselves for deterministic sorting. 3const sorted = entries.sort((a, b) => a.timestamp - b.timestamp);

Bad

typescript
1// Sort the entries 2const sorted = entries.sort((a, b) => a.timestamp - b.timestamp);

Rules

  • If the code is clear, don't comment it
  • Comment the "why" when it's not obvious
  • Comment workarounds with links to issues/docs
  • Delete commented-out code; that's what git is for

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is documentation?

Ideal for Developer Agents requiring comprehensive code explanations and folder organization insights. Press shortcut → speak → get text. Free and open source. More local-first apps soon ❤️

How do I install documentation?

Run the command: npx killer-skills add EpicenterHQ/epicenter/documentation. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for documentation?

Key use cases include: Generating folder READMEs with ASCII art diagrams, Explaining mental models behind code organization, Creating brief file descriptions for context.

Which IDEs are compatible with documentation?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for documentation?

Requires understanding of Markdown formatting. Limited to local-first applications.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add EpicenterHQ/epicenter/documentation. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use documentation immediately in the current project.

Related Skills

Looking for an alternative to documentation or another community skill for your workflow? Explore these related open-source skills.

View All

widget-generator

Logo of f
f

f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete privacy.

149.6k
0
AI

flags

Logo of vercel
vercel

flags is a Next.js feature management skill that enables developers to efficiently add or modify framework feature flags, streamlining React application development.

138.4k
0
Browser

zustand

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI

data-fetching

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI