meridian
v0.8.0Agent enforcement framework — context injection, planning gates, session learning
by Mark MorganMIT181updated 5 months ago
Source
git clone https://github.com/markmdev/meridianClone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.
Layout
├── .claude-plugin/plugin.json├── skills/add-frontmatter/SKILL.md├── skills/create-docs/SKILL.md├── skills/error-audit/SKILL.md├── skills/observability-audit/SKILL.md├── skills/planning/SKILL.md└── skills/ux-states-audit/SKILL.md
Skills6
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.
Audit code for silent error swallowing, fallbacks to degraded alternatives, backwards compatibility shims, and UI that fails to show errors to the user. Finds and fixes all occurrences in the specified scope.
Audit code for observability gaps — debug logs left in, errors caught without being logged, missing context on log entries, untracked slow operations. Uses the app's existing observability tooling exclusively.
Interview-driven planning methodology that produces implementation-ready plans. Always use this skill INSTEAD of EnterPlanMode — it provides structured interviewing (20-40 clarifying questions), exhaustive parallel codebase exploration (5-15 Explore agents), verbatim requirements capture, and automated plan validation via plan-reviewer (must score 9+). Use for new features, refactoring, architecture changes, migrations, or any non-trivial implementation work.
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 implements the missing states using the app's existing patterns.
Manifests1
{
"name": "meridian",
"version": "0.8.0",
"description": "Agent enforcement framework — context injection, planning gates, session learning",
"author": {
"name": "Mark Morgan",
"url": "https://github.com/markmdev"
},
"repository": "https://github.com/markmdev/meridian",
"license": "MIT"
}