Sign inSign up

sbx/claude-acp-kit:20260817-29cb871b5ae3854048e6d7deb75631efa2a0c39a

Manifest digest

sha256:18e8b9f176b2cf4bdfe8d18a9d17df093dbf7d8e72fac80239d8ef0f777b9ad7

Last pushed

about 1 month by dockerpublicbot

Type

Sandbox Kit

Manifest digest

sha256:18e8b9f176b2cf4bdfe8d18a9d17df093dbf7d8e72fac80239d8ef0f777b9ad7

yaml
schemaVersion: "2"
kind: mixin
name: claude-acp
displayName: Claude ACP
description: Runs the Claude ACP adapter inside a Claude sandbox over stdio.
requires:
    agent: claude
agentInstructions:
    content: |
        The Claude ACP adapter is available at `/home/agent/.local/bin/claude-acp`.
        Host tools should run it with a non-TTY stdin/stdout stream, for example
        `sbx exec -i <sandbox> /home/agent/.local/bin/claude-acp`.
        The launcher sets `CLAUDE_CODE_EXECUTABLE=claude` when that variable is not
        already set, so the adapter uses the sandboxed Claude Code binary.
        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/claude-acp
          content: |
            #!/bin/bash
            set -e
            if [ -z "$CLAUDE_CODE_EXECUTABLE" ]; then
              export CLAUDE_CODE_EXECUTABLE=claude
            fi
            exec npx -y @agentclientprotocol/[email protected] "$@"
          mode: "0755"
          description: Launch the Claude ACP adapter with the sandboxed Claude binary.