History
Skill that gives AI coding agents persistent memory and quality enforcement
npx -y skills add mattjaikaran/meridian --skill historyAssembled 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.0 KB, as published. Nobody here has run it
/meridian:history — Event Timeline
Display state transition history for Meridian entities.
Arguments
--type <entity_type>— Filter by entity type (milestone, phase, plan, quick_task, dispatch, review)--id <entity_id>— Filter by entity ID--limit <n>— Max events to show (default: 50)
Procedure
Step 1: Query Events
PYTHONPATH=$MERIDIAN_HOME uv run --project $MERIDIAN_HOME -- python -c "
import json
from scripts.db import open_project
from scripts.state import list_events
with open_project('.') as conn:
events = list_events(conn, entity_type=<type_or_None>, entity_id=<id_or_None>, limit=<limit>)
print(json.dumps(events, indent=2, default=str))
"
Step 2: Display Timeline
Format events as a timeline table:
| Time | Entity | Old → New | Metadata |
|---|
Show most recent events first. If metadata contains JSON, format it inline.
Output
Display the event timeline in a readable table format.