From clotho
Use when the user says 'morning', 'daily brief', 'what should I focus on', 'start of day', 'what's on today', or wants a prioritized view of today's work.
How this skill is triggered — by the user, by Claude, or both
Slash command
/clotho:daily-briefThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Start-of-day ceremony. No agent needed — this is a pure query + synthesis skill. Present the user with a prioritized view of what needs attention today.
Start-of-day ceremony. No agent needed — this is a pure query + synthesis skill. Present the user with a prioritized view of what needs attention today.
The workspace is set automatically. Use clotho_set_workspace if needed.
Ask:
"Good morning. Anything new before we look at the day?"
Handle any quick input, then proceed.
Run these queries in parallel:
Use Bash to: ls -la <workspace_path>/.clotho/inbox/ 2>/dev/null
clotho_list_entities(state: "blocked")
For each blocked task, get what's blocking it:
clotho_get_relations(entity_id: "<blocked_task_id>")
clotho_list_entities(state: "doing")
clotho_list_entities(state: "todo")
clotho_list_entities(entity_type: "Question")
clotho_list_entities(entity_type: "Risk")
Present in this priority order:
"You have N unprocessed items in your inbox."
"Blocked:
- [task title] — blocked by: [blocker title]
- ..."
If deadline data is available in entity metadata, surface items due today and this week.
"In progress:
- [task title]
- ..."
Surface items with upcoming deadlines.
"Needs attention:
- [Question] How do we handle session store migration?
- [Risk] Database migration may cause downtime"
Flag todo tasks created more than 7 days ago:
"Stale (>7 days in todo):
- [task title] (created N days ago)"
End with:
"That's your day. What do you want to tackle first?"
No sync needed — this is read-only.
npx claudepluginhub colliery-io/clotho --plugin clothoGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.