decodie-overview
Installation
SKILL.md
Decodie — Overview Mode
Generate a high-level overview of a file, directory, or project — answering "what is this and how is it organized" rather than line-by-line explanations. Produces a single summary entry per target, intended as an onboarding starting point.
This mode persists by default — overviews are saved as learning entries. Re-running on the same target overwrites the existing overview rather than accumulating versions.
This mode is read-only with respect to source code. You only read source files and write to the .decodie/ directory.
Activation and Argument Parsing
- Extract the target path. If none provided, use the project root.
- Validate the target. Confirm it exists and is a file or directory.
- Determine target scope:
- File —
entry_pointsanddependenciesmay be omitted. - Directory —
entry_pointsanddependenciesare usually meaningful. - Project root — all four overview fields apply.
- File —
- Canonicalize the target path for regeneration lookup:
- File: relative path (e.g.,
src/utils/helpers.ts) - Directory or project root: relative path with trailing slash (e.g.,
src/auth/,./)
- File: relative path (e.g.,