Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
runs-on: ubuntu-latest
env:
# Reproduce go/Dockerfile's sparse SDK clone; keep in sync with its AGENTFIELD_SDK_REF.
AGENTFIELD_SDK_REF: 795bdd57b4dec884cfe93e16783e8f4bfb2a2a7f
AGENTFIELD_SDK_REF: dfb5c8a37f93f510f3e390bd515afd9154194066
AGENTFIELD_REPO: https://github.com/Agent-Field/agentfield.git
GOWORK: off
steps:
Expand Down
2 changes: 1 addition & 1 deletion go/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ FROM golang:1.23-bookworm AS builder

# Pinned AgentField SDK ref. Default = agentfield origin/main HEAD at port time
# (v0.1.107-rc.1). Changing this string invalidates the clone layer below.
ARG AGENTFIELD_SDK_REF=795bdd57b4dec884cfe93e16783e8f4bfb2a2a7f
ARG AGENTFIELD_SDK_REF=dfb5c8a37f93f510f3e390bd515afd9154194066
ARG AGENTFIELD_REPO=https://github.com/Agent-Field/agentfield.git

WORKDIR /src
Expand Down
2 changes: 1 addition & 1 deletion go/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ run-fast:
# AgentField SDK ref are overridable:
# make docker-build IMAGE=myrepo/swe-af-go:dev AGENTFIELD_SDK_REF=<sha>
IMAGE ?= swe-af-go:latest
AGENTFIELD_SDK_REF ?= 795bdd57b4dec884cfe93e16783e8f4bfb2a2a7f
AGENTFIELD_SDK_REF ?= dfb5c8a37f93f510f3e390bd515afd9154194066

# Build the multi-stage Go image from the repo root.
docker-build:
Expand Down
2 changes: 1 addition & 1 deletion go/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module github.com/Agent-Field/SWE-AF/go
go 1.21

require (
github.com/Agent-Field/agentfield/sdk/go v0.0.0-20260713163335-795bdd57b4de
github.com/Agent-Field/agentfield/sdk/go v0.0.0-20260720184209-dfb5c8a37f93
github.com/invopop/jsonschema v0.13.0
golang.org/x/sync v0.11.0
)
Expand Down
2 changes: 2 additions & 0 deletions go/go.sum
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
github.com/Agent-Field/agentfield/sdk/go v0.0.0-20260713163335-795bdd57b4de h1:GYwOpQQheZ53FgmPta3PJ2CKQjATnPIMwAvNsBA7vF4=
github.com/Agent-Field/agentfield/sdk/go v0.0.0-20260713163335-795bdd57b4de/go.mod h1:08VZk14uw4GJH6a34psHkuLu+DcRr197Zi0IGmLlfrM=
github.com/Agent-Field/agentfield/sdk/go v0.0.0-20260720184209-dfb5c8a37f93 h1:J0MecY4o7QpRWdl5CVcIw75EZP5FGn01taJKJ9MmhnM=
github.com/Agent-Field/agentfield/sdk/go v0.0.0-20260720184209-dfb5c8a37f93/go.mod h1:08VZk14uw4GJH6a34psHkuLu+DcRr197Zi0IGmLlfrM=
github.com/bahlo/generic-list-go v0.2.0 h1:5sz/EEAK+ls5wF+NeqDpk5+iNdMDXrh3z3nPnH1Wvgk=
github.com/bahlo/generic-list-go v0.2.0/go.mod h1:2KvAjgMlE5NNynlg/5iLrrCCZ2+5xWbdbCW3pNTGyYg=
github.com/buger/jsonparser v1.1.1 h1:2PnMjfWD7wBILjqQbt530v576A/cAbQvEW9gGIpYMUs=
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ requires-python = ">=3.12"
dependencies = [
# >=0.1.96 ships ReasonerFailed, which build() raises so an empty build
# reports `failed` (not `succeeded`) with its result preserved (#82 Gap 2).
"agentfield>=0.1.108",
"agentfield>=0.1.111",
"pydantic>=2.0",
# Compatibility pin: newer SDK builds have surfaced
# "Unknown message type: rate_limit_event" during streaming.
Expand Down
2 changes: 1 addition & 1 deletion requirements-docker.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# Same runtime dependencies as requirements.txt.

agentfield>=0.1.108
agentfield>=0.1.111
pydantic>=2.0
claude-agent-sdk==0.1.20
hax-sdk>=0.2.4
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# Install: python -m pip install -r requirements.txt

agentfield>=0.1.108
agentfield>=0.1.111
pydantic>=2.0
claude-agent-sdk==0.1.20
hax-sdk>=0.2.4
Expand Down
Loading