Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 11 additions & 8 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,15 @@ This file provides guidance to AI coding agents working on the `cvmi` CLI codeba

## Commands

| Command | Description |
| -------------------- | --------------------------------------------------- |
| `cvmi` | Show banner with available commands |
| `cvmi add <pkg>` | Install skills from git repos, URLs, or local paths |
| `cvmi check` | Check for available skill updates |
| `cvmi update` | Update all skills to latest versions |
| `cvmi pn` / `cn` | Compile a server to TypeScript code |
| `cvmi generate-lock` | Match installed skills to sources via API |
| Command | Description |
| -------------------- | --------------------------------------------------------- |
| `cvmi` | Show banner with available commands |
| `cvmi add <pkg>` | Install skills from git repos, URLs, or local paths |
| `cvmi pack` | Package an MCP server into a distributable `.mcpb` bundle |
| `cvmi check` | Check for available skill updates |
| `cvmi update` | Update all skills to latest versions |
| `cvmi pn` / `cn` | Compile a server to TypeScript code |
| `cvmi generate-lock` | Match installed skills to sources via API |

Aliases: `cvmi a`, `cvmi i`, `cvmi install` all work for `add`.

Expand All @@ -25,6 +26,8 @@ Aliases: `cvmi a`, `cvmi i`, `cvmi install` all work for `add`.
src/
├── cli.ts # Main entry point, command routing, init/check/update
├── cli.test.ts # CLI tests
├── pack.ts # Pack command implementation
├── pack/ # Pack utilities (extract, cvm-manifest, pack-init)
├── add.ts # Core add command logic
├── add.test.ts # Add command tests
├── cn/ # Client generation (ctxcn) module
Expand Down
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,8 @@
"dependencies": {
"@contextvm/sdk": "^0.11.14",
"@modelcontextprotocol/sdk": "^1.27.1",
"archiver": "^8.0.0",
"extract-zip": "^2.0.1",
"json-schema-to-typescript": "15.0.4",
"nostr-tools": "^2.23.3",
"xdg-basedir": "^5.1.0",
Expand All @@ -103,7 +105,9 @@
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@clack/prompts": "^0.11.0",
"@types/archiver": "^8.0.0",
"@types/bun": "latest",
"@types/extract-zip": "^2.0.3",
"@types/node": "^22.19.15",
"gray-matter": "^4.0.3",
"husky": "^9.1.7",
Expand Down
Loading
Loading