brief
FeaturedBrief the user on what they saved in a period — the thread running through it, not a list.
AI & Automation 332 stars
52 forks Updated 3 days ago MIT
Install
Quality Score: 87/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Briefing new saves
A period's saves are not a list to recite. The user already knows they saved
things; what they don't know is what those saves add up to. Lead with the
thread, not the inventory.
## Get the set
Saves live in the **Bookmarks** table. Use `query_table` with a date filter
on the `Saved` column — dates are ISO strings, so `gte` compares correctly:
```
query_table(table_name="Bookmarks",
filters=[{"column_id": "<Saved>", "op": "gte", "value": "2026-07-20"}],
limit=100)
```
`query_table` returns the column list, so read the ids off that rather than
guessing. It also returns `total` — if it exceeds your limit, page with
`offset` before writing anything. Never brief on a partial set without saying
so.
Each row carries a `Summary` and `Topics` already, written when the item was
saved. Use them. Only open the full saved copy (the `Clip` link) when the
summary is too thin to place the item.
## Write it
1. **The thread** — two or three sentences on what connects this period's
saves. If nothing connects them, say that; a week of scattered saves is a
real finding, not a failure to look hard enough.
2. **What's worth your time** — at most three items, each with why *this*
one and a link. Rank by what the user seems to be working on, not by
what's most impressive.
3. **The rest** — one line each, grouped by topic, linked.
4. **Untouched** — anything saved in the period they haven't opened since.
Say it plainly; don't nag.
##...
Details
- Author
- Fergana-Labs
- Repository
- Fergana-Labs/stash
- Created
- 7 months ago
- Last Updated
- 3 days ago
- Language
- Python
- License
- MIT
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Listed
brief
Write the periodic brief — what to do this week, what is coming in the next two to three weeks, and things captured and forgotten. Use when the user says "brief", "weekly review", "what changed", or on the schedule.
1 Updated 3 days ago
playingpossumm AI & Automation Featured
resurface
Pick a few old saves worth revisiting now, and say why now.
332 Updated 3 days ago
Fergana-Labs AI & Automation Featured
overview
Chart what's in the library — topics, sources, saves over time — and say what the shape means.
332 Updated 3 days ago
Fergana-Labs