Promote a note from your personal Basic Memory project to a shared team project, with attribution. Use when the user says "share this with the team", "publish this decision", or runs /basic-memory:bm-share. This is the deliberate way to write to a team workspace — auto-capture never does.
76
95%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
High
Do not use without reviewing
Copy a note from the personal/primary project into a configured team project so
teammates can see it. This is the only path by which the plugin writes to a shared
project — session checkpoints and /basic-memory:bm-remember always stay personal.
Resolve config. Read the basicMemory block with the hooks' precedence:
user-level ~/.claude/settings.json as the base, then the project's
.claude/settings.json and .claude/settings.local.json override per key:
teamProjects — a map of <project-ref> → { "promoteFolder": "shared" }.
These are the allowed share targets. <project-ref> is a workspace-qualified
name (e.g. my-team-2/notes) or an external_id UUID.primaryProject — the source project notes are read from.If teamProjects is empty, tell the user there's no share target configured and
suggest adding one (or running /basic-memory:bm-setup), then stop. Don't invent a
target.
Find the source note. From $ARGUMENTS (a title, permalink, or memory://
URL), read_note it from primaryProject. If $ARGUMENTS is empty (you were
invoked from "share this"), use the note most clearly referenced in the
conversation — confirm which one if there's any ambiguity. Capture its title,
full content (including frontmatter), and source permalink.
Pick the target. If teamProjects has one entry, use it. If several, ask
which team project to share to. Use that entry's promoteFolder (default
shared).
Confirm before writing. This write is visible to teammates, so show the user what you're about to do — "Share '' to <target>/<promoteFolder>?" — and wait for a yes. Never share silently.
Write the shared copy with write_note:
external_id UUID, pass it as
project_id; otherwise pass the workspace-qualified name as project. (A bare
UUID in project won't route — Basic Memory takes UUIDs only via project_id.)directory = the promoteFoldertitle = the source titlecontent = the source's content, with attribution added: keep its frontmatter
(so a shared decision stays type: decision and is findable in the team's
structured recall), add a shared_from: <source permalink> frontmatter field,
and add an observation - [context] Shared from <source permalink>.
Don't overwrite an existing note at the target unless the user says so.Confirm in one line: what was shared and the new team permalink, e.g.
Shared → my-team-2/shared/<slug>.
project (qualified name) or project_id (UUID) argument.cb95e59
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.