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
1 change: 1 addition & 0 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ This repository also contains materials under separate licenses:

- SPEC.md and docs/protocol.md: Creative Commons Attribution 4.0 International (CC BY 4.0)
- pkg/ and adapters/: Apache License, Version 2.0
- cmd/anf-mcp/ and translators/: Apache License, Version 2.0
- benchmark methodology and scenario definitions: Apache License, Version 2.0 unless otherwise noted

If any file contains an explicit license notice, that notice controls for that file.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ docker-build:
build:
$(GO) build -trimpath -ldflags="-s -w" -o bin/acp-server ./cmd/acp-server
$(GO) build -trimpath -ldflags="-s -w" -o bin/acp-bridge ./cmd/acp-bridge
$(GO) build -trimpath -ldflags="-s -w" -o bin/anf-mcp ./cmd/anf-mcp

generate:
@if [ ! -x $(MOCKGEN) ]; then \
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ about 350 tokens as ANF. The full spec is in [`FORMAT.md`](FORMAT.md).
- **Go encoder.** [`pkg/anf`](pkg/anf), Apache 2.0. Build and emit ANF documents.
- **Kubernetes translator.** [`translators/kubernetes`](translators/kubernetes).
Live cluster state to ANF.
- **MCP server.** [`cmd/anf-mcp`](cmd/anf-mcp), Apache 2.0. A stateless stdio MCP
server exposing ANF encoding tools to any MCP client (Claude, Cursor, VS Code,
Codex). `go install github.com/Clawdlinux/agent-native-format/cmd/anf-mcp@latest`.
- **Benchmarks.** Reproducible token measurements against raw and filtered JSON.

## Governed execution runtime
Expand Down
Loading
Loading