smithery/grishaangelovgh

project-feature-explainer

Expert guidance for explaining project features.

Installation

$ npx skills add smithery/grishaangelovgh --skill project-feature-explainer

Summary

  • Expert guidance for explaining project features.
  • Use this skill when you need to provide a comprehensive explanation of how a specific feature works, including summaries, deep dives, usage examples, and sequence/workflow diagrams.
  • This skill has references directory which contains additional instructions `checklist.md`, `example-output.md` and `explanation-template.md` that MUST be used for every analysis.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/grishaangelovgh.

npx skills add smithery/grishaangelovgh

Browse all from smithery/grishaangelovgh

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,048 B
  • docs SUMMARY.md 442 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Project Feature Explainer Skill

This skill provides a systematic approach to analyzing and explaining a specific feature within a codebase.

Workflow

  1. Identify Entry Points: Locate the main functions, classes, or API endpoints that trigger the feature.
  2. Trace Dependencies: Identify the internal modules, services, or external APIs the feature relies on.
  3. Analyze Data Flow: Understand how data enters the feature, how it's transformed, and where it's stored or returned.
  4. Draft Explanation: Structure the explanation using the mandatory sections below.
  5. Verify: Cross-reference the draft with the references/checklist.md to ensure completeness.

Mandatory Output Structure

1. Feature Summary

A high-level overview (1-2 paragraphs) explaining what the feature does and why it exists.

2. Deep Dive (Technical Details)

A detailed breakdown of the internal implementation.

  • Key Components: List the main files/classes/functions involved.
  • Logic Flow: Step-by-step description of the execution path.
  • State Changes: Describe any side effects (e.g., database updates, cache invalidation).

3. Usage & Examples

Code snippets or CLI commands showing how to use the feature.

  • Include common parameters and expected outputs.
  • Provide a "Happy Path" example.

Guidelines

  • Be Concise: Focus on the "how" and "why" without repeating obvious code logic.
  • Reference Code: Use specific file paths and symbol names.
  • Contextualize: Explain how this feature fits into the broader system architecture.