bobkit
v0.1.0
Published
CLI for installing and updating Bobkit AI-agent skills across local agent runtimes.
Maintainers
Readme
Bobkit
Bootstrap for shipping AI-agent skills from a single source of truth to multiple targets (Claude Code, Codex, ...) with evals and a marketplace build wired in.
Today it carries five skills: vegetable-joke, create-mr, review-mr, resolve-mr, and feature-brainstorm. The plumbing is the point: drop new skills into .rulesync/skills/ and the pipeline fans them out everywhere.
How It Works
.rulesync/skills/* <-- source of truth (committed)
|
| rulesync generate
v
.claude/skills/* <-- Claude Code (gitignored)
.codex/skills/* <-- Codex CLI (gitignored)
|
| promptfoo eval
v
pass / fail on prompt contracts
|
| scripts/build-claude-plugin.mjs
v
dist/claude-plugin/ <-- installable plugin
dist/claude-marketplace/ <-- local marketplace
|
| GitHub Actions on push to main
v
claude-marketplace branch <-- remote install targetRun It
| Task | Command |
| --- | --- |
| Install Bobkit globally | npm install -g bobkit |
| Install generated skills globally | bobkit install |
| Update Bobkit and refresh global skills | npm install -g bobkit@latest && bobkit install |
| Generate skills for all targets | npm run rulesync:generate |
| Check generated output is fresh | npm run rulesync:check |
| Run prompt evals | npm run eval |
| Build plugin + marketplace artifacts | npm run build:claude |
| Build npm package assets | npm run build:package |
| What CI runs | npm run ci |
Bobkit CLI
The CLI manages Bobkit skills across projects on this machine. Normal users install it from npm:
npm install -g bobkit
bobkit installThe npm package includes pre-generated Codex and Claude skills. bobkit install symlinks those bundled skills into:
~/.codex/skills~/.claude/skills
Useful commands:
bobkit list # list available skills
bobkit status # show package mode and global link state
bobkit doctor # check prerequisites and broken links
bobkit install # refresh global symlinks from bundled skills
bobkit update # print the npm upgrade commandCalling Installed Skills
bobkit install installs skills, not shell commands.
In Codex, start a new session after install if one was already open, then name the skill:
$create-mr
$review-mr https://github.com/OWNER/REPO/pull/123
$resolve-mr
$feature-brainstorm Help me shape a new feature.
Tell me a joke about vegetables.Natural-language requests work too, for example "use create-mr to open a PR for this branch." Do not rely on /create-mr in Codex; slash-prefixed input can be intercepted by the client as a built-in command.
In Claude Code, global skills can be triggered by asking to use the skill by name. If you install the Bobkit Claude plugin, use the namespaced plugin commands shown below.
For contributors working from a checkout:
cd ~/Documents/bobkit
npm link
bobkit install --devIn dev checkout mode, Bobkit can regenerate Rulesync outputs before linking:
bobkit install --dev
bobkit update --devIf a skill already exists as a normal directory, Bobkit will not overwrite it by default. Use bobkit install --replace once when you want Bobkit to adopt those existing local copies as symlinks.
Publishing To npm
The package name is bobkit. [email protected] has already been published manually once, and npm Trusted Publishing is configured for BobvD/bobkit with .github/workflows/npm-publish.yml.
Future release flow:
- Bump the version in
package.jsonandpackage-lock.json, for examplenpm version patch --no-git-tag-version. - Add a matching
CHANGELOG.mdentry, for example## 0.1.0 - .... - Run
npm run release:check. - Open and merge the PR to
main. - The
npm Publishworkflow sees the unreleased version, runs CI, verifies the package tarball, publishes to npm through Trusted Publishing, createsv<version>, and creates a GitHub release from the changelog entry.
Useful release checks:
npm view bobkit version dist-tags.latest bin
gh release view v$(node -p "require('./package.json').version")
gh run list --workflow "npm Publish" --branch main --limit 5Optional RTK
RTK (rtk-ai/rtk) may be a useful optional companion for Bobkit later. It can reduce AI-agent context usage by rewriting noisy shell commands through rtk, but it is not required for this spike.
Try The Skills Locally
npm run build:claudeThen in Claude Code:
/plugin marketplace add ./dist/claude-marketplace
/plugin install bobkit@bobkit-marketplace
/reload-plugins
/bobkit:create-mr
/bobkit:review-mr https://github.com/OWNER/REPO/pull/123
/bobkit:resolve-mr
/bobkit:feature-brainstorm
/bobkit:vegetable-jokeInstall From Anywhere
After CI publishes the claude-marketplace branch:
claude plugin marketplace add BobvD/bobkit@claude-marketplace --scope project
claude plugin install bobkit@bobkit-marketplace --scope projectLayout
.rulesync/skills/ source skills (edit here)
rulesync.jsonc which targets to generate for
promptfooconfig.yaml eval config for multi-skill prompt contracts
plugins/claude/ plugin + marketplace manifests
scripts/ build script for Claude artifacts
.github/workflows/ CI: build, eval, publish marketplace branch.claude/, .codex/, and dist/ are generated. Never edit them by hand.
