๐ Tracking Workflows
Logging, status checks, wrap-ups, and velocity. Keeping the system and the human oriented.
Overview
Tracking workflows handle the observability layer: what was done, how long it took, and what's the current state. They're the glue between work sessions and the portal's historical views.
Commands
/log
Create Session Log
Writes a log entry for the current session. Uses the dual-write pattern: local markdown file + D1 API POST.
What it does:
logs/YYYY-MM-DD.md
โ
POST to /api/logs
โ
Visible in portal Logs page
POST /api/logs body must include date (YYYY-MM-DD), workspace, and content. Missing date returns 400 silently.
/status
Quick Daily Status
Read-only check of current state. Shows active tasks, recent logs, velocity, and any open feedback. Useful for morning orientation or mid-day check-ins.
What it reads:
clara/ongoing.mdโ what's active across all workspaces- D1 tasks with status
active - Recent velocity entries
- Open feedback items
- Today's log (if any)
/ongoing
Sync Ongoing Files
Synchronizes ongoing.md files across all four workspaces. Each workspace has its own ongoing tracker that lists active tasks for that workspace.
| File | Scope |
|---|---|
e:\Agentic\clara\ongoing.md | Master โ all workspaces combined |
e:\Dev\mipos-dev-context\ongoing.md | Dev workspace tasks |
e:\Work\ops\ongoing.md | Work workspace tasks |
e:\Life\adrian-life-context\ongoing.md | Life workspace tasks |
/wrapup
End of Session / Day
The comprehensive session-close workflow. Commits outstanding changes, writes log and velocity, updates ongoing, and optionally posts to #dev channel.
What it does (in order):
/commit
Git Commit
Creates a git commit using the conventional commits format. Analyzes staged changes and generates an appropriate commit message.
Format: type(scope): description
| Type | When |
|---|---|
feat | New feature or capability |
fix | Bug fix |
refactor | Code restructuring (no behavior change) |
docs | Documentation only |
chore | Maintenance, config, dependencies |
log | Session log entry |
/align
Personal Strategic Alignment
Life-level alignment check. Reviews personal goals, values, and priorities. Different from Clara's /clara align which focuses on task prioritization.
/logarchive
Archive Old Logs
Moves log files older than a threshold into yearly archive folders (e.g., logs/2026/). Keeps the main logs/ directory manageable.
Velocity Tracking
Velocity is measured in minutes, never hours. Each session records:
| Field | Example |
|---|---|
| Date | 2026-03-16 |
| Workspace | agentic |
| Task ID | A94 |
| Minutes | 45 |
| Notes | Docs expansion โ features + workflows |
Velocity is dual-written to clara/velocity.md (local) and POST /api/velocity (D1). The portal Logs page aggregates velocity data for trend visualization.