Files
Bo 7a765cde19 Align AgentOps around its operations-layer identity (#1051)
Executes docs/plans/2026-08-07-agentops-operations-layer-alignment.md:
AgentOps is the operations layer for agentic engineering; the federated
integration graph is the topology, the semantic work-and-proof protocol
is the contract, and RPI is the standard one-experiment traversal.

Retires the ao flywheel command family and all knowledge-flywheel
product state, tombstones the seven-move operating-loop workflow,
narrows ao init and the .agents state writers to declared destinations,
renames the core architecture page to rpi-traversal.md with a
compatibility redirect, aligns AGENTS.md, 25 skills, public and package
copy, regenerates every owned projection, and strengthens the
conformance gates with planted-negative proofs.

Both the alignment subject and the follow-up gate-bookkeeping commit
carry fresh author-distinct validation PASS verdicts with empty
not_checked scope.

Test-Removal-Reason: dead knowledge-flywheel and session-store surfaces were deleted with their tests (operations-layer alignment)
2026-08-07 18:37:03 -04:00

25 lines
728 B
Ruby

class Agentops < Formula
desc "Optional AgentOps CLI for deterministic repository checks and evidence linking"
homepage "https://github.com/boshu2/agentops"
url "https://github.com/boshu2/agentops/archive/refs/tags/v1.0.0.tar.gz"
sha256 "75d5530c909c5f2d512362b1f3de3ed47748c3dfb264174fc5e9480ffc62544d"
license "Apache-2.0"
head "https://github.com/boshu2/agentops.git", branch: "main"
depends_on "go" => :build
def install
cd "cli" do
ldflags = %W[
-s -w
-X main.version=#{version}
]
system "go", "build", *std_go_args(ldflags:, output: bin/"ao"), "./cmd/ao"
end
end
test do
assert_match "ao version #{version}", shell_output("#{bin}/ao version")
end
end