build-team
Propose and, after approval, configure a personalized team of Codex subagent roles based on the user's profile, goals, and working style.
Show everything Claudia knows with provenance tracing and entity counts. Triggers on \"what do you know?\", \"show memories\", \"memory audit\", \"what do you remember about\". See also: `memory-health` for system-level stats and data quality; `diagnose` for connectivity
$ npx -y skills add kbanc85/claudia --skill memory-audit --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/memory-auditContext preview
The summary Claude sees to decide when to auto-load this skill.
Show everything Claudia knows with provenance tracing and entity counts. Triggers on \"what do you know?\", \"show memories\", \"memory audit\", \"what do you remember about\". See also: `memory-health` for system-level stats and data quality; `diagnose` for connectivity
name: memory-audit description: "Show everything Claudia knows with provenance tracing and entity counts. Triggers on \"what do you know?\", \"show memories\", \"memory audit\", \"what do you remember about\". See also: `memory-health` for system-level stats and data quality; `diagnose` for connectivity troubleshooting." argument-hint: "[entity name]" effort-level: medium
Show what Claudia knows. Verify claims trace to sources. Surface gaps.
When run without arguments, produce a system-level overview of everything in memory.
Query the memory system for aggregate counts:
claudia memory entities search --query "*" --project-dir "$PWD" claudia memory recall "*" --compact --limit 1 --project-dir "$PWD" claudia memory document search --project-dir "$PWD"
Parse the JSON output from each command to get counts.
Display:
## Memory Audit - [Date] | Category | Count | |----------------|-------| | Entities | N | | Memories | N | | Commitments | N | | Documents | N | | Relationships | N |
claudia memory entities search --types "person" --limit 10 --project-dir "$PWD" For each person: claudia memory about "[person name]" --project-dir "$PWD"
Display as a table:
### People | Name | Memories | Last Mentioned | Key Fact | |------|----------|----------------|----------| | ... | ... | ... | ... |
Same pattern with types=["project"]:
claudia memory entities search --types "project" --limit 10 --project-dir "$PWD"
claudia memory session context --project-dir "$PWD"
Pick the 3 most recent high-importance memories and trace them:
claudia memory recall "*" --compact --limit 3 --project-dir "$PWD" For each result, run: claudia memory provenance trace --memory-id "[id]" --project-dir "$PWD"
Display:
### Provenance Check (3 recent memories) **Memory:** "[content snippet]" - Source: [episode/document/user_input] - Document: [filename] (if linked) - Entities: [linked entities] - Verified: [yes/no/pending]
---
When run with an entity name (e.g., `/memory-audit Sarah Chen`):
claudia memory about "[entity name]" --project-dir "$PWD"
Display:
## Audit: [Entity Name] **Type:** person/project/organization **Description:** [from entity record] **Importance:** [score] **First seen:** [created_at] **Last mentioned:** [updated_at]
From the `claudia memory about` JSON response, group memories:
### Facts (N) - [content] (importance: X, created: date) ### Commitments (N) - [content] (importance: X, created: date) ### Observations (N) - [content] (importance: X, created: date)
### Relationships (N) - [relationship_type] with [other_entity] (strength: X)
claudia memory document search --entity "[entity name]" --project-dir "$PWD"
Display:
### Documents (N) - [filename] ([source_type], [date]) - [summary snippet]
For each commitment or high-importance memory (importance > 0.7):
claudia memory provenance trace --memory-id "[memory ID]" --project-dir "$PWD"
Display:
### Provenance **"[memory content]"** (commitment, importance: 0.9) |- Source: session_summary (episode 42) |- Episode: "Discussed Q2 goals with Sarah..." |- Document: meeting-sarah-q2.md (transcript) |- Verified: yes (2026-01-15)
---
Terminal-based AI chief of staff. Remembers relationships, tracks commitments, helps you think strategically. Runs on Claude Code.
Repo: kbanc85/claudia
Propose and, after approval, configure a personalized team of Codex subagent roles based on the user's profile, goals, and working style.
Use Claudia's identity, persistent local memory, relationship context, project routing, judgment rules, and strategic operating style. Trigger for personal,…
Inspect Claudia's unified production memory database and backups. Use for database identity, health, counts, schema, WAL, backup inventory, or an explicitly…
Run Claudia's required first-conversation setup. Use automatically before substantive work whenever the current Claudia workspace has no context/me.md,…
Iteratively improve a local artifact (draft, document, page) by running a hill-climbing loop. The user names the artifact, the evaluator, and the budget.…
Launch the Brain Monitor TUI, a real-time terminal dashboard for watching Claudia's memory system. Triggers on \"brain monitor\", \"show dashboard\", \"memory…