Skip to content

Shell Boundary

AAAX is the shell between package metadata and a usable command surface. It prepares the environment a caller needs, but it does not try to become the caller.

What The Shell Does

In the current surface, the shell does five things:

  • Load a strategy file or package manifest.
  • List and name the resources that belong to the application.
  • Bind local handlers where the package provides local Python entrypoints.
  • Prepare channel storage for package channels.
  • Expose a FastAPI app with stable endpoints.

The agent-facing layer can build on this later by reading the same resource map, package cards, docs, examples, and service URLs.

What AAAX Avoids

AAAX does not own:

  • model provider configuration;
  • prompt execution;
  • tool permission policy;
  • distributed scheduling;
  • production deployment;
  • package storage;
  • long-term event retention.

Those jobs belong to LLLM runtimes, SSSN stores, PsiHub, deployment platforms, and agent tools. AAAX keeps the shell boring enough that all of those systems can meet there.

Handoff Shape

flowchart LR A["Package card"] --> E["Handoff context"] B["Resource refs"] --> E C["FastAPI endpoints"] --> E D["Docs and examples"] --> E E --> F["Human operator"] E --> G["Coding agent"] E --> H["Automation script"]

The handoff is intentionally data-shaped: names, refs, docs, endpoints, and examples. That keeps AAAX compatible with many agent and IDE surfaces.