AgentStack
SKILL verified Apache-2.0 Self-run

Spike Wrap Up

skill-mattjaikaran-meridian-spike-wrap-up · by mattjaikaran

A Claude skill from mattjaikaran/meridian.

No reviews yet
0 installs
3 views
0.0% view→install

Install

$ agentstack add skill-mattjaikaran-meridian-spike-wrap-up

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access Used
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Spike Wrap Up? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

/meridian:spike-wrap-up — Close a Spike and Extract Learnings

Concludes a spike: records the outcome, extracts learnings into the DB, and closes the gate so dependent plan phases can proceed.

Arguments

  • "" — Close spike and record outcome (no learnings)
  • "" --learnings "" "" ... — Also extract learnings

Keywords

spike, wrap-up, close, conclude, outcome, learnings, findings, gate

Procedure

Wrap up without explicit learnings

PYTHONPATH=$MERIDIAN_HOME uv run --project $MERIDIAN_HOME -- python -c "
import json
from pathlib import Path
from scripts.db import open_project
from scripts.spikes import wrap_up_spike
with open_project('.') as conn:
    result = wrap_up_spike(
        conn,
        '',
        '',
        [],  # no explicit learnings
        Path('.'),
    )
    print(json.dumps(result, indent=2))
"

Wrap up with learnings

PYTHONPATH=$MERIDIAN_HOME uv run --project $MERIDIAN_HOME -- python -c "
import json
from pathlib import Path
from scripts.db import open_project
from scripts.spikes import wrap_up_spike
with open_project('.') as conn:
    result = wrap_up_spike(
        conn,
        '',
        '',
        ['', ''],
        Path('.'),
    )
    print(json.dumps(result, indent=2))
"

What Happens on Wrap-Up

  1. Spike status → closed, closed_at set to now
  2. Outcome written to DB and to .planning/spikes//MANIFEST.md
  3. Each learning rule inserted into the learning table (scope: project, source: execution)
  4. Gate is now clear — /meridian:plan on the linked phase can proceed

Display Format

Spike wrapped up: 
Status: closed
Outcome: 

Learnings recorded: 
  1. 
  2. 

Gate cleared for phase: 
Next: run /meridian:plan on phase 

When to Use

  • You've finished the exploration and have an answer
  • Use before starting /meridian:plan on the phase that triggered the spike
  • After adding finding files to .planning/spikes//findings/

Notes

  • Learnings are stored with source = 'execution' and linked to the triggering phase
  • The MANIFEST.md is updated in-place with the outcome section
  • Once closed, a spike cannot be re-opened (create a new spike instead)

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.