agentsclimarketplace

History

Skill mattjaikaran/meridian/skills/history

Skill that gives AI coding agents persistent memory and quality enforcement

Install
npx -y skills add mattjaikaran/meridian --skill history

Assembled 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:

TimeEntityOld → NewMetadata

Show most recent events first. If metadata contains JSON, format it inline.

Output

Display the event timeline in a readable table format.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.