digest

Compile a repo's raw feedback log into a current-state notes.md board.

Updated Jun 2, 2026
One-click install
npx skills add https://github.com/line7works/tony-skills --skill digest-line7works
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: digest
Source: https://github.com/line7works/tony-skills/tree/main/plugins/digest/skills/digest
Command: npx skills add https://github.com/line7works/tony-skills --skill digest-line7works

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Raw feedback logs accumulate chronologically and become hard to scan; this Skill compiles the raw /fb capture log into a clean, current-state notes.md board so open questions, decisions, and bugs are visible at a glance. ## Core Features & Use Cases - Log-to-board compilation: Reads docs/feedback.md and rewrites docs/notes.md into fixed buckets (Open questions, Ideas, Decisions made, Bugs & friction, Parked). - Incremental cutoff tracking: Uses the board's "last compiled" footer date to process only new entries, with idempotent folding so recompiles are always safe. - Strict read-only safety: Never writes to the feedback log, never creates missing input files, and never runs git write commands. - Use Case: After a week of capturing ideas and bug reports with /fb, run /digest to refresh the project notes board with everything sorted and resolved items moved or removed. ## Quick Start Ask the assistant to run /digest to compile this repo's docs/feedback.md into an updated docs/notes.md board.

Frequently Asked Questions about digest

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I compile a feedback log into a notes board?

Run /digest in the repo containing docs/feedback.md. The skill reads the raw log, folds new entries into the board's buckets, and rewrites docs/notes.md with an updated "last compiled" footer date.

How does digest avoid reprocessing old feedback entries?

It uses the notes.md footer line "last compiled YYYY-MM-DD" as the cutoff. Only entries dated after the cutoff, plus unboarded same-day entries, are folded in; folding is idempotent so recompiles are safe.

Does digest modify the raw feedback log file?

No. The feedback log is strictly read-only to this skill. It never writes markers, fixes, or reformats into the log, never creates a missing feedback file, and never runs git write commands.

What happens if docs/feedback.md is missing when running digest?

The skill stops and reports the path it checked. It never creates a feedback file itself, since capture is owned by the separate /fb skill.

Can digest compile a feedback file outside the current repo?

Only when the user explicitly names a markdown file path. It then writes notes.md in that file's own directory, asks before overwriting a non-board notes.md, and skips the git repo resolution entirely.