Borrowing it
Nothing to install: this file belongs to flankerhqd/cyvisguard. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/flankerhqd/cyvisguard/main/AGENTS.mdgit clone --depth 1 https://github.com/flankerhqd/cyvisguardWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/instructions/flankerhqd/cyvisguard/agents-md)<a href="https://agentmods.dev/instructions/flankerhqd/cyvisguard/agents-md"><img src="https://agentmods.dev/badge/instructions/flankerhqd/cyvisguard/agents-md.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.02164 | $0.02164 |
| Opus 5 | $0.01082 | $0.01082 |
| Sonnet 5 | $0.00433 | $0.00433 |
| Haiku 4.5 | $0.00216 | $0.00216 |
Grade C, and why
cyvisguard AGENTS.md scanned grade C with 1 finding 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 6d 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.
Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
`Cannot find module './###.js'`. Fix: kill it, `rm -rf apps/dashboard/.next`, How it starts
The opening of the file, as written. The whole thing — 162 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md
Orientation for AI agents working in this repo. Read this before editing. For a
visual tour of the architecture, run the dashboard and open /docs.
What this is
CyVisGuard — an open-source, self-contained reference implementation of an enterprise AI-agent security control plane. It sits between agents and the tools they can touch, and on every tool call decides: who is calling, on behalf of whom, and is the behavior still within the user's intent?
It is not demo-ware: the control-plane logic is real and auditable. What's scripted vs. live is labeled honestly (see Honesty).
- Stack: TypeScript pnpm monorepo, ESM, Node ≥ 20. Vitest for tests,
tsxfor scripts. Dashboard is Next.js 15 (App Router) + SSE. - Zero external runtime deps: no API keys, no DB, no network. Pure in-memory TS. The one optional exception is Ollama for S2 live mode (below).
Commands
pnpm install
pnpm test # vitest, ~84 tests across the control plane
pnpm typecheck # tsc --noEmit in every package
pnpm build # tsc build of all packages
pnpm dev # dashboard → http://localhost:4300
pnpm dev:headless # run scenarios in the terminal (apps/headless)
Before you claim a change works, all three gates must be green: pnpm test,
pnpm typecheck, and pnpm --filter @cyvisguard/dashboard build (the dashboard is
not covered by the package build/typecheck).
Layout
packages/ the control plane (each package = one layer/concern)
apps/dashboard live SOC dashboard (Next.js + SSE)
apps/headless terminal scenario runner
| package | role |
|---|---|
@cyvisguard/shared |
domain types, EventBus/CyEvent, and the 4 integration seams |
@cyvisguard/registry |
asset registration + config-fingerprint admission |
@cyvisguard/identity |
short-lived NHI identity, attestation, RFC-8693-style token exchange with nested act delegation chains, cascade revoke |
@cyvisguard/gateway |
PEP: policy enforcement + data-plane taint tagging + entity extraction |
@cyvisguard/policy |
pure-TS policy evaluator (integrity / task-scope / rate / data-flow / lethal-trifecta / step-up) + scope-extension arbitration |
@cyvisguard/intent |
natural-language task → structured task_context |
@cyvisguard/runtime-guard |
rule-based intent-alignment scoring + circuit breaker |
@cyvisguard/soc |
attack-chain reconstruction from the event stream |
@cyvisguard/agent-runtime |
LLMProvider + Ollama provider + a ReAct loop for live-injection mode |
@cyvisguard/scenario-engine |
scenario runners runMs1/runS2/runS2Live/runS3/runS4 |
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.
- 6d ago First seen · 162 lines · 2,164 tokens per session scan C 952cf8ffb42a
cyvisguard AGENTS.md is an instructions file published in the GitHub repository flankerhqd/cyvisguard (56 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 2,164 tokens to every session, about $0.0108 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
vscode oss-third-party-notices.instructions.md
Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.
spec-kit AGENTS.md
AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.