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
4 changes: 2 additions & 2 deletions src/components/AclHero.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { motion, AnimatePresence } from 'framer-motion';
import { Github, ArrowRight, BookOpen, TrendingDown } from 'lucide-react';
import { useTheme } from '../hooks/useTheme';

const ACL_GITHUB = 'https://github.com/Clawdlinux/agent-contract-protocol';
const ACL_SPEC = 'https://github.com/Clawdlinux/agent-contract-protocol/blob/main/FORMAT.md';
const ACL_GITHUB = 'https://github.com/Clawdlinux/agent-native-format';
const ACL_SPEC = 'https://github.com/Clawdlinux/agent-native-format/blob/main/FORMAT.md';

/* ── The raw → ACL compression demo ── */
const RAW_JSON = `{
Expand Down
2 changes: 1 addition & 1 deletion src/components/ProductsAcl.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
} from 'lucide-react';
import { useTheme } from '../hooks/useTheme';

const ACL_GITHUB = 'https://github.com/Clawdlinux/agent-contract-protocol';
const ACL_GITHUB = 'https://github.com/Clawdlinux/agent-native-format';
const OPERATOR_GITHUB = 'https://github.com/Clawdlinux/agentic-operator-core';

const CAPABILITIES = [
Expand Down
12 changes: 6 additions & 6 deletions src/pages/AclPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ import {
import { useTheme } from '../hooks/useTheme';
import AclHero from '../components/AclHero';

const ACL_GITHUB = 'https://github.com/Clawdlinux/agent-contract-protocol';
const ACL_SPEC = 'https://github.com/Clawdlinux/agent-contract-protocol/blob/main/FORMAT.md';
const ACL_BENCH = 'https://github.com/Clawdlinux/agent-contract-protocol/blob/main/benchmark/agent_accuracy/results/2026-05-09-094833/summary.md';
const ACP_FRONTIER_BENCH = 'https://github.com/Clawdlinux/agent-contract-protocol/tree/main/benchmark/frontier';
const ACL_GITHUB = 'https://github.com/Clawdlinux/agent-native-format';
const ACL_SPEC = 'https://github.com/Clawdlinux/agent-native-format/blob/main/FORMAT.md';
const ACL_BENCH = 'https://github.com/Clawdlinux/agent-native-format/blob/main/benchmark/agent_accuracy/results/2026-05-09-094833/summary.md';
const ACP_FRONTIER_BENCH = 'https://github.com/Clawdlinux/agent-native-format/tree/main/benchmark/frontier';
const BFCL_URL = 'https://gorilla.cs.berkeley.edu/leaderboard.html';

const COMPRESSION_ROWS = [
Expand Down Expand Up @@ -229,8 +229,8 @@ export default function AclPage() {
}}
>
<code>{`import (
"github.com/Clawdlinux/agent-contract-protocol/pkg/anf"
k8stranslator "github.com/Clawdlinux/agent-contract-protocol/translators/kubernetes"
"github.com/Clawdlinux/agent-native-format/pkg/anf"
k8stranslator "github.com/Clawdlinux/agent-native-format/translators/kubernetes"
)

doc := k8stranslator.Translate(namespaceView, time.Now())
Expand Down