Harvesting sparks
Use when the user says /harvest, asks to review recent prompts for keepers, or wonders what good prompts they forgot to save — mines the local prompt journal (~/.keepfire/journal.jsonl) that this plugin's hook records automatically.From its SKILL.md
npx -y skills add ljf06853/keepfire --skill harvesting-sparksAssembled 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.9 KB, 414 tokens by cl100k_base, as published. Nobody here has run it
Harvesting Sparks
This plugin journals the user's prompts locally (a UserPromptSubmit hook appends to
~/.keepfire/journal.jsonl — slash commands and very short messages are skipped, and
nothing leaves the machine). Harvesting mines that journal for sparks the user forgot
to keep in the moment.
Checklist
- List candidates:
keepfire harvest --limit 20 # add --days 30 to look further back
No CLI? Read ~/.keepfire/journal.jsonl directly: one JSON object per line with
ts, cwd, text. Skip entries under 40 chars and exact duplicates.
-
Read the output: entries marked
NEWhave no similar recipe yet;covered-by:<id>means one already exists — skip those unless the journal version is clearly better (then it's animprove, not a new keep). -
Filter by the quality bar: keep only prompts that encode a reusable process (reproduce → isolate → minimal fix; review by severity; etc.). One-off questions and context-bound requests are not sparks.
-
Propose the top 1–3 as short draft summaries: title + intent + why it's worth keeping.
-
On approval, capture each via the capturing-sparks skill (full extraction: skeleton, constraints, output contract, triggers).
Rhythm
If the user has never harvested, suggest a weekly cadence — the journal only pays off
when it's mined. If the journal is empty, check that the plugin's hook is active
(/hooks shows UserPromptSubmit) and that prompts since installation exist.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.