@aeonbrain/cli
v0.1.0
Published
Aeon CLI - connect knowledge sources, extract skills, and expose them to Claude.ai and other AI runtimes.
Maintainers
Readme
@aeonbrain/cli
Make Claude know your team's docs, in 60 seconds.
The 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.
Status: v0.1 (alpha). Apache 2.0 licensed.
Install
npx @aeonbrain/cli help
# or pin globally
npm i -g @aeonbrain/cliQuick start (60 seconds)
# 1. Authenticate (opens a browser)
aeon login
# 2. Set your Anthropic key (BYOK on the free tier)
aeon set-key sk-ant-…
# 3. Point at a folder of markdown
aeon connect markdown ./docs
# 4. Run extraction (auto-publishes signed skills)
aeon extract
# 5. Get the URL + token to paste into Claude.ai → Settings → Connectors
aeon mcp-urlThat's it. Open Claude.ai, ask a question your docs answer, and Claude calls your published skill.
Commands
| Command | What it does |
|---|---|
| aeon login | Browser-based login. --dev-sub <sub> for headless dev login against a seeded identity. |
| aeon whoami | Show current credentials. |
| aeon logout | Forget the stored token. |
| aeon connect markdown <path> | Upload .md/.mdx files from a folder. Idempotent — re-runs only update changed files. |
| aeon extract [--limit N] | Run extraction on the most recent N artifacts. Auto-publishes signed skills. |
| aeon skills [list \| delete <slug>] | Manage skills. |
| aeon mcp-url | Print the URL + token to paste into Claude.ai. |
| aeon openapi-url | Print the manifest URL for Copilot Studio. |
| aeon api-key | Mint a new x-aeon-api-key for Copilot Studio. |
| aeon set-key <sk-…> | Save your Anthropic API key (BYOK). |
| aeon clear-key | Forget the stored Anthropic key. |
| aeon watch <path> | Watch a folder, re-extract on change. |
How it works
- 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.
- 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.
- 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.
- 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.
Plans
| Plan | Monthly | What's included | |---|---|---| | Free (BYOK) | $0 | 1 source, 100 skill executions/month, 10 extraction runs/month. You bring your Anthropic key — we bring everything else. | | Pro | $29 | 3 sources, 1,000 executions, 50 runs/month. Aeon manages the LLM bill. No "Powered by Aeon" footer. | | Team | $79 | 5 seats, 10,000 executions, audit log, multi-user. | | Enterprise | custom | Customer-VPC, dedicated KMS, SLA. Contact us. |
License
Apache 2.0 — see LICENSE. The hosted Aeon platform is proprietary; this CLI is the open-source client.
Links
- Web app: https://aeonbrain.airiskmanagement.ca
- Docs: https://airiskmanagement.ca/docs/cli
- Schema package (also Apache 2.0):
@aeonbrain/skill-schema - Issues: https://github.com/AI-Risk-Management/aeon-cli/issues
- Status: https://status.airiskmanagement.ca
