Agent skill
things-week-ahead-digest
Summarize Things todos and recommend next actions using recent activity across projects, areas, and checklist-like notes, plus a week/weekend-ahead preview. Use when asked for Things planning digests, productivity check-ins, weekly previews, or automation that turns Things data into concise priorities.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/things-week-ahead-digest
SKILL.md
Things Week Ahead Digest
Build a repeatable Things planning digest with four sections:
- Snapshot
- Recently Active
- Week/Weekend Ahead
- Suggestions
Inputs
Collect data with Things MCP tools:
things_read_areasthings_read_projectswithstatus="open"things_read_todoswithstatus="open"(setlimithigh enough for a full view, usually 300-500)things_read_todoswithstatus="completed"andcompleted_after=<today-7d>- Optional:
things_read_todofor top candidate tasks (include_notes=true) when notes/checklist signals are needed
If any call fails because of permissions, report the missing permission and continue with the best available subset.
Workflow
- Build urgency buckets from open todos:
- overdue:
deadline < today - due soon:
deadline <= today + 3 days - week/weekend ahead:
deadlinebetween today andtoday + 4 days
- Score recent activity by project and area using:
- recent completions (last 7 days)
- open tasks
- due soon / overdue counts
- checklist-like hints from notes (
- [ ],- [x], multiline bullet blocks)
- Identify top active projects/areas from the score.
- Generate 3-5 concrete suggestions:
- one next action for top projects
- one risk/triage action for overdue work
- one planning action for weekend or Monday readiness when relevant
- Format with the template in
references/output-format.md.
Keep tone concise and operational. Prefer verbs and specific task titles over generic advice.
Scripts
Use scripts/build_digest.py when deterministic scoring/formatting is preferred (automation, repeatability, large datasets).
python3 scripts/build_digest.py \
--areas areas.json \
--projects projects.json \
--open-todos open_todos.json \
--recent-done recent_done.json
The script reads JSON exported from Things MCP responses and prints Markdown digest output.
Automation Templates
Use $things-week-ahead-digest inside automation prompts so Codex reliably loads this workflow.
For ready-to-fill Codex App and Codex CLI (codex exec) templates, including Things MCP fallback guidance, placeholders, and customization knobs, use:
references/automation-prompts.md
References
- Scoring and suggestion rules:
references/suggestion-rules.md - Output shape and section template:
references/output-format.md - Automation prompt templates:
references/automation-prompts.md
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?