CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Occasio

occasiolabs/occasio
9STDIOregistry active
Summary

A local proxy that logs every Claude API call into a tamper-evident hash chain on your machine, with no cloud dependency. It sits between your AI coding agent and Anthropic's API, writing tool calls and responses to a local JSONL file you can cryptographically verify later using Sigstore attestations. The policy engine lets you block filesystem paths, detect secrets in real time, and set per-round token budgets before requests leave your network. When you need to prove what an agent did during a CI run, you bundle a session into a portable evidence file that verifies offline in one command, checking chain integrity, git state bindings, and signatures without touching the producer's machine. Useful if you're running autonomous agents in production and someone will eventually ask for an audit trail.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Occasio

Local-first audit chain and identity gate for AI coding agents. Your prompts, your tool calls, your audit log; all on your machine, cryptographically verifiable later — and an agent may request an identity (ssh / cloud / root), not silently assume one.

Occasio is a local proxy that sits between your AI coding agent (Claude Code, Cline, or anything that talks to the Anthropic API) and whichever LLM endpoint you configured. Every tool call passes through one human-readable policy file you control. You can see what is leaving your machine in real time, block what should not happen, and end up with a tamper-evident hash-chained log that a third party can verify offline months later if you ever need to prove what your agent did.

Nothing about Occasio sends data to a third party. There is no Occasio cloud, no Occasio account, no telemetry. Read docs/WHY-LOCAL.md for the architecture, docs/COMPARE.md for how this differs from cloud-hosted AI observability tools, and docs/SUSTAINABILITY.md for how a local-first product is funded under Apache 2.0.

occasio eyes — live browser view of an outbound exchange, with redacted secrets highlighted in the tool result

Screenshot: occasio eyes --demo against synthetic data — no real paths, no real traffic. The "(demo)" badge top-left is always shown in demo mode.

npm install -g @occasiolabs/occasio

occasio demo audit       # Auditor scenario: signed attestation + cross-verifier proof (10s, no API key)
occasio demo attest      # End-to-end attestation pipeline against a synthetic chain
occasio demo anomalies   # Live EDR detection on a synthetic adversarial chain
occasio harness          # Real Claude Code attacking a denied path — defense holds

The first three demos run against synthetic data so you can see the full pipeline in seconds with no external dependencies. The fourth spawns a real Claude Code subordinate under your Anthropic login (bundled auth — no API key required) and proves the defense end-to-end. Start with demo audit — it answers the only question that actually matters: "prove what your AI agent did in CI."


Identity gate — request, don't assume

The incident this was built for: an agent is asked only for a deploy command, but on its own it sshes into the server and reads env. The strict policy stops exactly that — an AI agent may request an identity, it may not silently assume one.

  • Exfiltration is denied, tool-agnostically. printenv, cat .env, /proc/self/environ, private-key reads, grep-for-secret-names — blocked no matter which command or tool reads them; the output never reaches the model.
  • Identity borrows need a human. ssh / scp, az / the cloud control plane, sudo / systemctl — a fail-closed BLOCK with a "requires human approval" refusal the agent cannot satisfy on its own.
  • The handshake distinguishes who is who. The agent requests; you authorize once, out-of-band, from your own terminal:
occasio init --template strict          # the identity-gated posture
# agent runs `ssh deploy@host`  →  BLOCKED, pending apr_…
occasio approvals approve apr_… --once  # you, single-use, short TTL
# the agent's retry passes through once — then it's blocked again

The agent cannot self-approve: the approval control plane is in its deny-zone and the token is HMAC-signed. The chain records actor=ai_agent · delegator=you · approved_by=you. A second, non-proxied enforcement point — a PreToolUse hook (occasio hook --install) — covers execution that doesn't pass through the proxy.

Full design, threat model, and the honest residuals (runtime indirection, egress): docs/identity-gate.md.


Two ways to use it

Most people land here for one of these — pick the column that fits and skim accordingly.

Daily dev workCI / compliance
Question you're asking"What is the agent actually sending to Anthropic, and what's it costing me?""Prove what the agent did during this run."
Main commandsoccasio eyes, occasio dashboard, --budget N, --eyes, occasio scan, occasio preflight simulateoccasio attest, occasio bundle → occasio verify, occasio policy lock/diff, occasio anomalies, occasio audit verify
What you getLive browser UI on 127.0.0.1 — every outbound payload, byte breakdown, redactions in the clear; plus a preview of what your policy would allow/blockOne portable evidence file a third party verifies offline in one command, a signed/approved policy lock, and per-round volume limits
Jump toLive visibility · Scanner & preflightEvidence workflow · Policy workflow

Both views read the same underlying log. You don't have to pick one — running the proxy gives you both for free.


Quickstart

New here? The 5-minute Getting Started guide walks the identity-gate flow end to end — install → init --template strict → run your agent → approve a borrow → verify the log. Every command in it is tested against the published release.

Requires Node.js ≥ 18. Works on Windows, macOS, Linux.

npm install -g @occasiolabs/occasio   # Install
occasio doctor                          # Verify setup (Node, claude CLI, port, profile)
occasio init                            # Write ~/.occasio/policy.yml (dev-default)
occasio init --template strict          # …or the identity gate: deny secrets, gate ssh/cloud/root behind approval
occasio register                        # Add 'claude' shell alias (one-time)
claude "read package.json and tell me the version"

After the alias is registered, every claude invocation routes through Occasio transparently. Audit-chain rows accumulate at ~/.occasio/pipeline-events.jsonl.

Inspect the run:

occasio status                  # Session totals
occasio replay --detail         # Run-level audit
occasio audit verify            # Re-walk the hash chain end-to-end
occasio anomalies               # Run EDR detectors over the last 15 minutes
occasio attest --run-id <uuid>  # Build a behavioral attestation for one session
occasio explain <event-id>      # Why was this blocked? — the matched policy rule + how to unblock

Command matrix

Grouped by what you're doing. (stable) = load-bearing with test coverage; (beta) = works end-to-end, narrower; (alpha) = scaffold. Full list: occasio help.

CommandPurpose
claude [args]Start Claude Code through the local proxy(stable)
status · ledger · replay · boundary · inspectInspect cost / tokens / per-run audit / cloud boundary(stable)
eyes · dashboardLive browser/terminal view of outbound traffic(beta)
scan --file|--stdinExplainable secret scan (prefix/jwt/env-key/entropy), exit 1 on findings(stable)
preflight simulatePredict allow/block for candidate actions vs the active policy(stable)
preflightBackward-looking miner of past opening-move patterns(beta)
audit verify · attest [verify]Verify the hash chain · build/verify a signed attestation(stable)
bundle --run <id> → verify <file>Pack one run into a portable evidence file · verify it offline(stable)
policy show/validate/lock/diffInspect · lint · record the approved policy · detect drift(stable)
explain <event-id>Connect a BLOCK to the rule that caused it + how to unblock(stable)
anomaliesWindowed EDR over the chain(beta)
doctor [--paranoid]Setup health · local-first self-audit(stable)

Evidence workflow

Produce one file an auditor or CI receives and checks in a single command:

occasio attest --run-id <uuid> --sign          # behavioral attestation (Sigstore optional)
occasio bundle --run <uuid> --out run.occasio.json   # pack attestation + chain slice + policy + manifest
occasio verify run.occasio.json                 # 6 offline checks; exit ≠ 0 on tamper

verify checks the schema, the manifest hashes, the chain slice integrity, the policy binding, the git-state vs chain cross-check, and the Sigstore signature when present — all against data embedded in the file (never the producer's machine). The run is bound to the concrete code it touched via git_state rows (HEAD + diff hash + changed files). Signing is optional; an unsigned bundle still verifies everything else. Bundles embed absolute producer paths — an internal-audit artifact; review before sharing publicly. → docs/VERIFY.md

Policy workflow

~/.occasio/policy.yml governs the Occasio-controlled path: secret handling, deny_paths/allow_paths, custom deny_patterns, per-round limits, and tool routing. Approve it and pin against drift:

occasio policy init                              # starter policy.yml
occasio policy validate                          # lint before you rely on it
occasio policy lock --sign --out policy.lock.json   # record the approved policy
occasio policy diff --since policy.lock.json     # CI gate: exit 1 if the policy drifted

→ docs/POLICY.md

Scanner & preflight

occasio scan --file .env                         # explainable secret findings (masked, exit 1)
occasio preflight simulate --read ~/.ssh/id_rsa --bash "npm test" --strict   # would the policy block this?

scan never prints the secret in plaintext (masked snippet + SHA-256). preflight simulate runs candidate actions through the same policy engine the runtime uses and shows the matched rule + how to unblock for anything it would block. → docs/SCAN.md · docs/PREFLIGHT.md


Verify the local-first claim

occasio doctor --paranoid

Scans the installed source for every outbound network primitive, classifies each callsite, checks for telemetry SDK signatures, and surfaces the audit chain status. Exits non-zero if any critical finding appears. JSON output via --paranoid --json. See docs/WHY-LOCAL.md for the architecture this verifies.

Where Occasio sits alongside SLSA Provenance and CycloneDX AI-BOM: docs/SUPPLY-CHAIN-TRIANGLE.md. Occasio is the runtime behavioral leg.


Live visibility — for developers

The audit chain and signed attestations answer "what did the agent do, prove it" — the auditor's question. Sometimes you also want the simpler one: "what is the agent doing right now?" What is leaving your machine in this HTTP request. Which files have already gone to Anthropic in this session. What the system prompt looks like. What got redacted before it shipped.

occasio eyes is a local browser UI on http://127.0.0.1:3002 that shows exactly that. Capture is opt-in via --eyes on the proxy; nothing leaves the machine, all storage stays under ~/.occasio/eyes/.

occasio eyes --demo            # synthetic data, no proxy needed (10-second tour)
occasio claude --eyes          # then in another terminal:
occasio eyes                   # browser tab opens automatically

What you see:

  • Sidebar grouped by user prompt — one "read the readme" expands into the 3–6 HTTP round-trips it actually took (Claude Code's agentic loop made visible).
  • Session sparkline + per-file aggregate — outbound size over time, which files have been sent to the cloud and how often.
  • Per-exchange byte-decomposition — stacked bar showing system / history (replay) / new-this-turn / tools-framing. The "small" request that's 124 KB is suddenly explainable: 108 KB of it is the same system prompt every time.
  • Tabs: Request · Response · Tools (full local tool outputs — Read/Glob/Grep/Bash bytes that the interceptor handled locally and never sent up) · Diff (pre-transform vs sent — see the literal secrets that were redacted, in the clear, locally) · Headers · Raw SSE bytes · Stats.
  • Live flash overlay when a new outbound lands — useful both for understanding and for demos.

Screencast-safe view — --sanitize

Recording a demo or screenshot of occasio eyes against a real session normally leaks your identity: home path (C:\Users\<you>\...), OS username, git email, real name, hostname. The --sanitize flag replaces those with deterministic pseudonyms in the display only — disk contents under ~/.occasio/eyes/ are unchanged so your audit trail stays real.

occasio claude --eyes --sanitize    # capture as normal
occasio eyes --sanitize             # view with identity scrubbed

In the browser UI a cyan dot and (sanitized) badge confirm it's active. Paths like C:\Users\<you>\Desktop\proj become /home/user-7c/Desktop/proj, stable within a session.

What --sanitize covers: $HOME paths, OS username, git user.email / user.name, hostname, and identity-carrying env vars (USER, USERNAME, LOGNAME, HOME, USERPROFILE).

What it does not cover — review before sharing:

  • Project paths outside $HOME (e.g. D:\Work\Acme\…)
  • Git remote URLs in tool outputs (github.com:org/repo leaks the org name)
  • File contents — your name in a comment, commit message, or README is not auto-detected. Sanitize keys off identity values it can discover from the OS and git, not arbitrary substrings.
  • The Claude Code TUI banner ("Welcome back X", organization line) — that prints before any HTTP traffic and bypasses Eyes entirely. Crop it from the screencast manually.

The flag is a display filter, not a recording mode. The same Eyes capture can be replayed unsanitized later (just run occasio eyes without the flag).

Dashboard vs. Eyes

Both run as local browser UIs but answer different questions:

occasio dashboard (3001)occasio eyes (3002)
FocusSession-level metrics: cost, savings, tokensPer-exchange traffic: what went out, what came back
GranularityAggregate counters + per-request summary tableFull HTTP bodies, decoded SSE, local tool outputs
Capture neededNo — reads session.json + daily logsYes — pass --eyes to the proxy (opt-in)
Data scopeMetadata onlyFull payload bytes (kept locally under ~/.occasio/eyes/)
Best for"How much have I spent today?""What did the agent actually send to Anthropic?"

Both live on 127.0.0.1 only. No CORS, no auth, no external network.


Commands

CommandWhat it does
occasio (no args)Unified live snapshot of the active run
occasio claude [args]Start Claude Code with Occasio proxy active
occasio registerRegister claude shell alias
occasio doctorSetup health-check
occasio doctor --paranoidAnti-SaaS proof scan (--watch <s>, --sign, --json)
occasio liveTerminal watcher on the active session (Ctrl-C to exit)
occasio statusSession totals + savings breakdown
occasio explain <event_id>Show what a single chain event records and why
occasio replayRun-level audit (--detail, --run <id>, --attribute)
occasio inspectPer-request cloud-boundary manifest
occasio boundaryThree-column view: produced / re-entered / prevented
occasio ledgerPer-request token ledger
occasio distillInspect distilled tool outputs
occasio dashboardLive browser dashboard at http://localhost:3001 (session metrics)
occasio eyesBrowser UI at http://127.0.0.1:3002 (per-exchange traffic, capture opt-in via --eyes)
occasio audit verifyRe-walk the SHA-256 audit chain end-to-end
occasio audit repair --file <path>Truncate a crash-partial trailing line (writes .bak)
occasio reportGovernance summary export (--days N, --format csv)
occasio anomaliesEDR detection over the audit chain (--window 15m, --json)
occasio attest --run-id <uuid>Build a behavioral attestation predicate v1
occasio attest --signSigstore-sign via GitHub Actions OIDC
occasio attest verify <file>Re-verify a signed attestation end-to-end
occasio receipt [--run <id>] [--sign]Small shareable run summary (--out file, --json)
occasio bom export [--run <id>]CycloneDX 1.6 ML-BOM from a run slice (--out file)
occasio compliance export [--run <id>]Auditor bundle: chain + receipt + BOM + framework mapping
occasio policy [show | validate | init | doctor]Policy authoring + diagnosis
occasio harnessRun scripted adversarial scenarios against your policy
occasio redteamAutonomous tester-LLM probes a subject Claude Code session
occasio computer-use --dry-runApply a Computer-Use policy to synthetic tool_use blocks
occasio demo attestEnd-to-end attestation pipeline against a synthetic chain
occasio demo anomaliesEDR smoke test: synthetic adversarial chain → all 4 detectors
occasio selftestIn-process governance self-checks on a scratch chain
occasio baseline [learn | compare]Per-project behavior baseline + drift detection
occasio preflightRead-only mine of recent activity for policy suggestions

Session-level overrides on top of policy.yml:

FlagEffect
--preset strictForces block_secrets_in_tool_results on for the session
--preset offPure passthrough, log only
--budget <N>Hard cap: HTTP 402 once session cost reaches $N
--hardenedRoutes Read/Glob/Grep through unified runtime + distill + secret scan
--eyesCapture outbound + inbound payloads for occasio eyes browser UI

What it does, in four layers

Under the hood, four layers do the work — Layers 1–2 every run, Layers 3–4 when you ask for an attestation or run the detectors.

Layer 1 — Tool-call interception. A local proxy sits between the agent and the Anthropic API. Read, Glob, Grep, TodoRead/TodoWrite run in-process on your machine; the file bytes never enter the outbound request. A curated set of read-only shell commands (git status, git log --oneline -N, with or without git -C <path>, plus echo / cd cwd-prefix chains) are also executed in-process. Other shell reads (cat <file> and similar) are policy-analyzed for embedded read paths so deny_paths enforces consistently, but the command itself executes server-side via the Bash tool.

Layer 2 — Policy enforcement. Every tool call hits one decision: LOCAL / PASS / BLOCK / TRANSFORM, driven by policy.yml. deny_paths is enforced on the realpath-resolved absolute path so symlinks and traversal variants resolve to the same denial. block_secrets_in_tool_results redacts API keys and JWTs out of any tool output before it re-enters the prompt. Hot-reload: edits to policy.yml take effect on the next call, with a policy_loaded row written to the audit chain. The strict template adds the identity gate — deny_commands block exfiltration behaviours (env dumps, secret-name greps) and identity_approval gates identity borrows (ssh / az / sudo) behind a single-use, human-approved token (see Identity gate).

Layer 3 — Behavioral attestation. occasio attest --run-id <uuid> produces a self-contained JSON predicate that commits to the full audit-chain slice for one agent session: every tool call, every block, every transform, every redacted secret, plus the active policy's SHA-256 hash and rules digest. --sign wraps it in an in-toto Statement v1 and Sigstore-signs it using GitHub Actions OIDC (no key management). The predicate type URI is agent-attestation/v1. Two independent reference verifiers ship — Node (occasio attest verify) and Python (docs/attest_verify.py) — and the test suite asserts they agree byte-for-byte on the same payload.

Layer 4 — Anomaly detection (EDR). occasio anomalies runs four detectors over a time window of the audit chain: deny-rate spike, file-read-volume burst, previously-unseen tool-input shape, secret-redaction-rate spike. Severity escalates against your historical baseline — roughly a ×10–×20 ratio above normal triggers HIGH at the detector level; against a sparse normal baseline the observed multipliers in practice land between ×100 and ×1000. See docs/edr-demo.md for the reproducible defense-in-depth walkthrough.


Architecture

agent (Claude Code / Cline / MCP / Computer Use)
  │
  ▼  tool call
┌──────────────────────────────────────────────────────────────┐
│  Occasio proxy                                            │
│                                                              │
│  Layer 1: adapter parse → canonical event                    │
│  Layer 2: policy decision (LOCAL / PASS / BLOCK / TRANSFORM) │
│  Layer 2: deny_paths + deny_patterns + secret redaction      │
│  Layer 2: native dispatch for LOCAL/TRANSFORM tools          │
│           ──► row appended, SHA-256-chained                  │
│  Layer 4: anomaly detectors (windowed, on-demand or live)    │
└──────────────────────────────────────────────────────────────┘
  │
  ▼  cloud-bound: only PASS calls, with shaped result if TRANSFORM
Anthropic API

End of session
  │
  ▼  occasio attest --run-id … --sign
Layer 3: signed in-toto Statement → Sigstore bundle → GitHub Check Run
  │
  ▼  independent verifier
Node / Python / cosign — all must agree

Verification

Three independent checks, all required for a verified attestation:

  1. Sigstore signature — Fulcio certificate chain + Rekor inclusion proof. Verifiable by any sigstore-conformant tool (cosign verify-blob, sigstore-js, sigstore-python).
  2. DSSE payload ↔ attestation predicate equivalence — re-decode the in-toto Statement inside the bundle, canonicalise the predicate via RFC 8785 subset, compare byte-for-byte with the attestation predicate (minus the signature metadata field).
  3. Audit chain integrity — SHA-256-walk every prev_hash → hash link from the GENESIS sentinel, then assert the attestation's first_hash and last_hash appear in the chain in the right relative order.

Two reference verifiers ship side by side:

  • Node: occasio attest verify <file>
  • Python: python docs/attest_verify.py <file> — stdlib + optional sigstore-python, reuses docs/audit_walker.py for the chain step. See docs/python-verifier.md.

Cross-language invariant (asserted in the test suite as xlang: and xlang-float: cases): both verifiers agree byte-for-byte on the predicate-equivalence and audit-chain steps for the same payload, including tamper-detection cases. Non-integer numbers are rejected by both canonicalize implementations so a future schema cannot silently introduce divergence.

The Sigstore signature step uses the standard DSSE-wrapped in-toto Statement format; any sigstore-conformant tool verifies it (cosign verify-blob, sigstore-js, sigstore-python). The test suite mocks the signing path; a real-OIDC end-to-end signed-and-verified round-trip requires a GitHub Actions environment and is exercised by the integrations/attest-action/ workflow in CI.

A third partial verifier runs in-browser at integrations/attest-view/ for drag-and-drop inspection. The browser performs the predicate-equivalence and audit-chain steps but defers Sigstore certificate-chain verification to one of the two CLIs (bundling Fulcio/Rekor trust roots in-browser is intentionally not done; the page is explicit about it).


Why now

Three regulatory drivers, all converging on the same requirement: runtime evidence of AI-agent behavior must be cryptographically verifiable.

  • EU AI Act Art. 12 mandates comprehensive automated logging of high-risk AI systems. In effect from 2026 for regulated sectors.
  • NIST AI RMF (GOVERN, MEASURE, MANAGE families) is becoming required in US Federal procurement and is influencing FedRAMP AI controls.
  • SOC 2 Common Criteria are extending to AI-agent controls — auditors at major firms started asking "show me the agent's tool-call log" in 2026 audits.

There is currently no off-the-shelf product producing a signed, third-party-verifiable artifact for what an AI coding agent did inside your CI. Occasio fills that gap with an open schema (Apache-2.0) and ships the reference implementations for it.


Log format

All data is stored locally at ~/.occasio/:

~/.occasio/
  pipeline-events.jsonl        # tamper-evident audit chain (SHA-256 linked)
  policy.yml                   # active policy
  session.json                 # current run_id, totals
  logs/YYYY-MM-DD.jsonl        # per-request log
  baseline/<cwd-hash>.json     # per-project behavior baseline (opt-in)
  eyes/                        # `occasio eyes` capture (opt-in via --eyes)
    payload-NNNNNN.json        # per-exchange metadata + extracted blocks
    content/<sha>              # content-addressed blob store (file bytes,
                               # tool outputs) — dedup by SHA-256

The audit-chain row schema is documented in docs/AUDIT.md. Each row carries prev_hash and hash (SHA-256 hex), with the first row chained from a fixed GENESIS sentinel (64 zeros). occasio audit verify and docs/audit_walker.py are independent implementations of the walker.


Demos

  • EDR defense-in-depth — real Claude Code attacking a denied path under your policy, all blocks held, EDR fires HIGH ×100–×1000 over baseline. Reproducible in <2 minutes.
  • Reference Pipeline — PR with AI-agent → GitHub Action signs attestation via Sigstore keyless → Check Run on the PR → independent verification offline.
  • Cross-protocol governance — the same deny_paths rule producing identical BLOCK rows under Claude Code's HTTP proxy and the MCP server.

Reference

  • spec/agent-attestation/v1/README.md — predicate type specification
  • schemas/agent-attestation-v1.json — authoritative JSON Schema
  • docs/AUDIT.md — audit-chain row schema and canonical-serialisation rules
  • docs/compliance-mapping.md — SOC 2 Common-Criteria mapping
  • docs/python-verifier.md — independent Python verifier
  • docs/edr-demo.md — defense-in-depth walkthrough
  • docs/reference-pipeline.md — end-to-end CI pipeline
  • integrations/attest-action/ — GitHub Action that signs + posts a Check Run
  • integrations/attest-view/ — static browser viewer for attestation files

Requirements

  • Node.js ≥ 18
  • Claude Code (npm install -g @anthropic-ai/claude-code) — or any agent that respects ANTHROPIC_BASE_URL
  • Python 3 (optional) — required for the independent verifier and LAO context trimming
  • sigstore-python (optional) — adds the cryptographic Sigstore step to the Python verifier

License

Occasio is open source under the Apache License 2.0, including an explicit patent grant for safe enterprise use. Versions 0.6.6 and earlier were released under the MIT License and remain MIT in perpetuity for those releases.

Contributions are accepted under Apache-2.0; please sign off your commits per the DCO (git commit -s).

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Registryactive
Package@occasiolabs/occasio
TransportSTDIO
UpdatedMay 28, 2026
View on GitHub