| name | status-overview |
| description | Role and project workload overview. Use when user wants to see their current workload, role balance, or status across roles/projects. Auto-triggers on phrases like "how am I doing", "workload", "what's on my plate", "role balance", "project status", "hur ligger jag till", "arbetsbelastning", "rollbalans". |
| allowed-tools | Bash, Read |
Skill: status-overview
Purpose
Provides clear visibility into workload across roles and projects. Helps users understand their current balance, identify attention items (overdue, stale), and make informed decisions about where to focus.
Trigger Conditions
- Slash command:
/overview [role]
- Natural phrases: ["how am I doing", "workload", "what's on my plate", "role balance", "project status", "hur ligger jag till", "arbetsbelastning", "rollbalans", "visa status", "hur ser det ut", "översikt"]
- Auto-trigger: When user asks about their current status or workload
Required Context (gather BEFORE starting workflow)
- Active roles via
roles getActiveRoles â returns Role[] for overview
- Overdue tasks via
tasks getOverdueTasks â returns Task[] for attention flags
- Stale tasks via
tasks getStaleTasks â returns Task[] for attention flags
- Profile via
profile getProfile â returns full profile (optional, for role balance targets)
How to gather context:
bun run src/aida-cli.ts roles getActiveRoles
bun run src/aida-cli.ts tasks getOverdueTasks
bun run src/aida-cli.ts tasks getStaleTasks
bun run src/aida-cli.ts profile getProfile
Workflow Steps
Mode Selection
Determine which mode based on user input:
- Mode 1: General overview (no role specified)
- Mode 2: Role-specific overview (role name/ID provided)
Mode 1: General Overview
Trigger: /overview or "hur ligger jag till"
Step 1: Gather Role Data
Step 2: Calculate Balance
See ROLE-BALANCE.md for balance calculations.
- Action: Calculate percentage of tasks per role vs profile balance targets
- Output to user: None yet
- Wait for: Continue immediately
Step 3: Identify Attention Items
See ATTENTION-FLAGS.md for criteria.
- Action: Flag overdue tasks, stale tasks, imbalanced roles
- Output to user: None yet
- Wait for: Continue immediately
Step 4: Present Summary
Mode 2: Role-Specific Overview
Trigger: /overview Developer or "hur ligger Developer-rollen till"
Step 1: Get Role Details
Step 2: Group by Status and Project
- Action: Count tasks by status (captured, ready, planned, active, done), list projects with task counts
- Output to user: None yet
- Wait for: Continue immediately
Step 3: Identify Role-Specific Attention Items
- Action: Flag overdue/stale tasks specific to this role
- Output to user: None yet
- Wait for: Continue immediately
Step 4: Present Role Breakdown
Output Format
- Language: Swedish (default)
- Style: Clear tables, visual indicators (emoji), actionable insights
- Structure: Summary first, details on request (drill-down)
Example general overview:
đ Din arbetsbelastning just nu
Du har totalt 28 uppgifter fördelade pÄ 4 roller:
đč Systemutvecklare: 12 tasks (43%)
đč FörĂ€lder: 5 tasks (18%)
đč Hobbyutvecklare: 8 tasks (29%)
đč Ordförande: 3 tasks (10%)
â ïž UppmĂ€rksamhetspunkter:
⹠2 försenade tasks (bÄda i Systemutvecklare)
⹠FörÀlder-rollen under mÄl (18% vs 25%)
Vill du gÄ djupare i nÄgon roll?
Example role-specific:
đ FörĂ€lder - Status
đ Uppgifter (5 totalt):
â
Captured: 2
â
Ready: 2
â
Planned: 1
âł Active: 0
Inga försenade eller stale tasks! đ
đ
Kommande:
⹠"Boka tandlÀkartid" - Deadline imorgon
đĄ Du har inga aktiva tasks just nu.
Vill du aktivera nÄgon? (/next)
Error Handling
- If
roles getActiveRoles returns empty: Show message "Inga roller finns Ànnu. Du behöver skapa roller via profile-management först."
- If no tasks exist: Show empty state "Inga uppgifter Ànnu. Vill du fÄnga nÄgot nytt?" and suggest task-capture
- If role not found (Mode 2): Show error "Rollen '[name]' hittades inte. TillgÀngliga roller: [list]"
- If
tasks getTasksByRole fails: Show error message, skip that role in overview
- If profile doesn't exist or no balance targets: Skip balance comparison, just show task counts
- If no attention items: Show positive message "Allt ser bra ut! đ"
Anti-patterns
- NEVER show raw task counts without context - always include interpretation/insights
- NEVER skip overdue/stale warnings - these must always be highlighted
- NEVER present all tasks - show counts and drill-down options, not full lists
- NEVER modify data - this is a read-only skill
- NEVER create tasks, journal entries, or update profile - only display information
- NEVER ignore imbalances - if role balance differs from targets, mention it
- NEVER use direct SQL - always use aida-cli.ts
- NEVER run query modules directly
Tool Contract
Allowed CLI Operations:
- tasks: getTasksByRole, getOverdueTasks, getStaleTasks, getTodayTasks (READ ONLY)
- roles: getActiveRoles, getRoleById (READ ONLY)
- projects: getProjectsByRole, getActiveProjects (READ ONLY)
- profile: getProfile, getAttribute (READ ONLY)
Forbidden Operations:
- Creating tasks
- Modifying task status
- Updating profile
- Creating journal entries
- Any delete operations
Output Only:
- Formatted workload summary
- Attention flags (overdue, stale, imbalance warnings)
- No data modifications
File Access:
- Read:
personal-profile.json
- No file writes - Read-only skill
Supporting Documentation
Design Principles
- Actionable insights - Don't just show data, interpret it
- Highlight problems - Overdue and stale items need attention
- Show balance - Compare actual vs target role distribution
- Enable drill-down - Overview â Role â Task
- No overwhelm - Summary first, details on request