mirror of
https://github.com/chenhg5/cc-connect.git
synced 2026-07-03 12:28:10 +08:00
* feat: add reasonix agent adapter Adds a new agent adapter for Reasonix, a multi-model coding agent. The adapter communicates with a running 'reasonix serve' instance via its HTTP API: - Submits prompts via POST /submit - Consumes agent events via SSE /events - Handles tool approval via POST /approve - Supports mode switching (default/yolo/plan) - Accumulates incremental reasoning chunks into single events * fix: handle resp.Body.Close errors (errcheck lint) and fix close-before-status order * fix: add SSE auto-reconnect with backoff when reasonix serve restarts * fix: add unit tests, static assertions, error body, reconnect limit 10 unit tests with httptest. All pass -race. P2 fixes: static assertions, error body, max reconnect. * fix: lint: check error returns in session_test.go (errcheck) * fix: lint: check remaining fmt.Fprintf error in TestSSEReconnect * fix: add reasonix to ALL_AGENTS in Makefile, fix CHANGELOG, add doc comments P1: Added reasonix to ALL_AGENTS in Makefile so make build includes it by default. P2: Fixed CHANGELOG Unreleased entry, added formatImages doc comment, serve_url normalize comment, normalizeMode auto/force comment. * chore: retrigger CI
183 lines
6.0 KiB
Makefile
183 lines
6.0 KiB
Makefile
APP := cc-connect
|
|
MODULE := github.com/chenhg5/cc-connect
|
|
CMD := ./cmd/cc-connect
|
|
DIST := dist
|
|
|
|
VERSION := v1.3.3
|
|
COMMIT := $(shell git rev-parse --short HEAD 2>/dev/null || echo "none")
|
|
BUILD_TIME := $(shell date -u '+%Y-%m-%dT%H:%M:%SZ')
|
|
|
|
LDFLAGS := -s -w \
|
|
-X main.version=$(VERSION) \
|
|
-X main.commit=$(COMMIT) \
|
|
-X main.buildTime=$(BUILD_TIME)
|
|
|
|
PLATFORMS := \
|
|
linux/amd64 \
|
|
linux/arm64 \
|
|
darwin/amd64 \
|
|
darwin/arm64 \
|
|
windows/amd64 \
|
|
windows/arm64
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Selective compilation via build tags.
|
|
#
|
|
# By default all agents and platforms are included. To build with only
|
|
# specific ones, set AGENTS and/or PLATFORMS_INCLUDE:
|
|
#
|
|
# make build AGENTS=claudecode PLATFORMS_INCLUDE=feishu,telegram
|
|
#
|
|
# You can also exclude specific ones:
|
|
#
|
|
# make build EXCLUDE=discord,dingtalk,qq,qqbot,line
|
|
# ---------------------------------------------------------------------------
|
|
|
|
ALL_AGENTS := acp antigravity claudecode codex copilot cursor devin gemini iflow kimi opencode pi qoder reasonix tmux
|
|
ALL_PLATFORMS := feishu telegram discord slack dingtalk wecom weixin qq qqbot line weibo max matrix webex
|
|
ALL_EXTRAS := web
|
|
|
|
COMMA := ,
|
|
|
|
# Compute exclusion tags from AGENTS / PLATFORMS_INCLUDE / EXCLUDE variables
|
|
_EXCLUDE_TAGS :=
|
|
|
|
ifdef AGENTS
|
|
_WANTED_AGENTS := $(subst $(COMMA), ,$(AGENTS))
|
|
_EXCLUDE_AGENTS := $(filter-out $(_WANTED_AGENTS),$(ALL_AGENTS))
|
|
_EXCLUDE_TAGS += $(addprefix no_,$(_EXCLUDE_AGENTS))
|
|
endif
|
|
|
|
ifdef PLATFORMS_INCLUDE
|
|
_WANTED_PLATFORMS := $(subst $(COMMA), ,$(PLATFORMS_INCLUDE))
|
|
_EXCLUDE_PLATFORMS := $(filter-out $(_WANTED_PLATFORMS),$(ALL_PLATFORMS))
|
|
_EXCLUDE_TAGS += $(addprefix no_,$(_EXCLUDE_PLATFORMS))
|
|
endif
|
|
|
|
ifdef EXCLUDE
|
|
_EXCLUDE_TAGS += $(addprefix no_,$(subst $(COMMA), ,$(EXCLUDE)))
|
|
endif
|
|
|
|
ifdef NO_WEB
|
|
_EXCLUDE_TAGS += no_web
|
|
endif
|
|
|
|
_BUILD_TAGS := $(strip $(_EXCLUDE_TAGS) goolm)
|
|
_TAGS_FLAG := $(if $(_BUILD_TAGS),-tags '$(_BUILD_TAGS)',)
|
|
|
|
.PHONY: build run clean test test-fast test-full test-smoke test-e2e test-release test-release-local test-performance pre-test lint release release-all web
|
|
|
|
web:
|
|
@if [ ! -d web/node_modules ]; then cd web && npm install; fi
|
|
cd web && npm run build
|
|
|
|
build: web
|
|
go build $(_TAGS_FLAG) -ldflags "$(LDFLAGS)" -o $(APP) $(CMD)
|
|
|
|
build-noweb:
|
|
go build $(_TAGS_FLAG) -tags 'no_web' -ldflags "$(LDFLAGS)" -o $(APP) $(CMD)
|
|
|
|
run: build
|
|
./$(APP)
|
|
|
|
clean:
|
|
rm -f $(APP)
|
|
rm -rf $(DIST)
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Testing targets.
|
|
#
|
|
# test-fast: Unit tests + smoke tests (< 2 min). Runs on every push.
|
|
# test-full: Full test suite including regression (< 10 min). PR requirement.
|
|
# test-smoke: Smoke tests only (< 1 min). Quick sanity check.
|
|
# test-e2e: E2E and regression tests only.
|
|
# test-release: Full + performance benchmarks. Before release.
|
|
# pre-test: Prerequisites (build + vet) before running tests.
|
|
# ---------------------------------------------------------------------------
|
|
|
|
pre-test:
|
|
go build ./...
|
|
go vet ./...
|
|
|
|
# Fast test: unit tests + smoke tests
|
|
test-fast: pre-test
|
|
go test -parallel=4 -race ./...
|
|
go test -parallel=4 -tags=smoke ./tests/e2e/...
|
|
|
|
# Full test: unit + smoke + regression (PR requirement)
|
|
test-full: pre-test
|
|
go test -parallel=4 -race ./...
|
|
go test -parallel=4 -tags=smoke ./tests/e2e/...
|
|
go test -parallel=2 -tags=regression ./tests/e2e/...
|
|
|
|
# Smoke tests only
|
|
test-smoke: pre-test
|
|
go test -v -tags=smoke ./tests/e2e/...
|
|
|
|
# E2E/regression tests only
|
|
test-e2e: pre-test
|
|
go test -v -tags=regression ./tests/e2e/...
|
|
|
|
# Performance benchmarks only
|
|
test-performance: pre-test
|
|
go test -bench=. -benchmem -tags=performance ./tests/performance/...
|
|
|
|
# Release test: full + performance benchmarks
|
|
test-release: pre-test
|
|
go test -parallel=4 -race ./...
|
|
go test -parallel=4 -tags=smoke ./tests/e2e/...
|
|
go test -parallel=2 -tags=regression ./tests/e2e/...
|
|
go test -bench=. -benchmem -tags=performance ./tests/performance/...
|
|
|
|
# Release-local gate: deterministic release checks that do not require real IM
|
|
# credentials, real provider accounts, or supervisor-managed services.
|
|
test-release-local:
|
|
go test ./tests/release_local/...
|
|
go test ./config
|
|
go test ./core -run 'TestEngineSendToSessionWithAttachments|TestProcessInteractiveEvents_SuppressesDuplicateSideChannelText|TestCmdList_AllSessionsVisibleAfterRepeatedNew|TestCmdList_SessionVisibleDuringAgentProcessing|TestEngine_Alias|TestEngine_BannedWords|TestEngine_DisabledCommands'
|
|
go test ./platform/feishu -run 'TestUserIDFromEventFallsBackToUserID|TestResolveUserNameSkipsInvalidLookupID|TestNew_CanDisableInteractiveCards'
|
|
|
|
# Legacy: runs unit tests only
|
|
test:
|
|
go test -v ./...
|
|
|
|
lint:
|
|
golangci-lint run ./...
|
|
|
|
release-all: web clean
|
|
@mkdir -p $(DIST)
|
|
@$(foreach platform,$(PLATFORMS), \
|
|
$(eval GOOS := $(word 1,$(subst /, ,$(platform)))) \
|
|
$(eval GOARCH := $(word 2,$(subst /, ,$(platform)))) \
|
|
$(eval EXT := $(if $(filter windows,$(GOOS)),.exe,)) \
|
|
$(eval OUT := $(DIST)/$(APP)-$(VERSION)-$(GOOS)-$(GOARCH)$(EXT)) \
|
|
echo "Building $(OUT)" && \
|
|
GOOS=$(GOOS) GOARCH=$(GOARCH) CGO_ENABLED=0 \
|
|
go build $(_TAGS_FLAG) -ldflags "$(LDFLAGS)" -o $(OUT) $(CMD) && \
|
|
) true
|
|
@echo "Packaging archives..."
|
|
@cd $(DIST) && for f in $(APP)-*; do \
|
|
case "$$f" in \
|
|
*.tar.gz|*.zip) continue ;; \
|
|
*.exe) zip "$${f%.exe}.zip" "$$f" ;; \
|
|
*) tar czf "$$f.tar.gz" "$$f" ;; \
|
|
esac; \
|
|
done
|
|
@cd $(DIST) && sha256sum * > checksums.txt
|
|
@echo "Done. Binaries and archives in $(DIST)/"
|
|
|
|
release:
|
|
@if [ -z "$(TARGET)" ]; then \
|
|
echo "Usage: make release TARGET=linux/amd64"; \
|
|
echo "Available: $(PLATFORMS)"; \
|
|
exit 1; \
|
|
fi
|
|
@mkdir -p $(DIST)
|
|
$(eval GOOS := $(word 1,$(subst /, ,$(TARGET))))
|
|
$(eval GOARCH := $(word 2,$(subst /, ,$(TARGET))))
|
|
$(eval EXT := $(if $(filter windows,$(GOOS)),.exe,))
|
|
$(eval OUT := $(DIST)/$(APP)-$(VERSION)-$(GOOS)-$(GOARCH)$(EXT))
|
|
GOOS=$(GOOS) GOARCH=$(GOARCH) CGO_ENABLED=0 \
|
|
go build $(_TAGS_FLAG) -ldflags "$(LDFLAGS)" -o $(OUT) $(CMD)
|
|
@echo "Built: $(OUT)"
|