Open-source AI co-founder toolkit for Cursor, Claude Code, Codex, and OpenCode.
One canonical skill library, plan → execute → audit agents, project memory, and the bossku CLI — optional one-way Obsidian export for durable memory.
git clone https://github.com/wankimmy/Bossku-AI bosskuAI
cd bosskuAI
pip install -e .
bossku install --vault "C:/path/to/your/Obsidian/Vault"
cd /path/to/your/project
bossku init .Open the project in any supported coding agent. Say bossku or ask for cofounder mode.
Install BosskuAI as a native plugin on Claude Code, Cursor, and Codex. OpenCode uses skill discovery plus the .opencode harness (no marketplace plugin).
Run inside Claude Code:
/plugin marketplace add wankimmy/Bossku-AI
/plugin install bossku-ai@bosskuai-marketplace
Manifests: .claude-plugin/.
Windows (PowerShell):
git clone https://github.com/wankimmy/Bossku-AI $env:USERPROFILE\.cursor\plugins\local\bossku-aiOr link an existing clone:
$pluginDir = "$env:USERPROFILE\.cursor\plugins\local\bossku-ai"
New-Item -ItemType Directory -Force -Path (Split-Path $pluginDir) | Out-Null
if (Test-Path $pluginDir) { Remove-Item $pluginDir -Recurse -Force }
New-Item -ItemType Junction -Path $pluginDir -Target "C:\path\to\Bossku-AI"macOS / Linux:
git clone https://github.com/wankimmy/Bossku-AI ~/.cursor/plugins/local/bossku-aiRestart Cursor after install. Manifests: .cursor-plugin/.
codex plugin marketplace add wankimmy/Bossku-AIThen restart the ChatGPT desktop app, open Plugins, choose the BosskuAI marketplace, and install bossku-ai. Manifests: .codex-plugin/ and .agents/plugins/marketplace.json.
No marketplace plugin. Install skills once per machine, then open this repo (or any bossku init project) as the workspace:
pip install -e /path/to/Bossku-AI
bossku install --profile fullOpenCode reads .opencode/opencode.jsonc for AGENTS.md and agent references.
See docs/installation.md for the CLI path and per-project setup.
| Command | Purpose |
|---|---|
bossku install |
Copy skills to ~/.agents/skills and ~/.claude/skills |
bossku init <project> |
Add project adapter + .bossku/memory/ |
bossku init <project> --portable |
Vendor skills into the project |
bossku update |
Refresh user-level skills from this repo |
bossku remember --project . --kind decision "..." |
Save curated memory |
bossku sync --project . |
Export memory to Obsidian |
bossku skills find "laravel security" |
Suggest a skill |
bossku doctor |
Install health check |
bossku validate --root . |
Repository validation |
AGENTS.md— cross-tool contractskills/— canonical skill library (~197 skills, including vendored packs)skills/vendored.json— third-party skill provenanceagents/— orchestrator, planner, executor, auditor, final reviewer.claude-plugin/— Claude Code plugin + marketplace manifests.cursor-plugin/— Cursor plugin + marketplace manifests.codex-plugin/— Codex plugin manifest.agents/plugins/— Codex marketplace catalog.opencode/— OpenCode references harnessbossku/— CLI package (stdlib only)docs/third-party.md— MIT attribution for vendored packs
BosskuAI ships skills from marketingskills, superpowers, hallmark, taste-skill, loop-engineering, scroll-world, browser-use, graphify, and a thin markitdown wrapper. Use bossku install --profile full to install all of them.
Optional CLIs for some packs: see requirements-optional.txt.
The Docker/Laravel/Nuxt product MVP is preserved on branch archive/product-mvp-2026-07.
MIT — see LICENSE.