Advanced Autonomous Agent Executor (AAAX)
Advanced Autonomous Agent Executor (AAAX) is the PSI shell for package-shaped agent systems. It gives packages a place to become useful: inspect a manifest, mount its tactics and channels, bind local handlers, open a FastAPI surface, and hand the resulting environment to a human, script, coding agent, or another system.
AAAX stays thin on purpose. LLLM owns tactic execution, SSSN owns semantic channels, PsiHub owns package protocol and storage, and agent tools own their reasoning loops. AAAX is the shell where those resources get named, mounted, served, and passed along.
AAAX also works independently. A Strategy can be a Pydantic-modeled resource
table with local handlers and a FastAPI app. Add LLLM, SSSN, and PsiHub only
when you want their tactic, channel, or package layers.
Fast Path
Serve a package:
aaax serve packages/analyst-pack --port 8400
Call a tactic:
curl -X POST http://127.0.0.1:8400/tactics/echo/run \
-H 'content-type: application/json' \
-d '{"input": {"text": "hello"}, "context": {"request": "demo"}}'
Write and read a channel:
curl -X POST http://127.0.0.1:8400/channels/events/events \
-H 'content-type: application/json' \
-d '{"input": {"kind": "record", "payload": {"text": "hello"}}}'
curl 'http://127.0.0.1:8400/channels/events/events?limit=10'
Shape
AAAX treats a package like something you mount into a shell session. The local
name can change, but the package ref remains stable. A caller can list what is
mounted, run one tactic, append an event, invoke a service, or call the shell's
top-level /run command. That caller can be a person, an app, an agent, or the
next system in a larger loop.
What AAAX Owns
Strategy,StrategyResource, and the shell's mounted resource table.- Pydantic request, response, resource, and strategy description models.
- Loading
strategy.py,aaax.py,module:factory, package folders, and directpsi.tomlfiles. - Mounting PsiHub package resources into one local namespace.
- Binding Python tactic entrypoints through LLLM when available.
- Opening SSSN-backed local channel endpoints.
- Serving the shell through FastAPI and the
aaaxCLI.
What Stays Outside
- LLM provider execution, tool policy, traces, evals, and runtime internals.
- Package indexing, package upload/download, validation reports, and hub storage.
- Durable production storage, deployment, queueing, and service orchestration.
- Coding-agent behavior itself. AAAX gives agents a shell surface; it does not decide how they reason.
Next
- Start with Getting Started.
- Learn the model in Strategies.
- Mount packages in PsiHub Packages.
- Serve your first package in Serve A Package.