From claude-obsidian
Rollup of wiki log entries into meta-pages. Reads the last 2^k entries from wiki/log.md, writes a structurally-idempotent fold page to wiki/folds/ that links back to children. Extractive summarization (no invention). Dry-run by default, stdout-only; commit mode writes and accepts that the PostToolUse hook auto-commits. Triggers on: fold the log, run a fold, run wiki-fold, log rollup, roll up log entries.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-obsidian:wiki-foldThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Implements a bounded subset of Mechanism 1 from [[DragonScale Memory]]: flat fold over raw `wiki/log.md` entries. Fold-of-folds (hierarchical level-stacking) is **out of scope for this skill**; see "Scope boundary" below.
Implements a bounded subset of Mechanism 1 from [[DragonScale Memory]]: flat fold over raw wiki/log.md entries. Fold-of-folds (hierarchical level-stacking) is out of scope for this skill; see "Scope boundary" below.
A fold is additive: child log entries and their referenced pages are never modified, moved, or deleted. A fold is extractive: every outcome and theme in the output must be traceable to a specific child log entry. No invented facts, no synthesis beyond what the child entries support.
This skill does not implement:
It does implement:
k.When referring to level in frontmatter, use batch_exponent: k (not level: k), because this skill does not produce hierarchical levels.
| Mode | Writes? | Invocation |
|---|---|---|
| dry-run (default) | No Write tool calls. Emit fold content via Bash cat/heredoc to stdout only. | fold the log, dry-run k=3 |
| commit | Uses Write/Edit tools. Each Write fires the repo PostToolUse hook which auto-commits wiki changes. Accept this. Compose full content first, then sequence writes. | fold the log, commit k=3 (only after a clean dry-run) |
Why stdout-only in dry-run: the repo's hooks/hooks.json PostToolUse hook fires on any Write|Edit and runs git add wiki/ .raw/. Writing to /tmp does not stage /tmp, but it still triggers the hook, which will commit any pending wiki changes under a generic message. Dry-run must leave zero residue. Bash stdout does not fire the hook.
Every fold has an ID derived from its inputs:
fold-k{K}-from-{EARLIEST-DATE}-to-{LATEST-DATE}-n{COUNT}
Example: fold-k3-from-2026-04-10-to-2026-04-23-n8.
The filename in commit mode is wiki/folds/{FOLD-ID}.md. No date-of-creation in the filename. No timestamp in the title.
Duplicate detection (required): before emitting any output, check if wiki/folds/{FOLD-ID}.md already exists. If so, report "Fold already exists at wiki/folds/{FOLD-ID}.md. Use --force to overwrite, or pick a different range." and stop. This is the no-op idempotency guarantee; byte-identical content is NOT guaranteed (LLM prose varies) but the filename and scope are.
k (default 4): batch exponent. Batch size = 2^k. Typical values: k=3 (8), k=4 (16), k=5 (32).range (optional): explicit entry range entries 1-16. Overrides k.--force: overwrite an existing fold with the same ID. Default no.--commit: write to wiki/. Without it, dry-run stdout-only.If fewer than 2^k log entries exist, report the shortfall and stop. Do not silently fold a partial batch.
grep -n "^## \[" wiki/log.md | head -{2^k}
Record for each entry: line number, date, operation, title, and the following bullet lines until the next ## [ or end-of-section.
From each entry's bullet list, extract:
Location: wiki/path/to/page.md (the primary page)[[Wikilinks]] inlinePages created: and Pages updated: listsBuild a structured children list:
children:
- date: "2026-04-23"
op: "save"
title: "DragonScale Memory v0.2 — post-adversarial-review"
page: "[[DragonScale Memory]]"
- ...
One record per log entry. Do not dedupe by page: if two entries both point to [[DragonScale Memory]], both records appear, distinguishable by date and title.
Read only the pages that are not already captured fully in the log entry's bullets. Budget: 0-10 page reads. Hard ceiling: 15. If an entry's referenced page is missing, record page_missing: true and proceed.
Write the fold body per references/fold-template.md. Rules:
(from 2026-04-14 session)) or a quoted line from that entry. Do not introduce events, counts, or interpretations not present in a child entry.Before printing output, verify:
children: frontmatter appears exactly once in the Child Entries table.children: frontmatter.--force is set).If any check fails, abort and report the specific failure.
Dry-run: use Bash cat <<'EOF' ... EOF to stdout. Do not use Write. Print the fold ID and a one-line summary of what the commit step would do.
Commit (only after user says "commit the fold"):
Write the fold page to wiki/folds/{FOLD-ID}.md. (PostToolUse hook will auto-commit this.)Edit wiki/index.md to add the fold link under a ## Folds section (create section if missing). (Hook auto-commits.)Edit wiki/log.md to prepend one entry:
## [YYYY-MM-DD] fold | batch-exponent-k{K} rollup of N entries
- Location: wiki/folds/{FOLD-ID}.md
- Range: {EARLIEST-DATE} to {LATEST-DATE}
- Children: N log entries
(Hook auto-commits.)Three auto-commits result. The user sees three separate wiki: auto-commit entries in git log. This is expected; do not attempt to suppress the hook.
See references/fold-template.md for the canonical frontmatter and body layout.
wiki/hot.md. Ownership stays with save/ingest skills.Committed fold reversal (three commits, land in this order):
Or: git revert the three auto-commits. Child pages are untouched in either path.
User: "fold the log, dry-run k=3"
wiki/log.md top 8 entries.fold-k3-from-2026-04-10-to-2026-04-23-n8.wiki/folds/fold-k3-from-2026-04-10-to-2026-04-23-n8.md does not exist.cat <<'EOF' ... EOF to stdout.npx claudepluginhub cathykiriakos/claude-obsidianGuides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.
Applies curated color/font themes to slides, docs, and HTML artifacts. Includes 10 preset themes and can generate custom themes on demand.
Guides users through a structured three-stage workflow for co-authoring documentation: context gathering, iterative refinement, and reader testing.
3plugins reuse this skill
First indexed Jul 8, 2026