CLI for the Aethis developer API — author, test, and publish rule bundles
Project description
aethis-cli
CLI for the Aethis developer API — evaluate eligibility, author rule bundles, and publish from the terminal.
Install
# Recommended — isolated, no venv juggling:
uv tool install aethis-cli
# Or, with pipx:
pipx install aethis-cli
# Or in a venv:
python -m venv .venv && source .venv/bin/activate
pip install aethis-cli
Quick start
No sign-up needed. Decision tools work immediately.
# Evaluate eligibility against a published bundle
aethis decide -b <bundle_id> -i '{"space.crew.age": 35, "space.medical.cert_valid": true}'
# Inspect the input fields a bundle expects
aethis fields -b <bundle_id>
# Get human-readable rule descriptions
aethis explain -b <bundle_id>
Authentication
Decision tools (decide, fields, explain) call public endpoints and never need a key. Authoring tools (generate, publish, projects list, etc.) need an API key — and the CLI manages that for you.
There are three ways the key can arrive:
1. Explicit sign-in (the canonical first-time setup):
aethis login
Opens your browser, completes Clerk OAuth, mints a fresh ak_live_... key, and stores it at ~/.config/aethis/credentials. One-time per machine.
2. Lazy auth (the default — since v0.6.0):
If you skip step 1 and run an authenticated command directly, you'll get an inline prompt:
$ aethis init
No API key found. Open browser to sign in? [Y/n]
Hit enter, the browser flow runs, the command resumes. Same effect as aethis login followed by your original command, in one step.
3. CI / scripts — --no-prompt:
For any non-interactive context (stdin not a TTY, CI runners, piped commands) the CLI auto-skips the prompt and exits with a clear AuthRequired error. To force this behaviour even on a TTY:
aethis --no-prompt projects list
Pass --api-key <ak_live_...> to bypass the cache entirely (useful when you want to test a key without committing to it).
Manage existing keys with aethis account keys (list, masked) and aethis account revoke <key_id> (revoke). aethis account generate mints an additional key — for rotation, multi-machine setups, or scoped access. For first-time setup just use aethis login.
Author your own rules
Rule authoring is invite-only private beta. Decision tools (aethis decide, aethis fields, aethis explain) work immediately with no sign-up — this section is for approved beta tenants. Request access →
# 1. Initialise a project (no-arg form prompts for a name; auto-runs `aethis login` if needed)
aethis init
# 2. Add source documents and guidance
# (put PDFs/text in .aethis/sources/, hints in .aethis/guidance/hints.yaml)
# 3. Generate a rule bundle
aethis generate
# 4. Run test cases
aethis test
# 5. Publish the bundle
aethis publish
aethis init runs as a wizard: prompts for a project name (default = current directory), runs sign-in if you're not authed yet, scaffolds .aethis/, and prints the next-step ladder. Pass --no-prompt for scripted use (it'll fail fast on missing values rather than prompt).
Try the example
A complete, runnable example is included in examples/spacecraft-crew-rules/:
cp -r examples/spacecraft-crew-rules my-first-rules && cd my-first-rules
aethis login
aethis generate --poll
aethis test
aethis decide -i '{"space.crew.species": "Human", "space.crew.age": 35, "space.crew.flight_hours": 600, "space.crew.has_pilot_license": true, "space.crew.has_gaa_exam": true, "space.medical.cert_valid": true, "space.mission.type": "suborbital", "space.crew.has_towel": true}'
See examples/spacecraft-crew-rules/README.md for details.
Commands
Decision (no API key required)
| Command | Description |
|---|---|
aethis decide -b <bundle_id> -i '<json>' |
Evaluate eligibility. Add --explain for trace output. |
aethis fields -b <bundle_id> |
Show input fields the bundle expects |
aethis explain -b <bundle_id> |
Human-readable rule descriptions |
Authoring
| Command | Description |
|---|---|
aethis init |
Initialise a new project in the current directory |
aethis generate [--poll] |
Upload sources + guidance, trigger generation |
aethis status |
Check generation job progress |
aethis test |
Run test cases against the latest bundle |
aethis publish [--force] |
Set the latest bundle as active |
Guidance (project-level)
Project guidance lives in .aethis/guidance/hints.yaml and is uploaded by aethis generate. These commands manage hints server-side after upload.
| Command | Description |
|---|---|
aethis guidance list |
List active hints for the current project |
aethis guidance export <file> |
Export the current project's hints to YAML |
aethis guidance import <file> |
Import hints from a YAML file |
aethis guidance deactivate <hint_id> |
Deactivate a specific hint |
Projects & bundles
| Command | Description |
|---|---|
aethis projects list |
List your projects |
aethis projects show <project_id> |
Show project details |
aethis projects archive <project_id> |
Archive a project |
aethis bundles list |
List published bundles |
aethis bundles archive <bundle_id> |
Archive a bundle |
Account
| Command | Description |
|---|---|
aethis login |
Sign in and store an API key locally (first-time setup) |
aethis account generate |
Mint an additional API key (rotation, multi-machine, scoped access) |
aethis account keys |
List your API keys (masked) |
aethis account revoke <key_id> |
Revoke a key |
MCP one-liner
Wire up the Aethis MCP server in your AI editor without hand-editing JSON. Picks up the API key cached by aethis login, drops a canonical aethis server entry into the right config file, and preserves any other MCP servers you already have.
# One editor at a time
aethis mcp install --target cursor
aethis mcp install --target claude-code # writes ./.mcp.json (project-local)
aethis mcp install --target claude-desktop
aethis mcp install --target windsurf
# Or all four at once
aethis mcp install --target all
# Reverse it (only removes the `aethis` entry, leaves others alone)
aethis mcp uninstall --target cursor
The command is idempotent — re-run it after aethis login rotates your key and the entry updates in place. Restart your editor to pick up the change.
| Target | Config path |
|---|---|
claude-code |
<cwd>/.mcp.json (project-scoped) |
cursor |
~/.cursor/mcp.json |
claude-desktop |
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json · Linux: ~/.config/Claude/claude_desktop_config.json |
windsurf |
~/.codeium/windsurf/mcp_config.json |
Project structure
After aethis init, your project looks like:
my-rules/
.aethis/
aethis.yaml # project config
state.json # tracked IDs (project, bundle, job)
sources/ # PDF/text source documents
guidance/
hints.yaml # guidance hints for the code synthesizer
tests/
scenarios.yaml # golden test cases
aethis.yaml
project: my-rules
api_key_env: AETHIS_API_KEY
scenarios.yaml
tests:
- name: "Eligible — all requirements met"
inputs:
space.crew.age: 35
space.crew.flight_hours: 600
space.crew.has_pilot_license: true
expect:
outcome: eligible
- name: "Not eligible — no medical cert"
inputs:
space.medical.cert_valid: false
expect:
outcome: not_eligible
Environment variables
| Variable | Description | Required | Default |
|---|---|---|---|
AETHIS_API_KEY |
Your API key (ak_live_...). Bypasses the cached credential. |
Authoring only | — |
AETHIS_BASE_URL |
Override the API host (staff/dev use; staging or self-hosted). | No | https://api.aethis.ai |
ANTHROPIC_API_KEY |
Forwarded per-request to the generation endpoint when running aethis generate. Never stored server-side. |
Authoring only | — |
Extending with plugins
aethis-cli discovers third-party plugins via Python entry points under the aethis_cli.plugins group. A plugin is any installed package that exposes a register(app: typer.Typer) -> None callable; at startup the CLI calls it with the root Typer app and the plugin attaches extra commands.
Example pyproject.toml:
[project.entry-points."aethis_cli.plugins"]
my_plugin = "my_package.plugin:register"
Example my_package/plugin.py:
import typer
def register(app: typer.Typer) -> None:
@app.command()
def hello() -> None:
typer.echo("hello from my plugin")
Staff-only tools (DSL source viewer, IAM registry, domain-guidance management, --base-url override) live in the private aethis-cli-internal package, installed on request.
Development
git clone https://github.com/aethis-ai/aethis-cli.git
cd aethis-cli
pip install -e ".[dev]"
pytest tests/ -v
Shell completions
# Install tab completion for your shell
aethis --install-completion bash # or zsh, fish, powershell
Troubleshooting
aethis generate times out but server continues
The server finishes even if your client disconnects. Wait 10–15 min, then run aethis bundles list — if the bundle appeared, run aethis test and aethis publish. Do not re-trigger generation; that creates a duplicate run.
aethis publish fails with "tests are failing"
publish refuses a bundle with failing tests. Fix with guidance + regenerate, or pass --force (not recommended for production).
422 Validation error on aethis decide
DATE fields must be passed as integer ordinals, not ISO strings. 2025-04-13 → 739354:
python3 -c "from datetime import date; print(date(2025,4,13).toordinal())"
Auth error: …
Your API key is missing, expired, or revoked. Run aethis login to mint a new one. (As of v0.6.0 the CLI prompts for sign-in inline when an authenticated command runs without a key; use --no-prompt to suppress that in CI.)
403 Forbidden: missing scope
Your key lacks the required scope for the command. aethis whoami shows what your current key can do. Contact support to upgrade scopes.
Benchmarks
See how the engine compares to frontier LLMs on real-world eligibility rules: aethis-examples
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aethis_cli-0.7.1.tar.gz.
File metadata
- Download URL: aethis_cli-0.7.1.tar.gz
- Upload date:
- Size: 61.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0554624c420e998b5b38d3f837fc5fc43c5dc52f264861d2742838fb734ba3c9
|
|
| MD5 |
c9c1917e7a6d58e26874e19b273ad81f
|
|
| BLAKE2b-256 |
2008ed18269cfe81a077cca3d6c1e5b52b3a7a669553fd6fcaa8414afc217642
|
Provenance
The following attestation bundles were made for aethis_cli-0.7.1.tar.gz:
Publisher:
publish.yml on Aethis-ai/aethis-cli
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aethis_cli-0.7.1.tar.gz -
Subject digest:
0554624c420e998b5b38d3f837fc5fc43c5dc52f264861d2742838fb734ba3c9 - Sigstore transparency entry: 1429018598
- Sigstore integration time:
-
Permalink:
Aethis-ai/aethis-cli@daf06b2a0feb8dbbdcb0f64869ce5bdaa6b9c6d5 -
Branch / Tag:
refs/tags/v0.7.1 - Owner: https://github.com/Aethis-ai
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@daf06b2a0feb8dbbdcb0f64869ce5bdaa6b9c6d5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aethis_cli-0.7.1-py3-none-any.whl.
File metadata
- Download URL: aethis_cli-0.7.1-py3-none-any.whl
- Upload date:
- Size: 51.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4c1cf286df945c24b945861afb3ad781e433a09b961ce31e505a41ee5cc305f5
|
|
| MD5 |
0f8483ca1aaefb2ea62df7b87faf5b04
|
|
| BLAKE2b-256 |
043b387edfaa276f4b32aa20c95a25d898c76abaadfba4203b68db479544b7ad
|
Provenance
The following attestation bundles were made for aethis_cli-0.7.1-py3-none-any.whl:
Publisher:
publish.yml on Aethis-ai/aethis-cli
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aethis_cli-0.7.1-py3-none-any.whl -
Subject digest:
4c1cf286df945c24b945861afb3ad781e433a09b961ce31e505a41ee5cc305f5 - Sigstore transparency entry: 1429018604
- Sigstore integration time:
-
Permalink:
Aethis-ai/aethis-cli@daf06b2a0feb8dbbdcb0f64869ce5bdaa6b9c6d5 -
Branch / Tag:
refs/tags/v0.7.1 - Owner: https://github.com/Aethis-ai
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@daf06b2a0feb8dbbdcb0f64869ce5bdaa6b9c6d5 -
Trigger Event:
push
-
Statement type: