documentation — community documentation, epicenter, EpicenterHQ, community, ai agent skill, ide skills, agent automation, AI agent skills, Claude Code, Cursor, Windsurf

v1.0.0
GitHub

About this Skill

Perfect for Code Analysis Agents needing advanced documentation capabilities to explain complex code relationships. In-code documentation, folder READMEs, and code comments. Use when writing README.md files, JSDoc comments, or explaining code organization.

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

Quality Score

Top 5%
42
Excellent
Based on code quality & docs
Installation
SYS Universal Install (Auto-Detect)
> npx killer-skills add EpicenterHQ/epicenter/documentation
Supports 19+ Platforms
Cursor
Windsurf
VS Code
Trae
Claude
OpenClaw
+12 more

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

Perfect for Code Analysis Agents needing advanced documentation capabilities to explain complex code relationships.

Core Value

Empowers agents to generate informative READMEs with ASCII art diagrams, overviews of key exports, and brief file descriptions, providing context beyond filenames using Markdown formatting and folder structure analysis.

Capabilities Granted for documentation

Generating folder READMEs with ASCII art diagrams
Creating informative overviews of key exports
Debugging code relationships using documentation

! Prerequisites & Limits

  • Requires understanding of writing voice and tone guidelines
  • Limited to explaining why, not what, the code does
Project
SKILL.md
2.9 KB
.cursorrules
1.2 KB
package.json
240 B
Ready
UTF-8

# Tags

[No tags]
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?

Perfect for Code Analysis Agents needing advanced documentation capabilities to explain complex code relationships. In-code documentation, folder READMEs, and code comments. Use when writing README.md files, JSDoc comments, or explaining code organization.

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, Creating informative overviews of key exports, Debugging code relationships using documentation.

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 writing voice and tone guidelines. Limited to explaining why, not what, the code does.

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

openclaw-release-maintainer

Logo of openclaw
openclaw

openclaw-release-maintainer is a specialized AI agent skill for automating release management workflows.

333.8k
0
Data

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
Design

flags

Logo of vercel
vercel

flags is a skill for managing feature flags in Next.js internals, enabling developers to efficiently configure and optimize their React applications.

138.4k
0
Browser

x-api

[ Featured ]
Logo of affaan-m
affaan-m

x-api is a skill that harnesses performance optimization for AI agents, enabling efficient interactions with Twitter and other platforms.

103.8k
0
Productivity