Use when editing, correcting, rewriting, re-tagging, re-classifying, or annotating an existing Open Brain thought — "update that note", "fix the thought about X", "add a status/tag to it", "mark it superseded". Uses the update_thought MCP tool (open-brain-update-thought connector). Not for creating a new thought (that is capture) or removing one (see deleting-thoughts).
70
86%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
The core Open Brain MCP server captures and reads thoughts but cannot change
them. update_thought (the open-brain-update-thought connector) fills that
gap. Choosing how to update is the non-obvious part: tagging and rewriting
behave and cost differently, and the tool acts on a thought's UUID, which
it will not look up for you.
Not for: creating a thought (use capture), or removing one — if the thought is
outdated or wrong, prefer updating or tagging it superseded over deleting
(see the deleting-thoughts skill).
update_thought takes a UUID, not a description.
Use search_thoughts / list_thoughts to find the target and confirm it is
the right one. Never guess a UUID.
get_thought (or the connector's fetch tool), and use
related_thoughts to see what it connects to — so you don't clobber context
other thoughts depend on. Tool names may carry a connector prefix; use
whatever the environment exposes.metadata_patch (shallow-merges keys; leaves
content and unmentioned keys alone; no re-embedding).content (replaces the text and re-embeds so
semantic search stays accurate).if_unchanged_since set
to the updated_at you read. The write is rejected with STALE_READ if the
row changed underneath you; re-fetch and retry.| Goal | Field | Re-embeds? |
|---|---|---|
| Add/change tags, status, links | metadata_patch | No |
| Rewrite the note text | content | Yes |
| Prevent a lost update | if_unchanged_since | — |
metadata_patch is a merge, not a replace: {"status":"done"} adds or
overwrites only status and leaves everything else in the metadata intact.
A confirmation naming the thought id, what changed (content replaced and
re-embedded, and/or metadata merged), and the new updated_at.
content just to add a tag — wastes an embedding call; use
metadata_patch.metadata_patch to replace the whole metadata object — it merges.open-brain-update-thought, auth via ?key= or the x-brain-key
header — the same MCP_ACCESS_KEY as your core Open Brain connector.238df6c
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.