plugins/cc-meta/skills/persisting-bigpicture-learnings/SKILL.md
--- name: persisting-bigpicture-learnings description: Persist bigpicture synthesis as dated snapshots in a learnings hub. Maintains latest pointer + append-only archive for cross-session compound learning. compatibility: Designed for Claude Code metadata: allowed-tools: Read, Write, Glob argument-hint: [input-path] [hub-path] context: inline stability: development --- # Persist Bigpicture to Learnings Hub **Target**: $ARGUMENTS Persists the output of `/synthesizing-cc-bigpicture` as
npx skillsauth add qte77/claude-code-plugins plugins/cc-meta/skills/persisting-bigpicture-learningsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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.
| 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/
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
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-path and hub-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).
hub-path/archive/YYYY-MM-DD.md does not exist, create it with
the synthesis content.--- separator followed by the new
synthesis content. This preserves all snapshots from the same day.Report — Confirm paths written and archive entry count for today.
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/
Other skills can read hub-path/latest.md for prior synthesis context:
latest.md content matches the most recent archive entrydocumentation
Generate or update README.md files across three scopes — repo (with project-type detection), account (GitHub user profile), and org (organization profile). Use when creating, updating, or aligning a README to org conventions.
development
Audit README.md files against best practices for repos, accounts, or orgs. Detects missing sections, stale links, inconsistent formatting, and convention violations. Use when reviewing README quality across one or many repos.
development
Analyzes industry websites for design patterns, layout, typography, and content strategies using first-principles thinking. Use when researching website design, UI patterns, or competitive design analysis.
development
Audits website usability for UX optimization, covering forms, navigation, validation, and microcopy. Use when reviewing user experience, task completion flows, or interface friction points.