KS
Killer-Skills

documentation — Categories.community

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

Quality Score

Top 5%
42
Excellent
Based on code quality & docs
Installation
SYS Universal Install (Auto-Detect)
Cursor IDE Windsurf IDE VS Code IDE
> npx killer-skills add EpicenterHQ/epicenter

Agent Capability Analysis

The documentation MCP Server by EpicenterHQ is an open-source Categories.community integration for Claude and other AI agents, enabling seamless task automation and capability expansion.

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 MCP Server

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
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

Related Skills

Looking for an alternative to documentation or building a Categories.community AI Agent? Explore these related open-source MCP Servers.

View All

widget-generator

Logo of f
f

widget-generator is an open-source AI agent skill for creating widget plugins that are injected into prompt feeds on prompts.chat. It supports two rendering modes: standard prompt widgets using default PromptCard styling and custom render widgets built as full React components.

149.6k
0
Design

chat-sdk

Logo of lobehub
lobehub

chat-sdk is a unified TypeScript SDK for building chat bots across multiple platforms, providing a single interface for deploying bot logic.

73.0k
0
Communication

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
Communication

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
Communication