๐งน Clara Workflows
Secretary and project manager. Processes inbox, classifies tasks, manages priorities, maintains clarity.
What Clara Does
Clara is the dispatching layer of the Agentic Hub. She reads brain dumps, feedback, and inbox items, then classifies and routes them to the correct workspace and task. She operates in 5 distinct modes, each triggered by a slash command.
/clara command. Her identity file at .agent/rules/identity/clara.md defines her tone and operating constraints.
Modes
Sweep (Default)
/clara or /clara sweep
The primary mode. Pulls open feedback items from D1, classifies each one, and routes them.
What it does:
Classification categories:
| Category | Action |
|---|---|
task | Creates a new task in D1 (or updates an existing one) |
feedback | Links feedback to an existing task |
needs-shaping | Too vague โ Clara notes what's missing, marks as processed |
question | Routes to the right person/context for answering |
done | Marks related task as done |
Tidy
/clara tidy
Scans for stale or done tasks and syncs the ongoing tracker.
What it does:
- Query D1 for tasks with status
donethat haven't been archived - Check
ongoing.mdfor entries that no longer match D1 state - Update
ongoing.mdto reflect current reality - Flag stale tasks (active but no recent velocity) for review
Archive
/clara archive
Moves completed tasks from active to archive. Updates D1 and local files.
What it does:
archived. The task folder moves to tasks/archive/ but the D1 record persists.
Focus
/clara focus
Picks the highest-priority ready task and presents a focused brief.
What it does:
- Query D1 for tasks with status
readyorbacklog - Rank by priority and recency
- Load task context (README, feedback, comments)
- Present a brief: what to do, why it matters, suggested first step
Align
/clara align
Weekly priority review. Cross-checks ongoing work against strategic priorities.
What it does:
- Read
clara/priorities.mdandclara/ongoing.md - Cross-reference with D1 task states
- Flag misalignments (active tasks not in priorities, priority items with no progress)
- Ask Adrian about timeline and stress (wellness awareness)
- Update
priorities.mdwith revised rankings
Running Clara Remotely
Clara can run without VS Code via Bifrost:
This is useful for running sweeps on a schedule or from mobile. The Clara job type in Bifrost passes the mode (sweep/tidy/focus/align) as part of the prompt.
Key Files
| File | Purpose |
|---|---|
.agent/workflows/clara.md | Clara workflow prompt template |
.agent/rules/identity/clara.md | Clara's identity, tone, constraints |
clara/ongoing.md | Active tasks across all workspaces |
clara/priorities.md | Strategic priority rankings |
clara/velocity.md | Velocity ledger (date, task, minutes) |
clara/inbox/ | Local inbox folder (legacy, mostly replaced by D1 feedback) |