Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

feat: initial boundary integration with claude code#455

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Draft
bcpeinhardt wants to merge10 commits intomain
base:main
Choose a base branch
Loading
frombcpeinhardt/claude-code-boundary
Draft
Changes from1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
PrevPrevious commit
NextNext commit
fmt
  • Loading branch information
@bcpeinhardt
bcpeinhardt committedOct 6, 2025
commit7acb90b2b8cb8eb39c9a1417424e7dad24f35ae7
6 changes: 3 additions & 3 deletionsregistry/coder/modules/claude-code/scripts/start.sh
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -86,23 +86,23 @@ function start_agentapi() {
if [ "${ARG_ENABLE_BOUNDARY:-false}" = "true" ]; then
mkdir -p "$ARG_BOUNDARY_LOG_DIR"
printf "Starting with coder boundary enabled\n"

# Build boundary args with conditional --unprivileged flag
BOUNDARY_ARGS=(--log-dir "$ARG_BOUNDARY_LOG_DIR")
if [ "${ARG_BOUNDARY_UNPRIVILEGED:-true}" = "true" ]; then
BOUNDARY_ARGS+=(--unprivileged)
fi
# Add default allowed URLs
BOUNDARY_ARGS+=(--allow "*.anthropic.com" --allow "registry.npmjs.org" --allow "*.sentry.io" --allow "claude.ai" --allow "localhost:8080/healthz" --allow "$ARG_CODER_HOST")

# Add any additional allowed URLs from the variable
if [ -n "$ARG_BOUNDARY_ADDITIONAL_ALLOWED_URLS" ]; then
IFS=' ' read -ra ADDITIONAL_URLS <<< "$ARG_BOUNDARY_ADDITIONAL_ALLOWED_URLS"
for url in "${ADDITIONAL_URLS[@]}"; do
BOUNDARY_ARGS+=(--allow "$url")
done
fi

agentapi server --type claude --term-width 67 --term-height 1190 -- \
coder exp boundary "${BOUNDARY_ARGS[@]}" -- \
claude "${ARGS[@]}"
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp