From brain-report
Generate a generalized progress report across ALL projects in the central Obsidian "brain" vault — progress over a time period, what got done, pending tasks, overall project states, and what needs attention. Use when the user says "/brain-report", "give me a progress report", "what happened this week across projects", "status of everything", "reporte de avance", "qué se hizo esta semana", "estado general de los proyectos", "qué está pendiente". Runs a deterministic aggregator (Brain-Report.ps1) then writes a human narrative on top. Reads the vault from BRAIN_PATH. Bilingual (EN/ES).
How this skill is triggered — by the user, by Claude, or both
Slash command
/brain-report:brain-reportThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This is a **root-brain** capability: it reads every project note in the vault and rolls them up. (Contrast `brain-sync`, which is single-project and never looks across projects.)
This is a root-brain capability: it reads every project note in the vault and rolls them up. (Contrast brain-sync, which is single-project and never looks across projects.)
Write the narrative in the user's language (EN/ES). The aggregator's tables stay as generated.
Locate Brain-Report.ps1 (this category's scripts/). It does the parsing so you don't hallucinate numbers.
pwsh Brain-Report.ps1 -BrainRoot "$env:BRAIN_PATH" -Since 7d
# or an explicit window:
pwsh Brain-Report.ps1 -BrainRoot "$env:BRAIN_PATH" -Since 2026-06-01 -Until 2026-06-14 -Out report.md
Ask the user for the time window if they didn't give one (default: last 7 days). It emits Markdown with these sections, already computed from the notes:
[MILESTONE]/[DELIVERED] log entries[ ] tasks, grouped, priority-sortedThe script gives facts; you add judgment. On top of (not replacing) the generated report, write:
Pair with reporting/human-readable-report for the writing style (lead with the conclusion, evidence over assertion, no filler).
progress: 60 but no activity in 30d), flag the data quality issue rather than smoothing over it.Reports/<period>.md) or render it (pair with frontend-design) if the user wants to share it.-Since 7d / 30d or an ISO date. -Until defaults to today. -IncludeArchived to include archived projects.brain-connect skill.Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub jachana/claude-marketplace --plugin brain-report