archguardian: Skill for Claude Code

.claude/skills/dismiss/SKILL.md

dismiss is a skill for Claude Code from ysfAskri/archguardian. It costs 11 tokens per session (376 once invoked), scanned A, original, MIT.

A skill for telling Archguardian, a code-scanning tool, to ignore a specified finding pattern in future scans. A finding pattern is a recurring warning identified by a rule, message, or file scope.

In plain words
What is it for?
Use it to dismiss a rule, optionally limit the dismissal to a message pattern or file glob, inspect existing dismissals, or remove one.
Why use it?
It prevents known, accepted warnings from repeatedly appearing in later scan results. Dismissals are stored in the project so they can be reviewed or removed.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

This is ysfAskri/archguardian's own configuration. It tells Claude Code how to work on archguardian itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything archguardian configures →

Reuse

Borrowing it

Nothing to install: this file belongs to ysfAskri/archguardian. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/ysfAskri/archguardian/master/.claude/skills/dismiss/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/ysfAskri/archguardian

Made for: Claude Code.

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 dismiss

README.md
[![agentmods](https://agentmods.dev/badge/skills/ysfaskri/archguardian/dismiss.svg)](https://agentmods.dev/skills/ysfaskri/archguardian/dismiss)
Your own site
<a href="https://agentmods.dev/skills/ysfaskri/archguardian/dismiss"><img src="https://agentmods.dev/badge/skills/ysfaskri/archguardian/dismiss.svg" alt="Measured on agentmods" height="20"></a>
Per session 11 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 376 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00011 $0.00376
Opus 5 $0.00005 $0.00188
Sonnet 5 $0.00002 $0.00075
Haiku 4.5 $0.00001 $0.00038

Measured 8d ago against content hash 6fc4ae164fee, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

dismiss 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 8d 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.

.claude/skills/dismiss/SKILL.md · 46 lines

What it actually says

archguardian dismiss

Dismiss a finding pattern so it no longer appears in future archguardian scans.

Instructions

  1. Run the dismiss command with the specified rule ID:

    npx archguardian dismiss <ruleId> $ARGUMENTS
    
  2. If the user wants to scope the dismissal, add optional flags:

    • --pattern "message" — Dismiss only findings matching a specific message pattern
    • --file "glob" — Dismiss only findings in files matching the glob pattern

    Example:

    npx archguardian dismiss security/xss --pattern "innerHTML assignment" --file "src/legacy/**"
    
  3. After dismissing, show the user what was dismissed:

    • The rule ID that was dismissed
    • Any pattern or file scope that was applied
    • How many existing findings this would suppress
  4. Mention that dismissed findings are stored in .archguard/memory.json and can be reviewed or removed later.

  5. If the user wants to see current dismissals:

    cat .archguard/memory.json
    

Tips

  • Dismissed patterns persist across scans and are stored in .archguard/memory.json.
  • To undo a dismissal, the user can edit .archguard/memory.json directly or run the dismiss command again with --remove.
  • Prefer scoped dismissals (--pattern or --file) over blanket rule dismissals to keep coverage high.
  • If the finding is a one-off false positive, suggest using /suppress with an inline comment instead.
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. 8d ago First seen · 46 lines · 11 tokens per session scan A 6fc4ae164fee

Subscribe to this mod's changes

dismiss is a skill published in the GitHub repository ysfAskri/archguardian (4 stars, last pushed 6mo ago), licensed MIT. It adds 11 tokens to every session and 376 once invoked, about $0.0001 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 skills, from other repositories

repo-onboarding

Systematically map an unfamiliar codebase before changing it — entry points, build/test loop, conventions, data flow. Use when starting work in a repo you haven't seen, or asked "how does this codebase work?".

jnMetaCode/skillet · 48 tokens

code-to-diagram

Analyze codebases and automatically generate architecture diagrams, flowcharts, and org charts. Uses AST parsing to map import dependencies for Python, JS/TS, Go, and Java, outputting Mermaid or SVG files. Triggered when users ask to visualize code architecture, understand dependencies, draw a flowchart, or create a…

zebbern/claude-code-guide · 74 tokens

remindb-setup

Config-first setup wizard for a remindb MCP server — run it as /remindb-setup (interactive), /remindb-setup automode (hands-off), or /remindb-setup only-config (bridge hosts: author .remindb/ only, no env wiring). Two passes. First-time (no server attached yet): detect the host, author the .remindb/ config…

radimsem/remindb · 202 tokens

pre-edit-safety-gate

Prepare a safe, current, and maintainable code change before editing. Use before a cohesive code or workflow change to assess the request and existing structure, then choose a local change, reuse, extension, or necessary refactor with clear ownership. Do not use to block ordinary TDD or authorized refactors.

rexleimo/aios · 68 tokens

remember

Front door for long-term memory backed by a remindb MCP server. Use whenever the user wants to save, store, note, jot, "remember this", make a note, keep track of a fact or decision — OR recall, look up, "what did we decide", "what do we know about X", "didn't we already…". Fires on the generic remember/recall intent…

radimsem/remindb · 113 tokens

nosql-database-design

Designs a NoSQL data model by leading with access pattern analysis. Covers DynamoDB single-table design (PK/SK/GSI) and MongoDB embedding vs referencing, consistency models, and capacity planning. Invoked when the user asks to design a DynamoDB schema, MongoDB data model, or NoSQL data model.

soulcodex/agentic · 71 tokens