بنقرة واحدة
today
Generate daily plan from due tasks and active projects. Part of chief-of-staff vault system.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Generate daily plan from due tasks and active projects. Part of chief-of-staff vault system.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Create or schedule a context farmer. Checks existing farmers and offers to build new ones or schedule existing ones.
End of day review - compare planned vs actual, update task statuses. Part of chief-of-staff system.
Delegate a task by forking a terminal session to a new terminal window. Use this when the user requests 'delegate' or 'create a new terminal' or 'new terminal: <command>' or 'fork session: <command>'.
Manually trigger a context farmer subagent. Usage - /farm <name> (e.g., /farm slack)
Show recent git activity in readable format. Part of chief-of-staff system.
Quick capture - classify and file natural language input into the vault. Part of chief-of-staff system. Use for capturing tasks, ideas, project notes, or people notes.
| name | today |
| description | Generate daily plan from due tasks and active projects. Part of chief-of-staff vault system. |
Generate today's plan from vault contents.
daily/YYYY-MM-DD.md exists - if so, read it firstdue: YYYY-MM-DD (today's date) → Due Todayprojects/*.md for status: active, read those filesgit log --since="midnight" --grep="cos:" --oneline for today's activitydaily/YYYY-MM-DD.mdAll tasks have due: YYYY-MM-DD in frontmatter. Use grep to find relevant tasks efficiently:
# Today's tasks (replace with actual date)
grep -l "due: 2026-01-23" tasks/*.md
# Overdue: grep for each date before today, or use date range pattern
grep -l "due: 2026-01-2[0-2]" tasks/*.md # dates 20-22 if today is 23rd
# This week: grep for dates through end of week
grep -l "due: 2026-01-2[3-9]" tasks/*.md # adjust pattern for week
Only read files returned by grep. Never glob and read all task files.
When the daily file already exists:
[x] completed items as-is---
type: daily
date: YYYY-MM-DD
---
## Due Today
- [ ] Task items from tasks/ with today's due date
## Overdue
- [ ] Tasks past due (X days overdue)
## Active Projects
- Project Name (next: next action from file)
## Recent Activity
- Items from git log