Persisting bigpicture learnings
Skill qte77/claude-code-plugins/plugins/cc-meta/skills/persisting-bigpicture-learnings
A Claude Code plugin marketplace providing skills, rules, and scripts extracted from a production development workflow.
npx -y skills add qte77/claude-code-plugins --skill persisting-bigpicture-learningsAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 2 stars2 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.
What its author says it does
Copied from the file, not written here
Persist bigpicture synthesis as dated snapshots in a learnings hub. Maintains latest pointer + append-only archive for cross-session compound learning.
SKILL.md
2.9 KB, as published. Nobody here has run it
Persist Bigpicture to Learnings Hub
Target: $ARGUMENTS
Persists the output of /synthesizing-cc-bigpicture as a dated snapshot in a
learnings hub. Maintains a latest.md pointer (always current) and an
append-only archive for compound cross-session learning.
Arguments
| Position | Name | Required | Default | Description |
|---|---|---|---|---|
| 1 | input-path | no | bigpicture.md | Path to bigpicture synthesis output |
| 2 | hub-path | no | docs/learnings/cc-bigpicture/ | Directory for learnings hub |
Examples:
/persisting-bigpicture-learnings
/persisting-bigpicture-learnings ~/.claude/bigpicture.md
/persisting-bigpicture-learnings bigpicture.md docs/learnings/cc-bigpicture/
Output Structure
docs/learnings/cc-bigpicture/
├── latest.md # Always the most recent synthesis
└── archive/
├── 2026-04-01.md
├── 2026-04-03.md
└── 2026-04-06.md # Today's snapshot
Workflow
-
Parse arguments — Apply defaults per Arguments table.
-
Read input — Read
input-path. If the file does not exist, report error and stop. -
Create hub directory — Create
hub-pathandhub-path/archive/if absent. -
Write latest — Write full synthesis content to
hub-path/latest.md. Always overwrite — this is the current-state pointer. -
Write archive snapshot — Determine today's date (
YYYY-MM-DD).- If
hub-path/archive/YYYY-MM-DD.mddoes not exist, create it with the synthesis content. - If it does exist, append a
---separator followed by the new synthesis content. This preserves all snapshots from the same day.
- If
-
Report — Confirm paths written and archive entry count for today.
Integration
Runs after /synthesizing-cc-bigpicture. Chain the two skills:
/synthesizing-cc-bigpicture all 7d bigpicture.md
/persisting-bigpicture-learnings bigpicture.md docs/learnings/cc-bigpicture/
Compound Learning
Other skills can read hub-path/latest.md for prior synthesis context:
- synthesizing-cc-bigpicture — Load previous synthesis for incremental update instead of cold start.
- ralph / PRD skills — Reference latest bigpicture for strategic context.
- compacting-context — Include bigpicture summary when compacting at phase boundaries.
Quality Check
latest.mdcontent matches the most recent archive entry- Archive files are append-only — never overwrite, never delete
- Hub path directories created automatically
- Input file validated before any writes