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/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
with:
context: .
push: false
tags: ninevigil-acp/acp-server:ci
tags: clawdlinux/acp-server:ci

docs:
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
# Go
/bin/
/dist/
/acp-bridge
*.test
coverage.out

Expand Down
4 changes: 2 additions & 2 deletions FORMAT.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
**Version:** 0.1.0-draft
**Status:** Draft
**License:** CC BY 4.0
**Authors:** Shreyansh Sancheti (NineVigil / Clawdlinux)
**Authors:** Shreyansh Sancheti (Clawdlinux)
**Date:** 2026-05-03

---
Expand Down Expand Up @@ -80,7 +80,7 @@ Headers provide scope and context. Prefix: `@`
@scope namespace:payments
@time 2026-05-03T10:30:00Z
@ttl 60s
@translator ninevigil/k8s-translator:0.3.0
@translator clawdlinux/k8s-translator:0.1.0
```

| Header | Required | Description |
Expand Down
4 changes: 2 additions & 2 deletions SPEC.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Agent Contract Protocol (ACP) - v0.2 DRAFT

> **Status:** DRAFT - June 4, 2026
> **Editors:** Shreyansh Sancheti (Clawdlinux / NineVigil)
> **Editors:** Shreyansh Sancheti (Clawdlinux)
> **License:** CC BY 4.0 (spec only; see [LICENSE](./LICENSE) for runtime)
> **Tagline:** Governed execution contracts for autonomous agents.

Expand Down Expand Up @@ -154,7 +154,7 @@ later documents, this object is an Execution Contract.
"require_approval": ["a3"],
"audit_level": "full"
},
"feedback_endpoint": "http://ninevigil.svc/v1/feedback"
"feedback_endpoint": "http://acp-feedback.svc.cluster.local/v1/feedback"
}
```

Expand Down
Binary file removed acp-bridge
Binary file not shown.
2 changes: 1 addition & 1 deletion adapters/python/acp_common/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ description = "Shared client + types for ACP (Agent Contract Protocol) Python ad
readme = "README.md"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
authors = [{ name = "Clawdlinux / NineVigil" }]
authors = [{ name = "Clawdlinux" }]
keywords = ["acp", "agent", "context", "protocol", "mcp", "llm"]
classifiers = [
"Development Status :: 3 - Alpha",
Expand Down
2 changes: 1 addition & 1 deletion adapters/python/acp_crewai/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ description = "CrewAI adapter for ACP (Agent Contract Protocol) manifests."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
authors = [{ name = "Clawdlinux / NineVigil" }]
authors = [{ name = "Clawdlinux" }]
keywords = ["acp", "agent", "crewai", "mcp", "llm"]
classifiers = [
"Development Status :: 3 - Alpha",
Expand Down
2 changes: 1 addition & 1 deletion adapters/python/acp_langgraph/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ description = "LangGraph adapter for ACP (Agent Contract Protocol) execution con
readme = "README.md"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
authors = [{ name = "Clawdlinux / NineVigil" }]
authors = [{ name = "Clawdlinux" }]
keywords = ["acp", "agent", "langgraph", "mcp", "llm"]
classifiers = [
"Development Status :: 3 - Alpha",
Expand Down
2 changes: 1 addition & 1 deletion adapters/python/acp_openai/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ description = "Raw OpenAI function-calling adapter for ACP (Agent Contract Proto
readme = "README.md"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
authors = [{ name = "Clawdlinux / NineVigil" }]
authors = [{ name = "Clawdlinux" }]
keywords = ["acp", "agent", "openai", "function-calling", "mcp", "llm"]
classifiers = [
"Development Status :: 3 - Alpha",
Expand Down
2 changes: 1 addition & 1 deletion benchmark/baseline/mcp_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ def to_mcp(self) -> dict[str, Any]:
"prompts": {"listChanged": True},
"logging": {},
},
"serverInfo": {"name": "ninevigil-mcp-baseline", "version": "0.1.0"},
"serverInfo": {"name": "clawdlinux-mcp-baseline", "version": "0.1.0"},
}


Expand Down
2 changes: 1 addition & 1 deletion cmd/acp-bridge/main.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2026 Clawdlinux / NineVigil.
Copyright 2026 Clawdlinux.

Licensed under the Business Source License 1.1.
See LICENSE in the repository root.
Expand Down
2 changes: 1 addition & 1 deletion cmd/acp-bridge/main_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2026 Clawdlinux / NineVigil.
Copyright 2026 Clawdlinux.

Licensed under the Business Source License 1.1.
See LICENSE in the repository root.
Expand Down
2 changes: 1 addition & 1 deletion cmd/acp-server/main.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2026 Clawdlinux / NineVigil.
Copyright 2026 Clawdlinux.

Licensed under the Business Source License 1.1.
See LICENSE in the repository root.
Expand Down
4 changes: 2 additions & 2 deletions cmd/anf-mcp/FORMAT.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
**Version:** 0.1.0-draft
**Status:** Draft
**License:** CC BY 4.0
**Authors:** Shreyansh Sancheti (NineVigil / Clawdlinux)
**Authors:** Shreyansh Sancheti (Clawdlinux)
**Date:** 2026-05-03

---
Expand Down Expand Up @@ -80,7 +80,7 @@ Headers provide scope and context. Prefix: `@`
@scope namespace:payments
@time 2026-05-03T10:30:00Z
@ttl 60s
@translator ninevigil/k8s-translator:0.3.0
@translator clawdlinux/k8s-translator:0.1.0
```

| Header | Required | Description |
Expand Down
2 changes: 1 addition & 1 deletion docs/architecture.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ACP Architecture

ACP shifts execution governance from the agent runtime to the NineVigil
ACP shifts execution governance from the agent runtime to the Clawdlinux
control plane. **ACP sits on top of MCP** and other tool sources; see
[positioning.md](./positioning.md) for the strategic framing and
[SPEC.md §10](../SPEC.md#10-relationship-to-mcp) for the wire-level details.
Expand Down
2 changes: 1 addition & 1 deletion docs/decision-log.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ there is a persistent background process.
runtime under BSL 1.1 with 3-year Apache conversion.

**Why:** This maximizes ecosystem adoption for the protocol while protecting
the optimized runtime until NineVigil has a data and deployment moat.
the optimized runtime until Clawdlinux has a data and deployment moat.
2 changes: 1 addition & 1 deletion docs/phase-log.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ACP Phase Log

This file is the repo-local source of truth for implementation phases. The
same milestones are mirrored to the `ACP-PoC/` folder inside the NineVigil
same milestones are mirrored to the `ACP-PoC/` folder inside the Clawdlinux
Obsidian vault.

## Phase 0 — Invention Capture
Expand Down
4 changes: 2 additions & 2 deletions docs/run-log/2026-05-02-phase-1-scaffold.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Objective

Start ACP as a new private Clawdlinux/NineVigil invention repo with a durable
Start ACP as a new private Clawdlinux invention repo with a durable
protocol spec, scaffold, benchmark plan, and Obsidian mirror.

## Inputs
Expand All @@ -11,7 +11,7 @@ protocol spec, scaffold, benchmark plan, and Obsidian mirror.
- GitHub org: `clawdlinux`
- Repo: `Clawdlinux/agent-native-format`
- Local path: `/Users/sunny/clawdlinux/agent-contract-protocol`
- Obsidian vault folder: `ACP-PoC/` inside the NineVigil vault
- Obsidian vault folder: `ACP-PoC/` inside the Clawdlinux vault

## Work completed

Expand Down
12 changes: 6 additions & 6 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ require (
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
go.opentelemetry.io/otel/metric v1.43.0 // indirect
go.opentelemetry.io/proto/otlp v1.10.0 // indirect
golang.org/x/net v0.52.0 // indirect
golang.org/x/sys v0.42.0 // indirect
golang.org/x/text v0.35.0 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20260401024825-9d38bb4040a9 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20260401024825-9d38bb4040a9 // indirect
google.golang.org/grpc v1.80.0 // indirect
golang.org/x/net v0.53.0 // indirect
golang.org/x/sys v0.43.0 // indirect
golang.org/x/text v0.36.0 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20260414002931-afd174a4e478 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20260414002931-afd174a4e478 // indirect
google.golang.org/grpc v1.82.1 // indirect
google.golang.org/protobuf v1.36.11 // indirect
)
12 changes: 12 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -45,18 +45,30 @@ go.uber.org/mock v0.6.0 h1:hyF9dfmbgIX5EfOdasqLsWD6xqpNZlXblLB/Dbnwv3Y=
go.uber.org/mock v0.6.0/go.mod h1:KiVJ4BqZJaMj4svdfmHM0AUx4NJYO8ZNpPnZn1Z+BBU=
golang.org/x/net v0.52.0 h1:He/TN1l0e4mmR3QqHMT2Xab3Aj3L9qjbhRm78/6jrW0=
golang.org/x/net v0.52.0/go.mod h1:R1MAz7uMZxVMualyPXb+VaqGSa3LIaUqk0eEt3w36Sw=
golang.org/x/net v0.53.0 h1:d+qAbo5L0orcWAr0a9JweQpjXF19LMXJE8Ey7hwOdUA=
golang.org/x/net v0.53.0/go.mod h1:JvMuJH7rrdiCfbeHoo3fCQU24Lf5JJwT9W3sJFulfgs=
golang.org/x/sys v0.42.0 h1:omrd2nAlyT5ESRdCLYdm3+fMfNFE/+Rf4bDIQImRJeo=
golang.org/x/sys v0.42.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=
golang.org/x/sys v0.43.0 h1:Rlag2XtaFTxp19wS8MXlJwTvoh8ArU6ezoyFsMyCTNI=
golang.org/x/sys v0.43.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=
golang.org/x/text v0.35.0 h1:JOVx6vVDFokkpaq1AEptVzLTpDe9KGpj5tR4/X+ybL8=
golang.org/x/text v0.35.0/go.mod h1:khi/HExzZJ2pGnjenulevKNX1W67CUy0AsXcNubPGCA=
golang.org/x/text v0.36.0 h1:JfKh3XmcRPqZPKevfXVpI1wXPTqbkE5f7JA92a55Yxg=
golang.org/x/text v0.36.0/go.mod h1:NIdBknypM8iqVmPiuco0Dh6P5Jcdk8lJL0CUebqK164=
gonum.org/v1/gonum v0.17.0 h1:VbpOemQlsSMrYmn7T2OUvQ4dqxQXU+ouZFQsZOx50z4=
gonum.org/v1/gonum v0.17.0/go.mod h1:El3tOrEuMpv2UdMrbNlKEh9vd86bmQ6vqIcDwxEOc1E=
google.golang.org/genproto/googleapis/api v0.0.0-20260401024825-9d38bb4040a9 h1:VPWxll4HlMw1Vs/qXtN7BvhZqsS9cdAittCNvVENElA=
google.golang.org/genproto/googleapis/api v0.0.0-20260401024825-9d38bb4040a9/go.mod h1:7QBABkRtR8z+TEnmXTqIqwJLlzrZKVfAUm7tY3yGv0M=
google.golang.org/genproto/googleapis/api v0.0.0-20260414002931-afd174a4e478 h1:yQugLulqltosq0B/f8l4w9VryjV+N/5gcW0jQ3N8Qec=
google.golang.org/genproto/googleapis/api v0.0.0-20260414002931-afd174a4e478/go.mod h1:C6ADNqOxbgdUUeRTU+LCHDPB9ttAMCTff6auwCVa4uc=
google.golang.org/genproto/googleapis/rpc v0.0.0-20260401024825-9d38bb4040a9 h1:m8qni9SQFH0tJc1X0vmnpw/0t+AImlSvp30sEupozUg=
google.golang.org/genproto/googleapis/rpc v0.0.0-20260401024825-9d38bb4040a9/go.mod h1:4Hqkh8ycfw05ld/3BWL7rJOSfebL2Q+DVDeRgYgxUU8=
google.golang.org/genproto/googleapis/rpc v0.0.0-20260414002931-afd174a4e478 h1:RmoJA1ujG+/lRGNfUnOMfhCy5EipVMyvUE+KNbPbTlw=
google.golang.org/genproto/googleapis/rpc v0.0.0-20260414002931-afd174a4e478/go.mod h1:4Hqkh8ycfw05ld/3BWL7rJOSfebL2Q+DVDeRgYgxUU8=
google.golang.org/grpc v1.80.0 h1:Xr6m2WmWZLETvUNvIUmeD5OAagMw3FiKmMlTdViWsHM=
google.golang.org/grpc v1.80.0/go.mod h1:ho/dLnxwi3EDJA4Zghp7k2Ec1+c2jqup0bFkw07bwF4=
google.golang.org/grpc v1.82.1 h1:NnAxzGRA0677vCa4BUkOAnO5+FfQqVl9iUXeD0IqcGE=
google.golang.org/grpc v1.82.1/go.mod h1:yzTZ1TB1Z3SG+LIYaI+WiE8D5+PZ3ArnrSp8zF3+/ZA=
google.golang.org/protobuf v1.36.11 h1:fV6ZwhNocDyBLK0dj+fg8ektcVegBBuEolpbTQyBNVE=
google.golang.org/protobuf v1.36.11/go.mod h1:HTf+CrKn2C3g5S8VImy6tdcUvCska2kB7j23XfzDpco=
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
Expand Down
2 changes: 1 addition & 1 deletion internal/bridge/bridge.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2026 Clawdlinux / NineVigil.
Copyright 2026 Clawdlinux.

Licensed under the Business Source License 1.1.
See LICENSE in the repository root.
Expand Down
2 changes: 1 addition & 1 deletion internal/bridge/bridge_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2026 Clawdlinux / NineVigil.
Copyright 2026 Clawdlinux.

Licensed under the Business Source License 1.1.
See LICENSE in the repository root.
Expand Down
2 changes: 1 addition & 1 deletion internal/builder/builder.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2026 Clawdlinux / NineVigil.
Copyright 2026 Clawdlinux.

Licensed under the Business Source License 1.1.
See LICENSE in the repository root.
Expand Down
2 changes: 1 addition & 1 deletion internal/builder/builder_fuzz_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2026 Clawdlinux / NineVigil.
Copyright 2026 Clawdlinux.

Licensed under the Business Source License 1.1.
See LICENSE in the repository root.
Expand Down
2 changes: 1 addition & 1 deletion internal/builder/builder_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2026 Clawdlinux / NineVigil.
Copyright 2026 Clawdlinux.

Licensed under the Business Source License 1.1.
See LICENSE in the repository root.
Expand Down
2 changes: 1 addition & 1 deletion internal/mcpclient/stdio.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2026 Clawdlinux / NineVigil.
Copyright 2026 Clawdlinux.

Licensed under the Business Source License 1.1.
See LICENSE in the repository root.
Expand Down
2 changes: 1 addition & 1 deletion internal/mcpclient/stdio_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2026 Clawdlinux / NineVigil.
Copyright 2026 Clawdlinux.

Licensed under the Business Source License 1.1.
See LICENSE in the repository root.
Expand Down
2 changes: 1 addition & 1 deletion internal/observability/observability.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2026 Clawdlinux / NineVigil.
Copyright 2026 Clawdlinux.
Licensed under the Business Source License 1.1.
*/

Expand Down
2 changes: 1 addition & 1 deletion internal/observability/observability_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2026 Clawdlinux / NineVigil.
Copyright 2026 Clawdlinux.
Licensed under the Business Source License 1.1.
*/

Expand Down
2 changes: 1 addition & 1 deletion internal/proxy/gates_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2026 Clawdlinux / NineVigil.
Copyright 2026 Clawdlinux.

Licensed under the Business Source License 1.1.
See LICENSE in the repository root.
Expand Down
2 changes: 1 addition & 1 deletion internal/proxy/proxy.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2026 Clawdlinux / NineVigil.
Copyright 2026 Clawdlinux.

Licensed under the Business Source License 1.1.
See LICENSE in the repository root.
Expand Down
2 changes: 1 addition & 1 deletion internal/proxy/proxy_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2026 Clawdlinux / NineVigil.
Copyright 2026 Clawdlinux.

Licensed under the Business Source License 1.1.
See LICENSE in the repository root.
Expand Down
2 changes: 1 addition & 1 deletion internal/registry/registry.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2026 Clawdlinux / NineVigil.
Copyright 2026 Clawdlinux.

Licensed under the Business Source License 1.1.
See LICENSE in the repository root.
Expand Down
2 changes: 1 addition & 1 deletion internal/registry/registry_concurrency_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2026 Clawdlinux / NineVigil.
Copyright 2026 Clawdlinux.

Licensed under the Business Source License 1.1.
See LICENSE in the repository root.
Expand Down
2 changes: 1 addition & 1 deletion internal/registry/registry_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2026 Clawdlinux / NineVigil.
Copyright 2026 Clawdlinux.

Licensed under the Business Source License 1.1.
See LICENSE in the repository root.
Expand Down
2 changes: 1 addition & 1 deletion internal/registry/seed.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2026 Clawdlinux / NineVigil.
Copyright 2026 Clawdlinux.

Licensed under the Business Source License 1.1.
See LICENSE in the repository root.
Expand Down
2 changes: 1 addition & 1 deletion internal/resolver/deferred.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2026 Clawdlinux / NineVigil.
Copyright 2026 Clawdlinux.

Licensed under the Business Source License 1.1.
See LICENSE in the repository root.
Expand Down
2 changes: 1 addition & 1 deletion internal/resolver/deferred_concurrency_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2026 Clawdlinux / NineVigil.
Copyright 2026 Clawdlinux.

Licensed under the Business Source License 1.1.
See LICENSE in the repository root.
Expand Down
2 changes: 1 addition & 1 deletion internal/resolver/deferred_fuzz_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2026 Clawdlinux / NineVigil.
Copyright 2026 Clawdlinux.

Licensed under the Business Source License 1.1.
See LICENSE in the repository root.
Expand Down
2 changes: 1 addition & 1 deletion internal/resolver/deferred_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2026 Clawdlinux / NineVigil.
Copyright 2026 Clawdlinux.

Licensed under the Business Source License 1.1.
See LICENSE in the repository root.
Expand Down
2 changes: 1 addition & 1 deletion internal/resolver/embedding.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2026 Clawdlinux / NineVigil.
Copyright 2026 Clawdlinux.

Licensed under the Business Source License 1.1.
See LICENSE in the repository root.
Expand Down
2 changes: 1 addition & 1 deletion internal/resolver/embedding_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2026 Clawdlinux / NineVigil.
Copyright 2026 Clawdlinux.

Licensed under the Business Source License 1.1.
See LICENSE in the repository root.
Expand Down
2 changes: 1 addition & 1 deletion internal/resolver/resolver.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2026 Clawdlinux / NineVigil.
Copyright 2026 Clawdlinux.

Licensed under the Business Source License 1.1.
See LICENSE in the repository root.
Expand Down
2 changes: 1 addition & 1 deletion internal/resolver/resolver_fuzz_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2026 Clawdlinux / NineVigil.
Copyright 2026 Clawdlinux.

Licensed under the Business Source License 1.1.
See LICENSE in the repository root.
Expand Down
Loading
Loading