Sign inSign up

sbx/codex-acp-kit:20260813-b7d6aa30d2703bffb7c7a91d4e66e550f3f25285

Manifest digest

sha256:8c62e1747638b2335d5d9b2698a151db9c87a4b2a57bfd7a96bcdf2bc4d5049f

Last pushed

about 1 month by dockerpublicbot

Type

Sandbox Kit

Manifest digest

sha256:8c62e1747638b2335d5d9b2698a151db9c87a4b2a57bfd7a96bcdf2bc4d5049f

yaml
schemaVersion: "2"
kind: mixin
name: codex-acp
displayName: Codex ACP
description: Runs the Codex ACP adapter inside a Codex sandbox over stdio.
agentInstructions:
    content: |
        The Codex ACP adapter is available at `/home/agent/.local/bin/codex-acp`.
        Host tools should run it with a non-TTY stdin/stdout stream, for example
        `sbx exec -i <sandbox> /home/agent/.local/bin/codex-acp`.
        If the host has a global sbx GitHub secret, `GH_TOKEN` is available in the
        sandbox as a proxy-managed sentinel for `gh` and git HTTPS operations.
permissions:
    network:
        allow:
            - api.github.com
            - gist.github.com
            - github.com
            - registry.npmjs.org
            - raw.githubusercontent.com
setup:
    files:
        - path: /home/agent/.local/bin/codex-acp
          content: |
            #!/bin/bash
            set -e
            if [ -z "$CODEX_PATH" ]; then
              export CODEX_PATH=codex
            fi
            exec npx -y @agentclientprotocol/[email protected] "$@"
          mode: "0755"
          description: Launch the Codex ACP adapter with the sandboxed Codex binary.