You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs(readme): strip didactic noise from install section
Three trims:
- Dropped the agentskills.io link (community/third-party site, not
Anthropic-official; risks looking like a placeholder reference).
- Removed the bullet explanations of what each /plugin command does
and the /plugin UI alternative paragraph — the two commands are
self-explanatory, the explanations were noise.
- Removed the 'why we use --path' note for Gemini and the 'after
install' summary — the SKILL.md link covers what users need.
Result: 3 install snippets + one safety sentence, ~half the length.
Copy file name to clipboardExpand all lines: README.md
+5-22Lines changed: 5 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -238,47 +238,30 @@ OpenKB's wiki is a directory of Markdown files with `[[wikilinks]]`. Obsidian re
238
238
239
239
### Using with Claude Code / Codex / Gemini CLI
240
240
241
-
OpenKB ships a [SKILL.md](https://agentskills.io/) so any agent CLI can read your compiled wiki — no extra runtime, no MCP setup, just install the skill once.
241
+
OpenKB ships a `SKILL.md` so any agent CLI can read your compiled wiki — no extra runtime, no MCP setup, just install the skill once.
242
242
243
-
#### Claude Code
244
-
245
-
Two commands — first register OpenKB as a plugin marketplace, then install the skill from it:
243
+
**Claude Code**:
246
244
247
245
```
248
246
/plugin marketplace add VectifyAI/OpenKB
249
247
/plugin install openkb@vectify
250
248
```
251
249
252
-
- `/plugin marketplace add VectifyAI/OpenKB`reads `.claude-plugin/marketplace.json` from the repo's default branch and registers `vectify` as a known marketplace.
253
-
- `/plugin install openkb@vectify`installs the `openkb` plugin from that marketplace. The `@vectify` suffix names the marketplace, not the package.
254
-
255
-
Alternative — `/plugin` (interactive UI) lets you browse registered marketplaces and install with one click, but you still need to `marketplace add` first to register the source.
256
-
257
-
To remove later: `/plugin uninstall openkb`then `/plugin marketplace remove VectifyAI/OpenKB`.
258
-
259
-
#### Gemini CLI
260
-
261
-
Native [skills installer](https://geminicli.com/docs/cli/skills/) fetches the skill folder from this repo. `--path skills/openkb` points it at the sub-directory containing `SKILL.md` (the rest of the repo is the openkb codebase, not skill content):
Codex discovers skills under `.agents/skills/` walking up from cwd, or `~/.agents/skills/` for user-scope. To update later: `cd ~/openkb-src && git pull`.
278
-
279
-
#### After install
280
-
281
-
When you ask about content in an OpenKB knowledge base, the skill activates and points the agent at `openkb status` to discover the KB root, `openkb list` for the document catalog, and direct Markdown reads for concept and summary content. The skill is read-only: it won't run `openkb add`, `remove`, or `lint --fix` without you asking. See [`skills/openkb/SKILL.md`](skills/openkb/SKILL.md) for the full instruction set the agent receives.
264
+
The skill is read-only — it won't run `openkb add`, `remove`, or `lint --fix` without you asking. See [`skills/openkb/SKILL.md`](skills/openkb/SKILL.md) for the full instruction set.
0 commit comments