add-frontmatter
Scan all .md files in the project and add or fix YAML frontmatter (summary + read_when) so they can be discovered by context routers like Reflex.
Create or update .meridian/docs/ knowledge files for a module or directory. Produces reference docs with frontmatter for context routing.
$ npx -y skills add markmdev/meridian --skill create-docs --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/create-docsContext preview
The summary Claude sees to decide when to auto-load this skill.
Create or update .meridian/docs/ knowledge files for a module or directory. Produces reference docs with frontmatter for context routing.
name: create-docs description: Create or update .meridian/docs/ knowledge files for a module or directory. Produces reference docs with frontmatter for context routing.
Document a module so future agents (and humans) understand it without re-reading the code. Every doc must be worth the context window space it occupies.
Identify the module or directory the user specified. Verify it exists. If ambiguous, clarify before proceeding.
Search `.meridian/docs/` for docs already covering this area — grep for the module name, read matches. Understand what's documented, what's missing, what's stale.
Launch Explore agents to build deep understanding:
Spawn multiple Explore agents in parallel for different aspects. Follow up on findings — expect 2+ rounds.
Each doc covers one topic a future agent would need. Split by topic, not by file. Common categories:
Small modules might produce one doc. Large modules might produce three or four.
For each topic, create a file in `.meridian/docs/`:
If a doc already exists for a topic, update it. Don't create duplicates.
For each keyword, ask: "What would someone be doing when they need this?" Good keywords describe tasks, not topics:
Meridian makes Claude Code more reliable on real projects. It adds persistent project context, smarter session handoff, and lightweight workflow enforcement so Claude is less likely to lose the plot halfway through a long task.
Scan all .md files in the project and add or fix YAML frontmatter (summary + read_when) so they can be discovered by context routers like Reflex.
Audit code for silent error swallowing, fallbacks to degraded alternatives, backwards compatibility shims, and UI that fails to show errors to the user. Finds…
Audit code for observability gaps — debug logs left in, errors caught without being logged, missing context on log entries, untracked slow operations. Uses the…
Interview-driven planning methodology that produces implementation-ready plans. Always use this skill INSTEAD of EnterPlanMode — it provides structured…
Audit UI code for missing loading states, empty states, and error states. Every async operation and data-driven UI must handle all three. Finds gaps and…