{"_id":"@aeonbrain/cli","name":"@aeonbrain/cli","dist-tags":{"latest":"0.1.0"},"versions":{"0.1.0":{"name":"@aeonbrain/cli","version":"0.1.0","license":"Apache-2.0","description":"Aeon CLI - connect knowledge sources, extract skills, and expose them to Claude.ai and other AI runtimes.","keywords":["mcp","ai-agents","skills","claude","cli","aeon"],"homepage":"https://airiskmanagement.ca/aeonbrain","repository":{"type":"git","url":"git+https://github.com/AI-Risk-Management/aeon-cli.git"},"author":{"name":"AI Risk Management Inc."},"type":"module","bin":{"aeon":"src/bin.ts"},"main":"src/index.ts","types":"src/index.ts","exports":{".":"./src/index.ts"},"publishConfig":{"access":"public","bin":{"aeon":"dist/bin.js"},"main":"dist/index.js","types":"dist/index.d.ts","exports":{".":{"types":"./dist/index.d.ts","default":"./dist/index.js"}}},"scripts":{"dev":"tsx src/bin.ts","build":"tsc -b","test":"vitest run --passWithNoTests","typecheck":"tsc --noEmit","lint":"eslint src --ext ts","clean":"rm -rf dist .turbo","prepublishOnly":"npm run build"},"devDependencies":{"tsx":"^4.19.0","@types/node":"^22.10.0","typescript":"^5.7.0","vitest":"^2.1.0"},"gitHead":"a8830e078430e3c1d6566e8441b144fa41b281a3","_id":"@aeonbrain/cli@0.1.0","bugs":{"url":"https://github.com/AI-Risk-Management/aeon-cli/issues"},"_nodeVersion":"24.14.1","_npmVersion":"11.11.0","dist":{"integrity":"sha512-mCUo2dmbMLYjqQ5bL6QQfvBqWAblYCT81hq42rNpHv7wpHhj56UUo9bVnXfP3Skj2rwsycRvr519j2nSpWWwZw==","shasum":"be9f16dd9be1a9b4df58559ab37438baaba64137","tarball":"https://registry.npmjs.org/@aeonbrain/cli/-/cli-0.1.0.tgz","fileCount":33,"unpackedSize":60901,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEQCIAq/oN0lFwnjVvyBx+DYAPOIBgqIUdfN9OdSg0hIjj0XAiB6Ws2GvcmLyW+MbARX1KjdWc5faLTlTYmiAyjr6s1zQg=="}]},"_npmUser":{"name":"aeonairisks","email":"info@airiskmanagement.ca"},"directories":{},"maintainers":[{"name":"aeonairisks","email":"info@airiskmanagement.ca"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/cli_0.1.0_1781444017272_0.8572083078777508"},"_hasShrinkwrap":false}},"time":{"created":"2026-06-14T13:33:37.069Z","0.1.0":"2026-06-14T13:33:37.423Z","modified":"2026-06-14T13:33:37.712Z"},"maintainers":[{"name":"aeonairisks","email":"info@airiskmanagement.ca"}],"description":"Aeon CLI - connect knowledge sources, extract skills, and expose them to Claude.ai and other AI runtimes.","homepage":"https://airiskmanagement.ca/aeonbrain","keywords":["mcp","ai-agents","skills","claude","cli","aeon"],"repository":{"type":"git","url":"git+https://github.com/AI-Risk-Management/aeon-cli.git"},"author":{"name":"AI Risk Management Inc."},"bugs":{"url":"https://github.com/AI-Risk-Management/aeon-cli/issues"},"license":"Apache-2.0","readme":"# @aeonbrain/cli\n\n> Make Claude know your team's docs, in 60 seconds.\n\nThe Aeon CLI is the dev-friendly entrypoint to the Aeon platform — a vendor-neutral knowledge depository that ingests your company's docs and exposes them as cryptographically-signed, executable skills to Claude.ai (via MCP), Microsoft Copilot Studio (via OpenAPI), and other AI runtimes.\n\n**Status:** v0.1 (alpha). Apache 2.0 licensed.\n\n## Install\n\n```sh\nnpx @aeonbrain/cli help\n# or pin globally\nnpm i -g @aeonbrain/cli\n```\n\n## Quick start (60 seconds)\n\n```sh\n# 1. Authenticate (opens a browser)\naeon login\n\n# 2. Set your Anthropic key (BYOK on the free tier)\naeon set-key sk-ant-…\n\n# 3. Point at a folder of markdown\naeon connect markdown ./docs\n\n# 4. Run extraction (auto-publishes signed skills)\naeon extract\n\n# 5. Get the URL + token to paste into Claude.ai → Settings → Connectors\naeon mcp-url\n```\n\nThat's it. Open Claude.ai, ask a question your docs answer, and Claude calls your published skill.\n\n## Commands\n\n| Command | What it does |\n|---|---|\n| `aeon login` | Browser-based login. `--dev-sub <sub>` for headless dev login against a seeded identity. |\n| `aeon whoami` | Show current credentials. |\n| `aeon logout` | Forget the stored token. |\n| `aeon connect markdown <path>` | Upload .md/.mdx files from a folder. Idempotent — re-runs only update changed files. |\n| `aeon extract [--limit N]` | Run extraction on the most recent N artifacts. Auto-publishes signed skills. |\n| `aeon skills [list \\| delete <slug>]` | Manage skills. |\n| `aeon mcp-url` | Print the URL + token to paste into Claude.ai. |\n| `aeon openapi-url` | Print the manifest URL for Copilot Studio. |\n| `aeon api-key` | Mint a new `x-aeon-api-key` for Copilot Studio. |\n| `aeon set-key <sk-…>` | Save your Anthropic API key (BYOK). |\n| `aeon clear-key` | Forget the stored Anthropic key. |\n| `aeon watch <path>` | Watch a folder, re-extract on change. |\n\n## How it works\n\n1. **You point the CLI at a folder of markdown.** It walks the tree, reads .md / .mdx / .markdown files, uploads them as artifacts to your tenant.\n2. **The Aeon extraction worker** uses your Anthropic API key (or the platform key on paid tiers) to identify the procedural workflows in your docs and emits them as Aeon skill files — structured, signed, schema-validated.\n3. **Each published skill is cryptographically signed** by your tenant's ed25519 key (held in AWS KMS). Signatures are verified at execution time — tampered or unsigned skills are refused.\n4. **Claude.ai picks up your skills via MCP.** When it answers a question your skill matches, it calls Aeon, which runs the procedural steps and returns the result — with full audit-log provenance.\n\n## Plans\n\n| Plan | Monthly | What's included |\n|---|---|---|\n| **Free** (BYOK) | $0 | 1 source, 100 skill executions/month, 10 extraction runs/month. You bring your Anthropic key — we bring everything else. |\n| **Pro** | $29 | 3 sources, 1,000 executions, 50 runs/month. Aeon manages the LLM bill. No \"Powered by Aeon\" footer. |\n| **Team** | $79 | 5 seats, 10,000 executions, audit log, multi-user. |\n| **Enterprise** | custom | Customer-VPC, dedicated KMS, SLA. [Contact us.](https://airiskmanagement.ca/enterprise) |\n\n## License\n\nApache 2.0 — see [LICENSE](./LICENSE). The hosted Aeon platform is proprietary; this CLI is the open-source client.\n\n## Links\n\n- **Web app:** https://aeonbrain.airiskmanagement.ca\n- **Docs:** https://airiskmanagement.ca/docs/cli\n- **Schema package** (also Apache 2.0): [`@aeonbrain/skill-schema`](../skill-schema)\n- **Issues:** https://github.com/AI-Risk-Management/aeon-cli/issues\n- **Status:** https://status.airiskmanagement.ca\n","readmeFilename":"README.md","_rev":"1-c8f4afeaf8cd0f38a3ff08d706c6d24a"}