mirror of
https://github.com/boshu2/agentops.git
synced 2026-09-14 15:08:13 +08:00
a5f7be8364
## Summary - pin and materialize an exact colocated Gas City and official Beads toolchain without editing installed binaries - add deterministic isolated bootstrap, recovery, teardown, exact workspace binding, and tracked .gitignore preservation - add bead-native Mayor, plan review, isolated Codex/Claude workers, binding Validators, rejection-to-Mayor rescope, fenced Refinery, integration validation, qualification, and protected PR delivery - make the local quick release gate deterministic after CLI cleanup ## Validation - fresh GC-managed Codex Sol verdict: PASS (verdict d1a1e03808b4605e49cc97423c7570b04d581c9ee1fad9aa8f1daf6e72d6f0ef) - focused GC executor/factory/projection suite: PASS (32 packet + 77 factory + 4 projection + 21 bootstrap tests, plus doctors and static contracts) - teardown suite: 7/7 PASS - local-ci-fast: PASS - exact v16 mixed-provider live canary: Terra and Opus 4.8 workers in parallel, opposite-family candidate validators, Opus Refiner, Sol integration validator, all lifecycle beads closed, clean managed teardown ## Scope The follow-on Fable 5 Mayor/Refiner, Sol-every-bead validation, and Luna support-worker topology is deliberately not part of this historical v16 baseline; it will build on this foundation in a separate bead program.
39 lines
1.3 KiB
Makefile
39 lines
1.3 KiB
Makefile
SHELL := /usr/bin/env bash
|
|
|
|
.PHONY: local-ci local-ci-fast ci build test docs-check regen-all regen-check clean help
|
|
|
|
# Default: run the release-grade local CI gate.
|
|
# Note: scripts/ci-local-release.sh already includes build + test + release-binary validation.
|
|
.DEFAULT_GOAL := local-ci
|
|
|
|
local-ci: ## Run full local CI release gate (includes build and release binary validation)
|
|
./scripts/ci-local-release.sh
|
|
|
|
local-ci-fast: ## Run the fast pre-tag code-correctness gate
|
|
./scripts/ci-local-release.sh --quick
|
|
|
|
ci: local-ci ## Alias for local-ci
|
|
|
|
build: ## Build ao CLI binary
|
|
$(MAKE) -C cli build
|
|
|
|
test: ## Run CLI tests
|
|
$(MAKE) -C cli test
|
|
|
|
docs-check: ## Run docs and hook safety drift checks
|
|
./scripts/generate-cli-reference.sh --check
|
|
./scripts/check-doc-hooks-drift.sh
|
|
./tests/docs/validate-doc-release.sh
|
|
|
|
regen-all: ## Regenerate every derived artifact after adding a skill/command (one-command finalizer)
|
|
bash ./scripts/regen-all.sh
|
|
|
|
regen-check: ## Run the derived-artifact drift/gate sweep (no writes; pre-push gate)
|
|
bash ./scripts/regen-all.sh --check
|
|
|
|
clean: ## Clean CLI build artifacts
|
|
$(MAKE) -C cli clean
|
|
|
|
help: ## Show available targets
|
|
@awk 'BEGIN {FS = ":.*##"; printf "Targets:\n"} /^[a-zA-Z0-9_.-]+:.*##/ { printf " %-14s %s\n", $$1, $$2 }' $(MAKEFILE_LIST)
|