From 631206d897a1e3f853b25ca981e51c582576dac2 Mon Sep 17 00:00:00 2001 From: Joe Danziger Date: Fri, 17 Apr 2026 12:30:57 -0400 Subject: [PATCH] fix(docs): point CLAUDE.md injection at projects/ not repos// MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The CLAUDE.md declaration asks agents to query about 'architecture, dependencies, stack history' — all of which live on the project page. The brain doesn't store commit history, so 'repos//' was misleading. Point at 'projects/' as the primary tracking location. Also remove the redundant 'appends to repos//' — pbrain remember auto-detects the project; agents don't need to know the implementation detail that it happens to write to the repo page. --- README.md | 4 ++-- skills/project-onboard/SKILL.md | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 3d89b722..e02a9b0e 100644 --- a/README.md +++ b/README.md @@ -237,13 +237,13 @@ To put a project in PBrain's brain, invoke the `project-onboard` skill once insi ```markdown ## pbrain -This project is tracked in pbrain as `repos//`. +This project is tracked in pbrain as `projects/`. - Before answering questions about architecture, dependencies, stack history, or past decisions, query the brain: `pbrain query ""`. - When a significant decision is made, record it with `pbrain remember ""` — the command auto-detects the current - project and appends a timeline entry to `repos//`. + project and appends a timeline entry. - To re-onboard (e.g. after a brain wipe), run the `project-onboard` skill. ``` diff --git a/skills/project-onboard/SKILL.md b/skills/project-onboard/SKILL.md index 7e5f1429..08b7f40a 100644 --- a/skills/project-onboard/SKILL.md +++ b/skills/project-onboard/SKILL.md @@ -246,19 +246,19 @@ exists) for a line matching `^## pbrain\s*$`. If present, skip this phase entirely. Do NOT append a second section. If absent (or if CLAUDE.md doesn't exist), append (or create with) exactly -this section, substituting `/` with the concrete slug: +this section, substituting `` with the project's slug: ```markdown ## pbrain -This project is tracked in pbrain as `repos//`. +This project is tracked in pbrain as `projects/`. - Before answering questions about architecture, dependencies, stack history, or past decisions, query the brain: `pbrain query ""`. - When a significant decision is made, record it with `pbrain remember ""` — the command auto-detects the current - project and appends a timeline entry to `repos//`. + project and appends a timeline entry. - To re-onboard (e.g. after a brain wipe), run the `project-onboard` skill. ```