Do
Skill that gives AI coding agents persistent memory and quality enforcement
npx -y skills add mattjaikaran/meridian --skill doAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.2 KB, as published. Nobody here has run it
/meridian:do — Freeform Command Router
Route natural language to the correct /meridian:* command. Just describe what you want to do.
Arguments
<text>— Freeform description of what you want to do
Keywords
do, run, execute, help, what, how, route, find command
Procedure
Step 1: Route the Input
PYTHONPATH=$MERIDIAN_HOME uv run --project $MERIDIAN_HOME -- python -c "
import json
from scripts.router import route_freeform
result = route_freeform('<text>')
print(json.dumps(result, indent=2))
"
Step 2: Handle Result
- exact/confident match: Show the matched command and confirm before executing
- ambiguous: Show top 3 candidates and ask user to pick
- none: Suggest /meridian:help
Step 3: Execute
Run the matched /meridian:* command with appropriate arguments.
Examples
- "check what's next" → routes to /meridian:next
- "add a note about auth" → routes to /meridian:note
- "fix a typo" → routes to /meridian:fast
- "create a plan for the API" → routes to /meridian:plan
When to Use
- When you don't remember the exact command name
- As a shortcut for common workflows
- When describing intent rather than a specific command