Skip to content

Commit 49041a5

Browse files
authored
docs(skills): fix npx skill install docs and ignore docs assets (#927)
Refs #930 docs cleanup; adds docs/assets to gitignore. Signed-off-by: phernandez <paul@basicmemory.com>
1 parent 8cbe163 commit 49041a5

7 files changed

Lines changed: 16 additions & 16 deletions

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ ENV/
4949
/docs/.obsidian/
5050
/examples/.obsidian/
5151
/examples/.basic-memory/
52-
52+
/docs/assets
5353

5454
# claude action
5555
claude-output

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -216,14 +216,14 @@ Source: [`plugins/claude-code`](plugins/claude-code).
216216
### Shared skills
217217

218218
Framework-agnostic `SKILL.md` files live in [`skills/`](skills). If your
219-
Skills CLI supports subpath installs:
219+
Skills CLI supports repository subdirectory sources:
220220

221221
```bash
222-
npx skills add basicmachines-co/basic-memory --path skills
222+
npx skills add basicmachines-co/basic-memory/skills
223223
```
224224

225-
If it does not, copy the `memory-*` directories from `skills/` into your
226-
agent's skills directory as a temporary Phase 1 install path.
225+
If your installed Skills CLI cannot load that source, update the CLI or copy
226+
the `memory-*` directories from `skills/` into your agent's skills directory.
227227

228228
### Hermes
229229

integrations/openclaw/MEMORY_TASK_FLOW.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ This plugin ships with workflow-oriented skills that are automatically loaded wh
150150
No manual installation needed. To update skills or install new ones as they become available:
151151
152152
```bash
153-
npx skills add basicmachines-co/basic-memory --path skills --agent openclaw
153+
npx skills add basicmachines-co/basic-memory/skills --agent openclaw
154154
```
155155

156156
See the canonical source at [`basic-memory/skills`](../../skills).

plugins/claude-code/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Memory's durable graph**, rather than a memory layer of its own. See
2424
configures the project for the plugin: maps it to a Basic Memory project (picking
2525
an existing one or creating a new one), seeds the `session`/`decision`/`task`
2626
schemas into the project, installs the shared `memory-*` skills via
27-
`npx skills add basicmachines-co/basic-memory --path skills` (the plugin doesn't
27+
`npx skills add basicmachines-co/basic-memory/skills` (the plugin doesn't
2828
vendor its own copies — `skills/` is the single source of truth, shared with
2929
OpenClaw), optionally learns the project's placement conventions, and enables the
3030
capture reflexes. Writes the `basicMemory` block to

plugins/claude-code/skills/bm-setup/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ git ls-files skills/ | grep -q memory- && echo "source repo - skip install"
156156
Otherwise, run from the project root:
157157

158158
```
159-
npx skills add basicmachines-co/basic-memory --path skills
159+
npx skills add basicmachines-co/basic-memory/skills
160160
```
161161

162162
This installs the canonical `memory-*` skills into the user's skills directory — the

skills/DEVELOPMENT.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,13 @@ Users can install or update skills with the [Skills CLI](https://github.com/verc
5454

5555
```bash
5656
# Install all skills
57-
npx skills add basicmachines-co/basic-memory --path skills
57+
npx skills add basicmachines-co/basic-memory/skills
5858

5959
# Install a specific skill
60-
npx skills add basicmachines-co/basic-memory --path skills --skill memory-tasks
60+
npx skills add basicmachines-co/basic-memory/skills --skill memory-tasks
6161

6262
# Install for a specific agent
63-
npx skills add basicmachines-co/basic-memory --path skills --agent claude
63+
npx skills add basicmachines-co/basic-memory/skills --agent claude
6464
```
6565

6666
## Adding a New Skill

skills/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,16 +47,16 @@ Install or update skills using the [Skills CLI](https://github.com/vercel-labs/s
4747

4848
```bash
4949
# Install all skills
50-
npx skills add basicmachines-co/basic-memory --path skills
50+
npx skills add basicmachines-co/basic-memory/skills
5151

5252
# Install a specific skill
53-
npx skills add basicmachines-co/basic-memory --path skills --skill memory-tasks
53+
npx skills add basicmachines-co/basic-memory/skills --skill memory-tasks
5454

5555
# Install all skills for a specific agent
56-
npx skills add basicmachines-co/basic-memory --path skills --agent claude
56+
npx skills add basicmachines-co/basic-memory/skills --agent claude
5757

5858
# List available skills without installing
59-
npx skills add basicmachines-co/basic-memory --path skills --list
59+
npx skills add basicmachines-co/basic-memory/skills --list
6060

6161
# Check for updates
6262
npx skills check
@@ -67,7 +67,7 @@ npx skills update
6767

6868
Skills are installed to your agent's skills directory (e.g., `~/.claude/skills/` for Claude Code global, or `.claude/skills/` for project-scoped).
6969

70-
If your installed Skills CLI does not support `--path`, copy the `memory-*` directories manually for now. Phase 2 will add a first-class Codex/package install path.
70+
If your installed Skills CLI cannot load `basicmachines-co/basic-memory/skills`, update the CLI or copy the `memory-*` directories manually.
7171

7272
### Claude Desktop (claude.ai)
7373

0 commit comments

Comments
 (0)