cliproxy-plugin-opencode-cloak AGENTS.md

Repository instructions for a Go shared library loaded by another program through C’s dynamic-library interface. The library is built as a C-compatible shared object, not as a standalone command-line program.

In plain words
What is it for?
Use them when building, testing, formatting, vetting, or reviewing the cliproxy-plugin-opencode-cloak library and its CI requirements.
Why use it?
They explain the project’s build constraints, required checks, and division of responsibilities so changes do not break the host integration.

Instructions file for CodexOpenCode

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/conversun/cliproxy-plugin-opencode-cloak/agents-md
Clone the repo
git clone --depth 1 https://github.com/conversun/cliproxy-plugin-opencode-cloak

Made for: Codex, OpenCode.

Per session 1,748 This file is loaded in full into every session.
When invoked 1,748 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.01748 $0.01748
Opus 5 $0.00874 $0.00874
Sonnet 5 $0.00350 $0.00350
Haiku 4.5 $0.00175 $0.00175

Measured 2d ago against content hash 95e44095dfa3, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

cliproxy-plugin-opencode-cloak AGENTS.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

AGENTS.md · 108 lines

How it starts

The opening of the file, as written. The whole thing — 108 lines — stays where its author put it; the contents beside it link to each section on GitHub.

AGENTS.md

What this repo is

A C-ABI shared library, not a program. Single flat Go package main at the repo root, built with -buildmode=c-shared and loaded via dlopen by a CLIProxyAPI host. func main() {} is intentionally empty — never "fix" it. Read README.md for the product-level contract (activation gates, config fields, division of labor with the host).

Commands

make build   # go build -buildmode=c-shared -o bin/opencode-cloak.$EXT .  (EXT auto: dylib/so/dll)
make test    # go test ./... -count=1
make vet     # go vet ./...
make fmt     # gofmt -w .

CI (.github/workflows/ci.yml) runs, in order: gofmt check → go vet → go test → c-shared build, on ubuntu-latest + macos-latest. The gofmt gate is test -z "$(gofmt -l .)" — any unformatted file fails the build, so run make fmt before finishing.

Single test: go test -run TestName -v. There is no lint tool beyond gofmt + go vet.

Build constraints

  • CGO is mandatory (CGO_ENABLED=1); make build relies on the default being on.
  • Cross-compilation does not work. GOOS=linux go build on macOS fails in runtime/cgo. Release artifacts come from a 5-runner matrix in .github/workflows/release.yml (linux/darwin × amd64/arm64 plus windows/amd64), triggered by a v* tag. Never try to produce another platform's library locally.
  • bin/ is gitignored; bin/opencode-cloak.h is cgo-generated output, not source. The release build likewise rms the generated .h before packaging — the store installer rejects an archive that carries anything but the single dynamic library.

File map

File Role
main.go C ABI boundary (cgo preamble, exported symbols), handleMethod dispatch, YAML config parsing, plugin.register metadata
transform.go Activation gates + system[] rewrite; holds currentConfig (atomic pointer)
cloaking.go Paragraph-level sanitizer for opencode system text
cch.go Billing-header construction: cch hash + version suffix
useragent.go Canonical Claude Code User-Agent detection (gate only)
.github/scripts/package-release.go //go:build ignore CI packager: wraps the built library in the plugin-store zip layout (<id>_<ver>_<goos>_<goarch>.zip, lib at zip root) and emits its sha256sum line

Read the full file on GitHub · 108 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 108 lines · 1,748 tokens per session scan A 95e44095dfa3

Subscribe to this mod's changes

cliproxy-plugin-opencode-cloak AGENTS.md is an instructions file published in the GitHub repository conversun/cliproxy-plugin-opencode-cloak (8 stars, last pushed 20d ago), licensed MIT. It adds 1,748 tokens to every session, about $0.0087 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.