بنقرة واحدة
weekly-review
Review the week, synthesize patterns, and save a structured weekly review.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Review the week, synthesize patterns, and save a structured weekly review.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
| name | weekly-review |
| description | Review the week, synthesize patterns, and save a structured weekly review. |
daily-journal).nbhd_journal_context({ days: 7 }).thumbs-up|thumbs-down|meh).nbhd_document_put (this stores the full markdown narrative).nbhd_weekly_review_create with the structured fields (rating, top wins, challenges, lessons, intentions). Both writes are required — nbhd_document_put alone will not populate the Weekly Pulse card on the user's Horizons page.| Tool | Purpose |
|---|---|
nbhd_journal_context | Load recent daily notes + memory (days: 7) |
nbhd_document_put | Save weekly review document (kind: "weekly", slug: "YYYY-MM-DD" Monday of week) |
nbhd_weekly_review_create | Save structured weekly review (rating + wins/challenges/lessons/intentions) so it lights up the Horizons Weekly Pulse card |
nbhd_journal_search | Search past notes for specific topics if needed |
nbhd_journal_context
{
"days": 7
}
nbhd_document_put
{
"kind": "weekly",
"slug": "YYYY-MM-DD",
"title": "Weekly Review — YYYY-MM-DD",
"markdown": "Free-form markdown: patterns, wins, challenges, lessons, intentions, rating"
}
The slug should be the Monday of the review week (ISO date). The markdown body is free-form — include sections for patterns, wins, challenges, lessons learned, intentions for next week, and the user's week rating.
nbhd_weekly_review_create
{
"week_start": "YYYY-MM-DD",
"week_end": "YYYY-MM-DD",
"week_rating": "thumbs-up",
"mood_summary": "One-line mood/energy arc of the week",
"top_wins": ["…"],
"top_challenges": ["…"],
"lessons": ["…"],
"intentions_next_week": ["…"],
"raw_text": "The same narrative markdown (or a condensed version) as a plain-text fallback"
}
week_start is the Monday of the reviewed week, week_end is the Sunday. week_rating must be exactly thumbs-up, thumbs-down, or meh. Keep each list to the top 1-5 items — these are the summaries that render on the Horizons Weekly Pulse card.
Request user confirmation before executing irreversible actions (delete, trash, send email).
Extract, classify, cross-reference, and persist goals/tasks/ideas/lessons from conversation and automation passes. Use when: end-of-conversation reflection cues, scheduled daily/weekly/monthly review triggers, or explicit user request to "save this"/"track this"/"remember". Don't use for routine chatting where no durable capture is needed.
Manage the user's daily journal -- morning reports, weather, news, focus, evening check-ins, and long-term memory curation. Use when: a scheduled job fires for morning report, evening reminder, or memory curation. Also use when the user asks to add a journal entry, check their journal, review their week, or update their memory. Don't use when: the user is just chatting and not referencing their journal or daily workflow.