用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Fergana-Labs/stash --skill brief命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | brief |
| description | Brief the user on what they saved in a period — the thread running through it, not a list. |
| when_to_use | When the user asks what they saved this week/month, wants catching up on recent saves, or a scheduled digest fires. |
| version | 1 |
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.
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.