Report
Skill that gives AI coding agents persistent memory and quality enforcementFrom the repository description
npx -y skills add mattjaikaran/meridian --skill reportAssembled 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
0.8 KB, 185 tokens by cl100k_base, as published. Nobody here has run it
/meridian:report — Session Report
Generate an end-of-session summary with work done, token estimate, and next action.
Arguments
--since <timestamp>— Report from this ISO timestamp (default: last 24h).
Keywords
report, session, summary, token usage, work done, progress
Procedure
PYTHONPATH=$MERIDIAN_HOME uv run --project $MERIDIAN_HOME -- python -c "
import json
from scripts.db import open_project
from scripts.session_reports import (
generate_session_report,
estimate_token_usage,
format_session_report,
)
with open_project('.') as conn:
report = generate_session_report(conn)
tokens = estimate_token_usage(report['events'])
print(format_session_report(report, tokens))
"
Output
Formatted markdown with summary stats, event timeline, token usage estimate, and suggested next action.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.