archguardian copilot-instructions.md

archguardian copilot-instructions.md is an instructions file for GitHub Copilot from ysfAskri/archguardian. It costs 752 tokens per session, scanned A, original, MIT.

Project instructions for Archguardian, a code checker that looks for security issues, AI-generated code smells, naming problems, duplicate code, and violations of architectural layers. It supports TypeScript, JavaScript, Python, Go, Rust, and Java.

In plain words
What is it for?
Use it to configure, build, test, type-check, and work on Archguardian. The project includes analyzers, parsers, Git hooks, metrics, plugins, and fixers.
Why use it?
It helps find code-quality and structure problems before they reach later review or production. It can also report results in terminal, JSON, or SARIF formats and supports selected automatic fixes.

Instructions file for GitHub Copilot

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/ysfaskri/archguardian/copilot-instructions
Clone the repo
git clone --depth 1 https://github.com/ysfAskri/archguardian

Made for: GitHub Copilot.

Wrote 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.

agentmods badge for archguardian copilot-instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/ysfaskri/archguardian/copilot-instructions.svg)](https://agentmods.dev/instructions/ysfaskri/archguardian/copilot-instructions)
Your own site
<a href="https://agentmods.dev/instructions/ysfaskri/archguardian/copilot-instructions"><img src="https://agentmods.dev/badge/instructions/ysfaskri/archguardian/copilot-instructions.svg" alt="Measured on agentmods" height="20"></a>
Per session 752 This file is loaded in full into every session.
When invoked 752 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.00752 $0.00752
Opus 5 $0.00376 $0.00376
Sonnet 5 $0.00150 $0.00150
Haiku 4.5 $0.00075 $0.00075

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

Security

Grade A, and why

archguardian copilot-instructions.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 3d 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.

.github/copilot-instructions.md · 71 lines

How it starts

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

archguardian

Pre-commit hook and CLI that catches security issues, AI-generated code smells, naming convention violations, code duplication, and architecture layer breaches. Works with TypeScript, JavaScript, Python, Go, Rust, and Java.

Project structure

src/
├── cli/          Commander.js entry, 8 commands, output formatters (terminal, JSON, SARIF)
├── core/         Pipeline orchestrator, config loader, diff parser, suppression directives, baseline mode, types
├── parsers/      ast-grep NAPI parser (TS/JS/Python/Go/Rust/Java) + AST utilities
├── analyzers/    Security, AI smells, conventions, duplicates, layer violations
├── plugins/      Dynamic plugin loader for external analyzers
├── llm/          LLM client (OpenAI, Anthropic, Gemini), prompt builder, file-based cache
├── fixers/       Auto-fix engine (remove unused imports, rename conventions)
├── metrics/      Run history tracker (.archguard/metrics.json)
├── hooks/        Git hook installer (direct + Husky)
└── utils/        Git operations, logging, perf timing

Build & test

  • npm run build — tsup → dist/
  • npm test — vitest (165 tests across unit, integration, e2e)
  • npm run typecheck — tsc --noEmit

Key conventions

  • ESM-only ("type": "module"), all imports use .js extensions
  • Node >= 18 required
  • AST parsing via ast-grep NAPI (native tree-sitter bindings, not WASM)
  • Tests in tests/unit/, tests/integration/, tests/e2e/ using vitest
  • Config file: .archguard.yml validated with Zod schemas
  • Pipeline: analyzers run in parallel → deduplicate → suppress inline → filter baseline → optional LLM enhance

CLI commands

archguardian init                                 Create config + install git hook
archguardian check [--format] [--update-baseline] Analyze staged changes
archguardian scan  [--format] [--update-baseline] Analyze full project
archguardian fix   [--dry-run]                    Auto-fix simple findings
archguardian learn [--apply]                      Infer conventions from codebase
archguardian rules [--json]                       List all built-in rules
archguardian metrics [--json]                     Show findings trend
archguardian dashboard [--port]                   Open web dashboard

Read the full file on GitHub · 71 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. 3d ago First seen · 71 lines · 752 tokens per session scan A 0d52015ad258

Subscribe to this mod's changes

archguardian copilot-instructions.md is an instructions file published in the GitHub repository ysfAskri/archguardian (4 stars, last pushed 6mo ago), licensed MIT. It adds 752 tokens to every session, about $0.0038 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.

Related

Other instructions, from other repositories

truecourse CLAUDE.md

Claude Code instructions for truecourse-ai/truecourse, covering truecourse — claude instructions, key files to keep updated, project layout, development commands and storage.

truecourse-ai/truecourse · 7,282 tokens

truecourse AGENTS.md

AGENTS.md instructions for truecourse-ai/truecourse, covering truecourse — codex instructions, key files to keep updated, project layout, development commands and rules.

truecourse-ai/truecourse · 689 tokens

PhpCodeArcheology CLAUDE.md

Instructions for PhpCodeArcheology/PhpCodeArcheology, covering claude.md — phpcodearcheology, project overview, language, tech stack and project structure.

PhpCodeArcheology/PhpCodeArcheology · 976 tokens

drift copilot-instructions.md

Instructions for mick-gsk/drift, covering drift — verbindliche arbeitsgrundlage für alle agenten, primärmodus bei prompt-engineering, zuerst das richtige primitive wählen, nicht verhandelbare schärferegeln and mindestvertrag für jeden guten prompt.

mick-gsk/drift · 3,275 tokens

drift drift-push-gates.instructions.md

Nutze diese Instruction, wenn ein Commit, ein Push oder eine Release-Vorbereitung im Drift-Repo ansteht. Sie ist die autoritative Gate-Quelle fuer Pre-Push-Anforderungen, Bypaesse und lokale CI-Pflichten.

mick-gsk/drift · 2,980 tokens

drift drift-quality-workflow.instructions.md

Nutze diese Instruction bei nicht-trivialen Aenderungen, Reviews oder Fix-Loops im Drift-Repo. Fokus: adversarialer Gegenreview, iterativer Fix-Loop, expliziter Freigabestatus und Human-in-the-Loop vor Merge.

mick-gsk/drift · 1,887 tokens