Skip to content

v0.1.3

Choose a tag to compare

@wakamex wakamex released this 15 Aug 03:04
· 25 commits to main since this release

This release replaces the old sandbox write modes with complete execution profiles. It also adds
DeepSeek Harness and Grok Build support and clearly separates estimated costs from costs reported by
a provider.

Execution profiles

  • Replaces --sandbox workspace-write, scratch-write, and danger-full-access with four profiles:
    edit gives the agent a writable task worktree, review makes that worktree read-only, sealed
    hides the repository and local instructions, and host uses native host access. Each profile now
    defines what repository data, host paths, instructions, environment values, and reusable state the
    agent can see. Isolated profiles start with an empty filesystem view and add only the paths they
    need (9b2ebd6).
  • Replaces live --read mounts with --input snapshots. AOP copies and hashes the declared bytes
    before launch, mounts the copies read-only at stable /inputs paths, and retains them with the run.
    A sealed run can work outside a Git repository without revealing the original input paths or task
    name (9b2ebd6).
  • Adds aop profile explain and aop run --dry-run so a profile can be inspected before launch. Every
    dispatched run saves the profile it actually used in request.json for later review (9b2ebd6).
  • Keeps Hermes runtime files, tool settings, caches, mounts, and launcher environment private in
    sealed runs while allowing the same authenticated session to continue later (03197d5, e8835d4, 7ba894b, c43586e).

Providers and costs

  • Adds DeepSeek Harness support for its DeepSeek route and other configured providers (9b2ebd6).
  • Adds Grok Build support without interactive prompts, saves its structured output, continues the
    same conversation on resume, keeps GROK_HOME private to the task, and records model, token, and
    cost details. GROK_STORAGE_MODE is passed through only when users define it (d6ba6ca).
  • Adds an estimated API cost for Agy and records estimated costs separately from costs reported by
    providers in both individual and batch results (aef59b0, ac34173).

History

v0.1.2...v0.1.3