Skip to content

Aionis v0.3.2

Choose a tag to compare

@ostinatocc ostinatocc released this 29 Jun 09:21

Aionis v0.3.2

Aionis v0.3.2 is the Runtime profile-activation patch for the v0.3 stable
train.

It keeps the v0.3 product surface intact and adds the selected-profile
activation path for the reviewed closed-loop admission candidate. The global
Runtime default remains explicit and off.

What Changed

  • Added profile-scoped admission candidate policy rules through
    AIONIS_ADMISSION_CANDIDATE_POLICY_PROFILE_RULES_JSON.
  • Added a selected-profile activation quickstart:
    docs/AIONIS_ADMISSION_PROFILE_ACTIVATION_QUICKSTART.md.
  • Added a copyable .env template:
    docs/examples/admission-profile-rules.env.
  • Added profile-rule source/profile-id checks to the tool-E2E admission gate.
  • Recorded the selected profile
    external-agent-e2e-worker-full-power as approved for profile-scoped
    activation.
  • Kept global Runtime admission mode off; this release does not make the
    candidate a global default.
  • Added DashScope text-embedding-v4 provider support.
  • Added Substrate sidecar boundary documentation and external messaging
    contract documentation.
  • Removed old Runtime demo/dashboard artifacts from the Runtime product
    surface.

Current v0.3 Package Surface

Artifact Version
Runtime source v0.3.2
Docker image ghcr.io/ostinatocc/aionis:v0.3.2
aionis 0.3.4
@aionis/create 0.3.3
@aionis/sdk 0.3.1
@aionis/mcp 0.3.2
@aionis/aifs 0.3.0
@aionis/claude-code 0.3.1

Admission Evidence

The selected candidate policy is:

candidate_project_context_closed_loop_inspect

The selected profile id is:

external-agent-e2e-worker-full-power

The profile-scoped multi-step tool-E2E gate passed with:

  • 40 / 40 completed records;
  • 40 / 40 accepted-route;
  • 40 / 40 action-completion;
  • 0 route write/action violations;
  • 0 terminal inspect exits;
  • 0 report-conflict exits;
  • 40 / 40 guide source checks from profile_rule;
  • 40 / 40 guide profile checks for
    external-agent-e2e-worker-full-power.

The final profile-rule gate used the Aionis arm only, so it does not make a
same-run Full History budget claim. The same manifest has informational
profile-rule budget context from an earlier two-arm run: Aionis used 165,421
initial-context chars versus Full History 1,352,256 chars.

The global-active initial-context rerun remains the paired budget evidence for
the validated guide path: Aionis used 203,242 initial-context chars versus Full
History 1,352,256 chars while both arms completed 40 / 40 records.

Install

Recommended:

npx aionis setup

Docker:

docker run --rm \
  -p 127.0.0.1:3001:3001 \
  -v aionis-data:/data \
  ghcr.io/ostinatocc/aionis:v0.3.2

Selected-profile admission activation:

export AIONIS_ADMISSION_CANDIDATE_POLICY_MODE=off
export AIONIS_ADMISSION_CANDIDATE_POLICY_PROFILE_RULES_JSON='[
  {
    "profile_id": "external-agent-e2e-worker-full-power",
    "mode": "active",
    "scope_prefixes": ["my-project:"],
    "agent_roles": ["worker"],
    "context_modes": ["compact_agent"],
    "guide_modes": ["full_power"]
  }
]'

Replace my-project: with the scope prefix your host actually sends to
/v1/guide.

Verification

Validated before release preparation:

npm run -s typecheck
git diff --check

Docker publishing is handled by the repository tag workflow
.github/workflows/docker.yml, which publishes:

ghcr.io/ostinatocc/aionis:v0.3.2
ghcr.io/ostinatocc/aionis:latest

Notes

The original v0.3.0 Runtime tag remains immutable as the first stable
baseline. v0.3.1 remains the cross-plane adjudication patch. v0.3.2 is the
selected-profile admission activation patch for the current Runtime source and
Docker release surface.