sharp-edges

sharp-edges is a skill for Claude Code, Codex from NOMARJ/sigil. It costs 68 tokens per session (710 once invoked), scanned A, original, Apache-2.0.

Identify error-prone APIs, dangerous configurations, and footgun designs in code. Part of the Nomark Method Layer 1 security scanning. Use whenever reviewing code for safety, someone asks 'is this code safe', 'dangerous patterns', 'footgun check', or when analyzing code that uses complex or risky APIs.

Skill for Claude CodeCodex

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 skills/nomarj/sigil/sharp-edges
Any agent
npx skills add NOMARJ/sigil --skill sharp-edges
Clone the repo
git clone --depth 1 https://github.com/NOMARJ/sigil

Made for: Claude Code, Codex.

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 sharp-edges

README.md
[![agentmods](https://agentmods.dev/badge/skills/nomarj/sigil/sharp-edges.svg)](https://agentmods.dev/skills/nomarj/sigil/sharp-edges)
Your own site
<a href="https://agentmods.dev/skills/nomarj/sigil/sharp-edges"><img src="https://agentmods.dev/badge/skills/nomarj/sigil/sharp-edges.svg" alt="Measured on agentmods" height="20"></a>
Per session 68 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 710 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
Origin unknown 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.00068 $0.00710
Opus 5 $0.00034 $0.00355
Sonnet 5 $0.00014 $0.00142
Haiku 4.5 $0.00007 $0.00071

Measured today against content hash 5900c1ff1a63, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

sharp-edges scanned grade A 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 today.

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.

Runs shell commandslowCapability

Expected in a hook, worth knowing in a rule or an instructions file.

- `subprocess.call(shell=True)` or `os.system()` with string interpolation
packs/security/skills/owasp-security/sharp-edges/SKILL.md · 80 lines

How it starts

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

Sharp Edges Detector

Adapted from Trail of Bits' sharp-edges skill. Identifies API usage patterns and code constructs that are technically valid but frequently lead to security vulnerabilities or reliability failures.

What You're Looking For

Dangerous Function Calls

  • eval(), exec(), Function() with user-controlled input
  • innerHTML, dangerouslySetInnerHTML with unsanitized data
  • subprocess.call(shell=True) or os.system() with string interpolation
  • pickle.loads(), yaml.load() (unsafe deserializer), JSON.parse() on untrusted input without schema validation
  • Math.random() or random.random() for security-sensitive operations (use crypto.randomBytes or secrets module)

SQL and Injection Vectors

  • String concatenation or template literals in SQL queries
  • ORM raw query methods with unparameterized input
  • LDAP, XPath, or command injection via string interpolation
  • GraphQL queries built from user input without validation

Concurrency and Race Conditions

  • TOCTOU (Time-of-Check-Time-of-Use) patterns: checking a condition and acting on it in separate operations
  • Shared mutable state without synchronization
  • Non-atomic read-modify-write sequences
  • File operations without proper locking

Path and File Operations

  • Path construction from user input without canonicalization
  • Directory traversal via ../ in user-supplied paths
  • Symlink following without verification
  • Temporary file creation with predictable names

Cryptographic Footguns

  • MD5 or SHA1 for password hashing (use bcrypt, scrypt, or argon2)
  • ECB mode for encryption
  • Hardcoded IVs or nonces
  • Custom cryptographic implementations
  • Insufficient key lengths

Type and Memory Safety

  • Unchecked type assertions/casts
  • Integer overflow in arithmetic used for allocation or indexing
  • Buffer operations without bounds checking
  • Null pointer dereference patterns

Scan Protocol

1. Parse the changed files into AST (or analyze textually for config files)
2. Walk the AST looking for known dangerous patterns
3. For each finding, assess:
   - Is the input user-controlled? (worse) or internal? (less bad)
   - Is there sanitization/validation nearby? (might be OK)
   - Is this in a test file? (lower severity)
4. Classify and report

Read the full file on GitHub · 80 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. today First seen · 80 lines · 68 tokens per session scan A 5900c1ff1a63

Subscribe to this mod's changes

sharp-edges is a skill published in the GitHub repository NOMARJ/sigil (5 stars, last pushed today), licensed Apache-2.0. It adds 68 tokens to every session and 710 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-04.

Related

Other skills, from other repositories

sftp-cc

通用 SFTP 上传工具,通过自然语言触发,将本地项目文件上传到远程服务器。支持增量上传、私钥自动绑定与权限修正。.

toohamster/sftp-cc · 41 tokens

devtools-event-client

Create typed EventClient for a library. Define event maps with typed payloads, pluginId auto-prepend namespacing, emit()/on()/onAll()/onAllPluginEvents() API. Connection lifecycle (5 retries, 300ms), event queuing, enabled/disabled state, SSR fallbacks, singleton pattern. Unique pluginId requirement to avoid event…

TanStack/devtools · 79 tokens

genbench

Run Vendo's buy-vs-build generation benchmark — generation time + accuracy of the real Vendo pipeline vs raw-Claude baselines (diy, claude-code) on JSON-defined worlds. Use when asked to benchmark generation, compare Vendo vs raw models, measure generation speed/cost, or add genbench worlds/cases.

runvendo/vendo · 70 tokens

jk

Jenkins CLI for controllers. Use when users need to manage jobs, pipelines, config.xml, runs, logs, artifacts, credentials, nodes, or queues in Jenkins. Triggers include "jenkins", "jk", "pipeline", "build", "job create", "job config", "config.xml", "run logs", "jenkins credentials", "jenkins node".

avivsinai/jenkins-cli · 78 tokens

blame

Show which regent step last modified each line of a file. Use when investigating file provenance or debugging.

regent-vcs/re_gent · 22 tokens

assess-patch-risk

Assess an immutable patch artifact's program impact, regression risk, and auto-merge eligibility. Use for generated patch files, provider pull-request diffs, or commit ranges when reviewers need evidence about affected runtime paths, contracts, tests, and recoverability. This skill is read-only and does not generate…

bex-co/bex-security · 77 tokens