Fähigkeiten Reference Builder
📦

Reference Builder

Sicher

Generate comprehensive API and technical documentation

Creating exhaustive technical documentation manually is time-consuming and error-prone. This skill automates the generation of complete reference materials with consistent formatting and thorough parameter coverage.

UnterstĂĽtzt: Claude Codex Code(CC)
🥉 72 Bronze
1

Die Skill-ZIP herunterladen

2

In Claude hochladen

Gehe zu Einstellungen → Fähigkeiten → Skills → Skill hochladen

3

Einschalten und loslegen

Teste es

Verwendung von "Reference Builder". Document a REST API endpoint: POST /api/users with parameters: name (string, required), email (string, required), age (integer, optional)

Erwartetes Ergebnis:

  • ### POST /api/users
  •  
  • **Description**: Creates a new user account in the system.
  •  
  • **Parameters**:
  • - `name` (string, required): User's full name, 2-100 characters
  • - `email` (string, required): Valid email address, must be unique
  • - `age` (integer, optional): User's age in years, 18-120
  •  
  • **Returns**: User object with id, name, email, created_at
  •  
  • **Errors**: 400 (validation), 409 (duplicate email), 500 (server error)
  •  
  • **Example**:
  • POST /api/users
  • {"name": "Jane Doe", "email": "jane@example.com", "age": 30}

Verwendung von "Reference Builder". Document a database User schema with fields: id, username, email, created_at, status

Erwartetes Ergebnis:

  • ### User Schema
  •  
  • | Field | Type | Constraints | Description |
  • |-------|------|-------------|-------------|
  • | id | UUID | PRIMARY KEY | Unique identifier |
  • | username | VARCHAR(50) | NOT NULL, UNIQUE | User's display name |
  • | email | VARCHAR(255) | NOT NULL, UNIQUE | Contact email address |
  • | created_at | TIMESTAMP | NOT NULL, DEFAULT NOW() | Account creation time |
  • | status | ENUM | NOT NULL, DEFAULT 'active' | Account status: active, suspended, deleted |
  •  
  • **Indexes**: username_idx, email_idx, status_idx
  •  
  • **Relationships**: One-to-many with Posts, One-to-one with Profile

Sicherheitsaudit

Sicher
v1 • 2/24/2026

This is a prompt-only skill containing no executable code. Static analysis scanned 0 files with 0 lines of code and detected no security patterns. The skill consists entirely of documentation instructions and prompt templates for creating technical references.

0
Gescannte Dateien
0
Analysierte Zeilen
0
befunde
1
Gesamtzahl Audits
Keine Sicherheitsprobleme gefunden
Auditiert von: claude

Qualitätsbewertung

38
Architektur
100
Wartbarkeit
87
Inhalt
50
Community
100
Sicherheit
74
Spezifikationskonformität

Was du bauen kannst

API Reference Generation

Create comprehensive API documentation for internal or public APIs with complete parameter listings, return types, error codes, and usage examples.

Configuration Documentation

Generate detailed configuration guides for complex applications, documenting all settings, defaults, constraints, and environment-specific values.

SDK Documentation

Produce exhaustive SDK reference materials including class hierarchies, method signatures, type definitions, and integration examples.

Probiere diese Prompts

Basic API Method Documentation
Document the following API endpoint as a complete reference entry. Include the method signature, all parameters with types and constraints, return values, possible errors, and a basic usage example:

Endpoint: [METHOD] [URL]
Parameters: [list parameters]
Context: [describe what it does]
Configuration Parameter Reference
Create a comprehensive configuration reference table for the following settings. For each parameter, document the type, default value, valid range, whether it is required, environment variable name, and any dependencies on other settings:

[Provide list of configuration parameters]
Schema Documentation with Examples
Generate complete schema documentation for the following data model. Include field types, validation rules, constraints, relationships to other models, indexing information, and provide three examples: a minimal valid record, a fully populated record, and an edge case:

[Provide schema definition]
Complete Module Reference Guide
Create a full technical reference for the following module. Structure it with: 1) Overview section explaining purpose, 2) Quick reference table of all public methods, 3) Detailed entries for each method with signatures, parameters, return types, errors, and examples, 4) Cross-references between related methods, 5) Performance considerations, and 6) Common pitfalls to avoid:

[Provide module source code or interface definition]

Bewährte Verfahren

  • Document behavior and intent, not implementation details - focus on what the code does, not how
  • Include both happy path examples and error handling scenarios for complete coverage
  • Use consistent terminology throughout all documentation - create and follow a glossary

Vermeiden

  • Writing examples that omit error handling - always show how to handle failures
  • Using implementation-specific jargon instead of clear, user-focused language
  • Creating documentation without version markers - always indicate which version each feature applies to

Häufig gestellte Fragen

What types of documentation can this skill generate?
This skill generates API references, configuration guides, schema documentation, troubleshooting guides, migration guides, and complete module references. It covers any technical documentation that requires exhaustive parameter listings and structured formatting.
Do I need to provide source code for documentation?
Yes, this skill requires you to provide the source code, API specifications, or schema definitions you want documented. It cannot automatically extract documentation from your codebase - you must supply the materials to document.
How accurate is the generated documentation?
The documentation accuracy depends on the completeness of your source materials. Always verify generated documentation against actual implementations, especially for critical APIs or configuration guides used in production.
Can this skill document multiple programming languages?
Yes, the skill is language-agnostic and can document APIs, configurations, and schemas regardless of the programming language. It focuses on interface documentation rather than language-specific implementation details.
Does this skill support OpenAPI or Swagger specifications?
The skill can incorporate OpenAPI specifications as source material and can generate documentation in a format compatible with OpenAPI conventions. However, it does not automatically parse OpenAPI files - you must provide the relevant specification details.
How should I handle documentation for deprecated features?
Include a Deprecated section for each deprecated feature, specifying the version when deprecated, the recommended alternative, and a migration timeline. The skill will format these according to the standard entry format with clear migration guidance.

Entwicklerdetails

Dateistruktur

đź“„ SKILL.md