agentsclimarketplace

Roadmap

Skill mattjaikaran/meridian/skills/roadmap

Skill that gives AI coding agents persistent memory and quality enforcement

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

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

2.2 KB, 576 tokens by cl100k_base, as published. Nobody here has run it

/meridian:roadmap — Cross-Milestone Roadmap

Display a high-level roadmap view across all milestones with phase progress and ETA.

Procedure

Step 1: Load State

PYTHONPATH=$MERIDIAN_HOME uv run --project $MERIDIAN_HOME -- python -c "
import json
from scripts.db import connect, get_db_path
from scripts.state import list_milestones, list_phases, list_plans
from scripts.metrics import compute_progress, forecast_completion

conn = connect(get_db_path('.'))
milestones = list_milestones(conn)
progress = compute_progress(conn)
forecast = forecast_completion(conn)

result = {'milestones': [], 'progress': progress, 'forecast': forecast}
for ms in milestones:
    phases = list_phases(conn, ms['id'])
    phase_data = []
    for ph in phases:
        plans = list_plans(conn, ph['id'])
        done = sum(1 for p in plans if p['status'] in ('complete', 'skipped'))
        phase_data.append({
            'name': ph['name'],
            'status': ph['status'],
            'done': done,
            'total': len(plans),
            'priority': ph.get('priority'),
        })
    result['milestones'].append({
        'id': ms['id'],
        'name': ms['name'],
        'status': ms['status'],
        'phases': phase_data,
    })

print(json.dumps(result, indent=2, default=str))
conn.close()
"

Step 2: Format Output

Display in this format:

# Roadmap — {project_name}

## {milestone_name} ({status}) — {pct}%{  — ETA {date} if active}
  Phase 1: {name} [{status}] {checkmark if complete}
  Phase 2: {name} [{status}] {arrow if current}
  Phase 3: {name} [{status}]

## {milestone_name} ({status})
  Phase 1: {name} [{status}]
  Phase 2: {name} [{status}]

Use these markers:

  • [complete] with checkmark for finished phases
  • [{status}] with left-arrow <- for the current active phase
  • [planned] for future phases
  • Show plan counts as ({done}/{total}) after phase name if plans exist

Step 3: Show Summary Stats

At the bottom, show:

---
Active velocity: {velocity} plans/day | Forecast: {eta_days} days remaining

Options

  • --json — Output raw JSON instead of formatted roadmap
  • --all — Include archived milestones (hidden by default)

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.