Professional Brain Skill
Maintain a durable, local markdown memory ('brain') of your product context, decisions, hypotheses, and stakeholders that other skills read from and write back to.
How to use it
Claude Code
- Run the line below. It pulls the whole folder into
~/.claude/skills/professional-brain, including the files SKILL.md points to. - Describe your job in plain words. Claude Code follows the skill from there.
npx degit mohitagw15856/pm-claude-skills/skills/professional-brain#main ~/.claude/skills/professional-brainFor one project only, change the path to .claude/skills/professional-brain. This skill also uses context.md, pm-context.md, strategy.md, market.md, users.md, org.md — copying SKILL.md alone won't be enough. See the folder on GitHub.
Claude (web or desktop app)
- On this page open ⋯ → Download .md.
- Save it as SKILL.md in a folder, zip the folder, then Customize → Skills → + → Create skill → Upload a skill.
- Pick the file and Save. Claude shows the name and description and runs a security scan.
- Check the skill is switched on.
- Start a new chat and describe your job in plain words. The AI follows the skill from there.
ChatGPT or another app
- ChatGPT: make a Project and paste it into Instructions.
- Neither? Paste it at the top of a new chat — it works for that chat.
Not working?
- Check which app you pasted it into — the steps above name the right one.
- Some skills need the paid tier of Claude or ChatGPT.
Paste into Claude, ChatGPT or Cursor.
Source of Professional Brain Skill
Show the full text170 lines
| name | description |
|---|---|
| professional-brain | Maintain a durable, local markdown memory ('brain') of your product context, decisions, hypotheses, and stakeholders that other skills read from and write back to. Use when asked to set up a brain, ingest notes/artifacts into memory, recall what's known about a topic, log a decision with provenance, or run a weekly brain review. Produces a structured brain/ folder (knowledge, decisions, hypotheses, stakeholders, entities, source) with provenance-tagged facts, plus ingest/recall/record/review operations with approval-gated, append-only write-back. |
Professional Brain Skill
🚀 New to this? Start with the 5-minute Quickstart — a folder + one file, with a worked example. This file is the full reference.
Most skills start cold — you paste the same context every time, and decisions made six weeks
ago lose the why. This skill gives the library a memory: a plain-markdown brain/ folder
on disk that skills read before they answer and write to after. No vector DB, no cloud — just
grep-able files you (and Claude) can audit and edit.
This is the state layer of an AI teammate. Pair it with the action layer (skills that file tickets / open PRs) and you get a loop: recall → do the work → record the decision → review.
What This Skill Produces
- A scaffolded
brain/folder with a fixed schema (see below). - Provenance-tagged knowledge — every claim says where it came from and how strong it is.
- Four operations you can invoke: init, ingest, recall, review.
- A standing contract other skills follow: read the relevant brain files first; write durable outcomes (decisions, new facts, stakeholder asks) back.
Required Inputs
Ask for these only if they aren't already on disk or in the request:
- Which operation —
init,ingest,recall, orreview(default: infer from the ask). - For ingest: the artifact (a pasted note, a file path, a transcript) and what it's about.
- For recall: the topic or question to answer from memory.
- The brain location — default
./brain/at the project root.
The Brain Schema
brain/
context.md # who/what: product, ICP, metrics definitions, voice (supersedes pm-context.md)
knowledge/ # durable facts — strategy.md, market.md, users.md, org.md
decisions/ # one file per decision: what, why, alternatives rejected, reopen-when
hypotheses/ # assumptions: statement, evidence, status (open/validated/invalidated)
stakeholders/ # one file per person: asks, concerns, comms history
entities/ # typed objects: features, accounts, experiments — the artifact graph
source/ # immutable originals (audit trail) — never edited after capture
It is Obsidian-vault compatible: open brain/ as a vault and the links become a graph.
Provenance Tags (the trust mechanism)
Every fact carries a tag in square brackets so its strength is explicit. Skills must keep the tag when they reuse a fact, and downgrade confidence for weak tags.
| Tag | Means | Strength |
|---|---|---|
[data] |
from analytics / a metric / a measured result | strong |
[interview] |
from a documented user or customer interview | strong |
[external] |
from third-party / market research | medium |
[verbal] |
said in a meeting, not independently documented | weak |
[hunch] |
informed intuition, no evidence yet | weakest |
Example: Mobile drives 65% of DAU [data]. Enterprise wants SSO before renewing [verbal].
Operations
init — Create the folder schema. Migrate an existing pm-context.md into context.md.
Offer to ingest any artifacts the user already has (Notion export, Jira CSV, notes).
ingest <thing> — Store the original verbatim in source/, then synthesise it into the
right durable file(s) (knowledge/, decisions/, hypotheses/, stakeholders/), tagging each
extracted claim with its provenance. Never discard the source.
recall <query> — Answer from memory. Use the helper script to find matching facts across
the brain, then synthesise an answer that cites each fact's file and tag. If memory is thin,
say so rather than inventing.
record — The write-back half of the loop (Phase 1). After a skill produces an artifact (or on demand), extract the durable outcomes worth remembering — decisions made, new facts learned, assumptions surfaced, stakeholder asks — and propose them as a numbered list, each with its target section and provenance tag. This is the action surface, so it is approval-gated and dry-run by default:
- Propose — show the records you'd write (section · tag · text). Preview with
brain_write.py …(no--commit), which prints exactly what would be appended. - Approve — the user confirms, edits, or drops items. Never write without a yes.
- Append — write the approved records with
--commit. Append-only: decisions become a new numbered file; everything else appends to its named file. Nothing is overwritten.
Downgrade weak evidence honestly — a conclusion from one call is [interview], a gut call is
[hunch]; don't launder it into [data].
review — Weekly sweep. Flag: stale hypotheses (open too long with no new evidence),
decisions whose reopen-when condition now holds, contradictions between files, and facts that
are only [hunch]/[verbal] but are being treated as settled. Draft the updates; don't apply
silently.
Programmatic Helper
scripts/brain_query.py (stdlib only) does deterministic recall — it greps the brain for a
query and returns matches with their file and detected provenance tag, so retrieval is
transparent (no embeddings, no guessing).
# Find what the brain knows about "activation", newest-first, as text
python3 scripts/brain_query.py ./brain "activation"
# JSON for chaining into another step
python3 scripts/brain_query.py ./brain "enterprise SSO" --json
Use its output as the grounded evidence set, then synthesise the answer on top — never answer a recall from outside the brain without saying so.
scripts/brain_write.py is the write-back counterpart — it appends a provenance-tagged record
(append-only, never overwrites) and is dry-run by default so you can preview before committing:
# Preview what would be written (changes nothing):
python3 scripts/brain_write.py ./brain decisions "Prioritise mobile" --tag data --body "68% of churn is mobile" --source "Q3 analytics"
# Write it after approval:
python3 scripts/brain_write.py ./brain decisions "Prioritise mobile" --tag data --body "…" --source "Q3 analytics" --commit
The contract for other skills
A brain-aware skill adds a short "Reads from / Writes to the Brain" section:
- Reads: before producing, pull the relevant files (e.g.
prd-templatereadscontext.md,knowledge/strategy.md, and any relatedhypotheses/+entities/). - Writes: after producing, append durable outcomes (e.g.
meeting-noteswrites each decision todecisions/, new asks to the relevantstakeholders/file), each provenance-tagged.
Output Format
For ingest, confirm what was captured:
Ingested: [artifact]
- Source saved:
source/[file] - Knowledge updated:
knowledge/[file]— [facts added, each tagged] - Decisions logged:
decisions/[id]— [if any] - Hypotheses touched: [statement → status]
- Open follow-ups: [anything needing a human]
For recall, answer then show your grounding:
Recall: [query]
[Synthesised answer.]
Grounded in:
decisions/0003-...md— "..."[data]stakeholders/sarah.md— "..."[verbal]
Quality Checks
- Every extracted claim carries a provenance tag
- The verbatim original is saved in
source/before synthesis - Recall answers cite the file + tag for each fact, and flag thin memory instead of inventing
- Decisions record the rejected alternatives and a
reopen-whencondition -
[hunch]/[verbal]facts are never presented with the confidence of[data]/[interview]
Anti-Patterns
- Do not paraphrase a source into the durable layer without keeping the original in
source/— the audit trail is the point - Do not drop provenance tags when reusing a fact — an untagged claim is an unfalsifiable one
- Do not answer a recall from general knowledge and present it as something the brain "knows" — say when memory is empty
- Do not overwrite a decision when it changes — append a new dated entry so the history survives
- Do not build a vector database or hide memory behind embeddings — the brain stays plain, grep-able markdown a human can read and correct
| 1 | |
| 2 | name professional-brain |
| 3 | description "Maintain a durable, local markdown memory ('brain') of your product context, decisions, hypotheses, and stakeholders that other skills read from and write back to. Use when asked to set up a brain, ingest notes/artifacts into memory, recall what's known about a topic, log a decision with provenance, or run a weekly brain review. Produces a structured brain/ folder (knowledge, decisions, hypotheses, stakeholders, entities, source) with provenance-tagged facts, plus ingest/recall/record/review operations with approval-gated, append-only write-back." |
| 4 | |
| 5 | |
| 6 | # Professional Brain Skill |
| 7 | |
| 8 | > 🚀 **New to this? Start with the [5-minute Quickstart]** — a folder + one file, with a worked example. This file is the full reference. |
| 9 | |
| 10 | Most skills start cold — you paste the same context every time, and decisions made six weeks |
| 11 | ago lose the *why*. This skill gives the library a **memory**: a plain-markdown `brain/` folder |
| 12 | on disk that skills read before they answer and write to after. No vector DB, no cloud — just |
| 13 | grep-able files you (and Claude) can audit and edit. |
| 14 | |
| 15 | This is the **state layer** of an AI teammate. Pair it with the action layer (skills that file |
| 16 | tickets / open PRs) and you get a loop: *recall → do the work → record the decision → review.* |
| 17 | |
| 18 | ## What This Skill Produces |
| 19 | |
| 20 | A scaffolded **`brain/` folder** with a fixed schema (see below). |
| 21 | **Provenance-tagged** knowledge — every claim says where it came from and how strong it is. |
| 22 | Four operations you can invoke: **init**, **ingest**, **recall**, **review**. |
| 23 | A standing contract other skills follow: *read the relevant brain files first; write durable |
| 24 | outcomes (decisions, new facts, stakeholder asks) back.* |
| 25 | |
| 26 | ## Required Inputs |
| 27 | |
| 28 | Ask for these only if they aren't already on disk or in the request: |
| 29 | |
| 30 | **Which operation** — `init`, `ingest`, `recall`, or `review` (default: infer from the ask). |
| 31 | For **ingest**: the artifact (a pasted note, a file path, a transcript) and what it's about. |
| 32 | For **recall**: the topic or question to answer from memory. |
| 33 | The **brain location** — default `./brain/` at the project root. |
| 34 | |
| 35 | ## The Brain Schema |
| 36 | |
| 37 | |
| 38 | brain/ |
| 39 | context.md # who/what: product, ICP, metrics definitions, voice (supersedes pm-context.md) |
| 40 | knowledge/ # durable facts — strategy.md, market.md, users.md, org.md |
| 41 | decisions/ # one file per decision: what, why, alternatives rejected, reopen-when |
| 42 | hypotheses/ # assumptions: statement, evidence, status (open/validated/invalidated) |
| 43 | stakeholders/ # one file per person: asks, concerns, comms history |
| 44 | entities/ # typed objects: features, accounts, experiments — the artifact graph |
| 45 | source/ # immutable originals (audit trail) — never edited after capture |
| 46 | |
| 47 | |
| 48 | It is Obsidian-vault compatible: open `brain/` as a vault and the links become a graph. |
| 49 | |
| 50 | ## Provenance Tags (the trust mechanism) |
| 51 | |
| 52 | Every fact carries a tag in square brackets so its strength is explicit. Skills must keep the |
| 53 | tag when they reuse a fact, and **downgrade confidence for weak tags**. |
| 54 | |
| 55 | | Tag | Means | Strength | |
| 56 | |---|---|---| |
| 57 | | `[data]` | from analytics / a metric / a measured result | strong | |
| 58 | | `[interview]` | from a documented user or customer interview | strong | |
| 59 | | `[external]` | from third-party / market research | medium | |
| 60 | | `[verbal]` | said in a meeting, not independently documented | weak | |
| 61 | | `[hunch]` | informed intuition, no evidence yet | weakest | |
| 62 | |
| 63 | Example: `Mobile drives 65% of DAU [data]. Enterprise wants SSO before renewing [verbal].` |
| 64 | |
| 65 | ## Operations |
| 66 | |
| 67 | **init** — Create the folder schema. Migrate an existing `pm-context.md` into `context.md`. |
| 68 | Offer to ingest any artifacts the user already has (Notion export, Jira CSV, notes). |
| 69 | |
| 70 | **ingest `<thing>`** — Store the original verbatim in `source/`, then synthesise it into the |
| 71 | right durable file(s) (`knowledge/`, `decisions/`, `hypotheses/`, `stakeholders/`), tagging each |
| 72 | extracted claim with its provenance. Never discard the source. |
| 73 | |
| 74 | **recall `<query>`** — Answer from memory. Use the helper script to find matching facts across |
| 75 | the brain, then synthesise an answer that **cites each fact's file and tag**. If memory is thin, |
| 76 | say so rather than inventing. |
| 77 | |
| 78 | **record** — The write-back half of the loop (Phase 1). After a skill produces an artifact (or on |
| 79 | demand), extract the **durable outcomes** worth remembering — decisions made, new facts learned, |
| 80 | assumptions surfaced, stakeholder asks — and propose them as a numbered list, each with its |
| 81 | **target section** and **provenance tag**. This is the action surface, so it is **approval-gated |
| 82 | and dry-run by default**: |
| 83 | |
| 84 | **Propose** — show the records you'd write (section · tag · text). Preview with |
| 85 | `brain_write.py …` (no `--commit`), which prints exactly what would be appended. |
| 86 | **Approve** — the user confirms, edits, or drops items. Never write without a yes. |
| 87 | **Append** — write the approved records with `--commit`. Append-only: decisions become a new |
| 88 | numbered file; everything else appends to its named file. Nothing is overwritten. |
| 89 | |
| 90 | Downgrade weak evidence honestly — a conclusion from one call is `[interview]`, a gut call is |
| 91 | `[hunch]`; don't launder it into `[data]`. |
| 92 | |
| 93 | **review** — Weekly sweep. Flag: stale hypotheses (open too long with no new evidence), |
| 94 | decisions whose `reopen-when` condition now holds, contradictions between files, and facts that |
| 95 | are only `[hunch]`/`[verbal]` but are being treated as settled. Draft the updates; don't apply |
| 96 | silently. |
| 97 | |
| 98 | ## Programmatic Helper |
| 99 | |
| 100 | `scripts/brain_query.py` (stdlib only) does deterministic recall — it greps the brain for a |
| 101 | query and returns matches with their file and detected provenance tag, so retrieval is |
| 102 | transparent (no embeddings, no guessing). |
| 103 | |
| 104 | |
| 105 | # Find what the brain knows about "activation", newest-first, as text |
| 106 | python3 scripts/brain_query.py ./brain "activation" |
| 107 | |
| 108 | # JSON for chaining into another step |
| 109 | python3 scripts/brain_query.py ./brain "enterprise SSO" --json |
| 110 | |
| 111 | |
| 112 | Use its output as the grounded evidence set, then synthesise the answer on top — never answer a |
| 113 | recall from outside the brain without saying so. |
| 114 | |
| 115 | `scripts/brain_write.py` is the write-back counterpart — it **appends** a provenance-tagged record |
| 116 | (append-only, never overwrites) and is **dry-run by default** so you can preview before committing: |
| 117 | |
| 118 | |
| 119 | # Preview what would be written (changes nothing): |
| 120 | python3 scripts/brain_write.py ./brain decisions "Prioritise mobile" --tag data --body "68% of churn is mobile" --source "Q3 analytics" |
| 121 | |
| 122 | # Write it after approval: |
| 123 | python3 scripts/brain_write.py ./brain decisions "Prioritise mobile" --tag data --body "…" --source "Q3 analytics" --commit |
| 124 | |
| 125 | |
| 126 | ## The contract for other skills |
| 127 | |
| 128 | A brain-aware skill adds a short **"Reads from / Writes to the Brain"** section: |
| 129 | |
| 130 | **Reads:** before producing, pull the relevant files (e.g. `prd-template` reads `context.md`, |
| 131 | `knowledge/strategy.md`, and any related `hypotheses/` + `entities/`). |
| 132 | **Writes:** after producing, append durable outcomes (e.g. `meeting-notes` writes each |
| 133 | decision to `decisions/`, new asks to the relevant `stakeholders/` file), each provenance-tagged. |
| 134 | |
| 135 | ## Output Format |
| 136 | |
| 137 | For **ingest**, confirm what was captured: |
| 138 | |
| 139 | ### Ingested: [artifact] |
| 140 | **Source saved:** `source/[file]` |
| 141 | **Knowledge updated:** `knowledge/[file]` — [facts added, each tagged] |
| 142 | **Decisions logged:** `decisions/[id]` — [if any] |
| 143 | **Hypotheses touched:** [statement → status] |
| 144 | **Open follow-ups:** [anything needing a human] |
| 145 | |
| 146 | For **recall**, answer then show your grounding: |
| 147 | |
| 148 | ### Recall: [query] |
| 149 | [Synthesised answer.] |
| 150 | |
| 151 | **Grounded in:** |
| 152 | `decisions/0003-...md` — "..." `[data]` |
| 153 | `stakeholders/sarah.md` — "..." `[verbal]` |
| 154 | |
| 155 | ## Quality Checks |
| 156 | |
| 157 | [ ] Every extracted claim carries a provenance tag |
| 158 | [ ] The verbatim original is saved in `source/` before synthesis |
| 159 | [ ] Recall answers cite the file + tag for each fact, and flag thin memory instead of inventing |
| 160 | [ ] Decisions record the rejected alternatives and a `reopen-when` condition |
| 161 | [ ] `[hunch]`/`[verbal]` facts are never presented with the confidence of `[data]`/`[interview]` |
| 162 | |
| 163 | ## Anti-Patterns |
| 164 | |
| 165 | [ ] Do not paraphrase a source into the durable layer without keeping the original in `source/` — the audit trail is the point |
| 166 | [ ] Do not drop provenance tags when reusing a fact — an untagged claim is an unfalsifiable one |
| 167 | [ ] Do not answer a recall from general knowledge and present it as something the brain "knows" — say when memory is empty |
| 168 | [ ] Do not overwrite a decision when it changes — append a new dated entry so the history survives |
| 169 | [ ] Do not build a vector database or hide memory behind embeddings — the brain stays plain, grep-able markdown a human can read and correct |
| 170 |
Discussion
Browse more free Claude skills or everything in Operations.


