Source profileQuality 80/100

github/awesome-copilot/skills/oo-component-documentation/SKILL.md

oo-component-documentation

Create or update standardized object-oriented component documentation using a shared template plus mode-specific guidance for new and existing docs.

Source repository stars
37,126
Declared platforms
0
Static risk flags
0
Last source update
2026-07-28
Source checked
2026-07-28

Decision brief

What it does—and where it fits

Create new documentation for an object-oriented component or update an existing component documentation file by analyzing the current implementation.

Best for

    Not for

    • Tasks that require unconfirmed production actions or broad system permissions.
    • Environments where the pinned source and install steps cannot be inspected.

    Compatibility matrix

    Platform support, with evidence labels

    PlatformStatusEvidenceWhat to check
    CodexNot declaredNo explicit evidencePortability before use
    Claude CodeNot declaredNo explicit evidencePortability before use
    CursorNot declaredNo explicit evidencePortability before use
    Gemini CLINot declaredNo explicit evidencePortability before use
    Open the compatibility checker

    Installation

    Inspect first. Install second.

    The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

    Source-detected install commandSource
    npx skills add https://github.com/github/awesome-copilot --skill "skills/oo-component-documentation"
    Safe inspection promptEditorial

    Inspect the Agent Skill "oo-component-documentation" from https://github.com/github/awesome-copilot/blob/9933dcad5be5caeb288cebcd370eeeb2fc2f1685/skills/oo-component-documentation/SKILL.md at commit 9933dcad5be5caeb288cebcd370eeeb2fc2f1685. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

    Workflow

    What the source asks the agent to do

    1. 01

      Workflow

      1. Determine whether the task is create mode or update mode. 2. Inspect the component implementation and any related files needed to understand its public surface area and internal structure. 3. Use assets/documentation-template.md as the shared documentation scaffold. 4. Apply…

      Determine whether the task is create mode or update mode.Inspect the component implementation and any related files needed to understand its public surface area and internal structure.Use assets/documentation-template.md as the shared documentation scaffold.
    2. 02

      Determine the mode first

      Choose the workflow before writing anything:

      Use update mode when the user provides an existing documentation Markdown file, points to a docs path, or explicitly asks to refresh or revise existing documentation. Follow references/update-mode.md.Use create mode when the user provides a source file or folder, points to a component path, or asks to generate documentation from code. Follow references/create-mode.md.If both code and an existing documentation file are provided, treat the existing documentation file as the output target and use the current source code as the source of truth.
    3. 03

      Documentation standards

      DOC-001: Follow C4 Model documentation levels (Context, Containers, Components, Code)

      DOC-001: Follow C4 Model documentation levels (Context, Containers, Components, Code)DOC-002: Align with Arc42 software architecture documentation templateDOC-003: Comply with IEEE 1016 Software Design Description standard
    4. 04

      Shared analysis guidance

      ANA-001: Determine the primary component boundary and whether the input represents a folder, file, or existing documentation target

      ANA-001: Determine the primary component boundary and whether the input represents a folder, file, or existing documentation targetANA-002: Examine source code files for class structures, inheritance, composition, and interfacesANA-003: Identify design patterns, architectural decisions, and integration points
    5. 05

      Shared output requirements

      Use assets/documentation-template.md as the canonical section checklist and baseline structure.

      Use assets/documentation-template.md as the canonical section checklist and baseline structure.Keep the output in Markdown with a clear heading hierarchy, tables where useful, code blocks for examples, and Mermaid diagrams when architecture relationships need to be visualized.Make examples and interface descriptions match the current implementation instead of generic placeholders.

    Permission review

    Static risk signals and limitations

    No configured static risk pattern was detected

    This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.

    Evidence record

    Why each signal appears

    EvidenceSourceComputedTestedEditorial
    SignalValueEvidence typeMeaning
    Quality score80/100ComputedDocumentation, specificity, maintenance, and trust rules
    Repository stars37,126SourceRepository attention, not individual Skill quality
    Compatibility0 platformsSourceDeclared in the catalog source record
    Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

    Pinned source

    Provenance and original SKILL.md

    Repository
    github/awesome-copilot
    Skill path
    skills/oo-component-documentation/SKILL.md
    Commit
    9933dcad5be5caeb288cebcd370eeeb2fc2f1685
    License
    MIT
    Collected
    2026-07-28
    Default branch
    main
    View the original SKILL.md

    OO Component Documentation

    Create new documentation for an object-oriented component or update an existing component documentation file by analyzing the current implementation.

    Determine the mode first

    Choose the workflow before writing anything:

    1. Use update mode when the user provides an existing documentation Markdown file, points to a docs path, or explicitly asks to refresh or revise existing documentation. Follow references/update-mode.md.
    2. Use create mode when the user provides a source file or folder, points to a component path, or asks to generate documentation from code. Follow references/create-mode.md.
    3. If both code and an existing documentation file are provided, treat the existing documentation file as the output target and use the current source code as the source of truth.
    4. If the request is ambiguous, infer the mode from the path type whenever possible: existing Markdown documentation file means update mode; source/component path means create mode.

    Documentation standards

    • DOC-001: Follow C4 Model documentation levels (Context, Containers, Components, Code)
    • DOC-002: Align with Arc42 software architecture documentation template
    • DOC-003: Comply with IEEE 1016 Software Design Description standard
    • DOC-004: Use Agile Documentation principles (just enough documentation that adds value)
    • DOC-005: Target developers and maintainers as the primary audience

    Shared analysis guidance

    • ANA-001: Determine the primary component boundary and whether the input represents a folder, file, or existing documentation target
    • ANA-002: Examine source code files for class structures, inheritance, composition, and interfaces
    • ANA-003: Identify design patterns, architectural decisions, and integration points
    • ANA-004: Document or refresh public APIs, interfaces, dependencies, and usage patterns
    • ANA-005: Capture method parameters, return values, asynchronous behavior, exceptions, and lifecycle concerns
    • ANA-006: Assess performance, security, reliability, maintainability, and extensibility characteristics
    • ANA-007: Infer data flow, collaboration patterns, and relationships with surrounding components
    • ANA-008: Keep the documentation grounded in the implementation; avoid inventing behavior that is not supported by the code

    Shared output requirements

    • Use assets/documentation-template.md as the canonical section checklist and baseline structure.
    • Keep the output in Markdown with a clear heading hierarchy, tables where useful, code blocks for examples, and Mermaid diagrams when architecture relationships need to be visualized.
    • Make examples and interface descriptions match the current implementation instead of generic placeholders.
    • Include only information that can be supported by the code, project structure, configuration, or clearly stated assumptions.
    • When source coverage is incomplete, document the limitation explicitly instead of guessing.

    Language-specific optimizations

    • LNG-001: C#/.NET - async/await, dependency injection, configuration, disposal, options patterns
    • LNG-002: Java - Spring framework, annotations, exception handling, packaging, dependency injection
    • LNG-003: TypeScript/JavaScript - modules, async patterns, types, npm dependencies, runtime boundaries
    • LNG-004: Python - packages, virtual environments, type hints, testing, dependency management

    Error handling

    • ERR-001: If the path does not exist, explain what path was expected and whether the skill needs a source path or an existing documentation file
    • ERR-002: If no relevant source files are found, document the gap and suggest the likely locations to inspect next
    • ERR-003: If the documentation target cannot be inferred from the request, state the ambiguity and ask for the missing path only when inference is not possible
    • ERR-004: If the code uses non-standard architectural patterns, document the custom approach rather than forcing it into a generic pattern
    • ERR-005: If source access is incomplete, continue with available evidence and clearly call out any unsupported sections

    Workflow

    1. Determine whether the task is create mode or update mode.
    2. Inspect the component implementation and any related files needed to understand its public surface area and internal structure.
    3. Use assets/documentation-template.md as the shared documentation scaffold.
    4. Apply the mode-specific rules in references/create-mode.md or references/update-mode.md.
    5. Produce or revise the documentation so that diagrams, examples, interfaces, dependencies, and quality attributes reflect the current implementation.

    Completion criteria

    • The documentation clearly identifies the component purpose, architecture, interfaces, implementation details, usage patterns, quality attributes, and references.
    • Front matter fields are accurate for the selected mode.
    • Examples and diagrams match the implementation.
    • Any unknowns, gaps, or assumptions are explicitly called out.

    Alternatives

    Compare before choosing

    Computed 9731,966

    K-Dense-AI/scientific-agent-skills

    biopython

    Comprehensive molecular biology toolkit. Use for sequence manipulation, file parsing (FASTA/GenBank/PDB), phylogenetics, and programmatic NCBI/PubMed access (Bio.Entrez). Best for batch processing, custom bioinformatics pipelines, BLAST automation. For quick lookups use gget; for multi-service integration use bioservices.

    Computed 9531,966

    K-Dense-AI/scientific-agent-skills

    markdown-mermaid-writing

    Comprehensive markdown and Mermaid diagram writing skill. Use when creating any scientific document, report, analysis, or visualization. Establishes text-based diagrams as the default documentation standard with full style guides (markdown + mermaid), 24 diagram type references, and 9 document templates.

    Computed 9337,126

    github/awesome-copilot

    doc-and-modernize

    Two related workflows for a locally-cloned codebase, in one skill. Documentation mode produces a single, comprehensive, verifiable architecture document primarily by reading files on disk (local-first) — use it whenever the user wants to understand, map, document, research, or onboard onto a codebase ("research this repo", "write up the architecture", "do an architecture deep dive", "document how this codebase works", "map the system design", "create an onboarding doc"). Modernization mode gener

    Computed 9327

    MoizIbnYousaf/marketing-cli

    build-with-exa

    Build applications and agents with Exa's API Platform: search, contents, answer, context, Agent API, monitors, websets, OpenAI-compatible endpoints, and exa-py / exa-js. Use when choosing Exa endpoints, writing Exa API calls, integrating semantic web search or research into products, or debugging Exa request shapes. Load references/ on demand for endpoint details.