Console
AIpkg · registry

A pkg registry for AI tools.

Skills, subagents, rules, hooks, MCPs & status-lines — install, version & share like npm packages. Compose them with dependencies and build on top.

▌ Manifesto · 001Why aipkgs

Plugins and skills alone are not enough.

01 Plugins are black boxes — unwieldy and obfuscated, with no way to extend or modify them. And skills alone don't unlock the full potential of AI agents. So AIpkgs started.

02 Why not treat AI agents like code with packaged dependencies and open source? Pull in the best skills, the best subagents, build custom agents without starting from zero.

Modular pkgs · composable agents · boxes you can open— aipkg
Composable · How it worksadd → resolve → placetransitive

A composable dependency system.

Skills, rules, setups, subagents — can all be dependencies for other AI pkgs. This allows you to build on top of existing work by other developers.

1Add
aipkg.json
{
"deps": {
"skills": {
"design": "codex/design@1.0.0"
},
"boxes": {
"node": "org443/node@latest"
},
}
}
Reference a box in the manifest, alongside your existing skills.
2Resolve
aipkg.lock
boxorg443/node@2.0.1
├── ruleorg443/node-general@0.4.1
├── ruleorg443/node-workspaces@0.2.0
└── skillorg443/repo-design@1.1.0
Transitive deps walked, every version pinned, every archive sha256-verified.
3Place
.claude/
.claude/
├─ rules/
│ ├─ node-general.md
│ └─ node-workspaces.md
└─ skills/
├─ design/
└─ repo-design/
Each type routed to the path your tool expects.
deterministic · sha256 verified · re-runnable1 box → 2 deps → 3 files
AIpkgs · registry · "Wrapped tighter than your scope creep"