CtrlK
BlogDocsLog inGet started
Tessl Logo

code-understanding

Provides adversarial code comprehension for security research, mapping architecture, tracing data flows, and hunting vulnerability variants to build ground-truth understanding before or alongside static analysis.

55

Quality

61%

Does it follow best practices?

Run evals on this skill

Adds up to 20 points to the overall score

View guide

SecuritybySnyk

Critical

Do not install without reviewing

Fix and improve this skill with Tessl

tessl review fix ./.claude/skills/code-understanding/SKILL.md
SKILL.md
Quality
Evals
Security

Code Understanding Skill

This skill provides adversarial code comprehension for security research. It maps architecture, traces data flows, and hunts for vulnerability variants before or alongside static analysis.

Purpose

Complements scanning by building ground-truth knowledge of how code actually works:

  • Understand unfamiliar codebases quickly from an attacker's perspective
  • Trace exact data flows from untrusted input to dangerous sinks
  • Find all instances of a vulnerable pattern once one is identified
  • Build application context that improves scan signal and validation accuracy

When to Use

  • Before scanning: Build context so scanner results make sense immediately
  • During validation: Trace a finding's real path through the code
  • After a finding: Hunt for variants of the same pattern elsewhere
  • On unfamiliar code: Map architecture before launching any analysis

Modes

ModeCommand flagPurpose
Map--mapBuild high-level context: entry points, trust model, data paths
Trace--trace <entry>Follow one flow source → sink with full call chain
Hunt--hunt <pattern>Find all variants of a pattern across the codebase
Teach--teachExplain unfamiliar code, frameworks, or patterns in depth

Modes can be combined. Map → Trace → Hunt is the natural attack progression.


[CONFIG] Configuration

output_dir: resolved by raptor-run-lifecycle start understand
confidence_levels:
  high: "Direct code evidence — quote the line"
  medium: "Inferred from context — state the assumption"
  low: "Speculative — flag explicitly, verify before acting on"
flow_format: source → transform(s) → sink

[EXEC] Execution Rules

  1. Read actual code before making any claim. Do not rely on naming conventions or assumptions.
  2. Quote the exact line (file path + line number) as proof for every assertion.
  3. When tracing a flow, follow it until it terminates — don't stop at the first interesting function.
  4. When hunting variants, search the full codebase. Do not stop at the first match.
  5. When teaching, explain the mechanism, not just the name. Show the code that implements it.
  6. Produce structured output (context-map.json, flow-trace.json, variants.json) for integration with validation pipeline.
  7. libexec scripts: Run libexec/ scripts exactly as shown in the prompts — do not prepend bash, export commands, absolute paths, or additional shell logic. The permission system auto-approves libexec/raptor-* commands only when run in this exact form.

[GATES] MUST-GATEs

GATE-U1 [READ-FIRST]: Never describe how code works without reading it. If you haven't read a file, say so and read it before continuing.

GATE-U2 [ATTACKER-LENS]: When reading any code path, ask: where does trust transfer? Where are checks missing? Where does user input influence execution? These questions drive analysis, not just "does this code do what the comment says."

GATE-U3 [FULL-FLOW]: When tracing a data flow, follow every branch: happy path, error paths, middleware, async handlers. A missing check in an error path is still a missing check.

GATE-U4 [VARIANT-COMPLETE]: A variant hunt is not complete until the full codebase has been searched. If a pattern appears in one place, assume it appears in others until proven otherwise.

GATE-U5 [EVIDENCE-ONLY]: Confidence levels must match evidence. High confidence requires a quoted line. Medium requires a stated assumption. Low must be flagged and not acted on until verified.


[STYLE] Output Formatting

  • File references: path/to/file.py:42 format throughout
  • Flow format: source (file:line) → transform (file:line) → sink (file:line)
  • Confidence inline: (confidence: high — file:line) or (confidence: medium — assumed from X)
  • No red/green status indicators (perspective-dependent)
  • JSON outputs go to $WORKDIR/ for pipeline integration

Integration with Validation Pipeline

Shared inventory: MAP-0 runs build_checklist() to produce checklist.json with SHA-256 checksums per file. This is the same inventory used by /validate Stage 0. Coverage tracking (checked_by per function) is cumulative across both skills.

Checklist item schema (checklist.jsonfiles[].items[]):

FieldTypeValues / Notes
namestringFunction/global/macro/class name
kindstring"function", "global", "macro", "class"
line_startintFirst line of the item
line_endint|nullLast line (null if unknown)
signaturestringFull signature (functions only)
checked_bylist[str]Run IDs that have reviewed this item
metadataobjectLanguage-specific: visibility, params, return_type, attributes

The field is kind, not type. Source: core/inventory/extractors.CodeItem.

Output schemas are aligned with the validation pipeline's formats (attack-surface.json, attack-paths.json, findings.json).


Stages

StageModeGate(s)Output
Map--mapU1, U2context-map.json
Trace--traceU1, U2, U3, U5flow-trace-<id>.json
Hunt--huntU1, U4, U5variants.json
Teach--teachU1, U5none --- inline output

See stage-specific files for detailed instructions.

Optional: runtime probe (Map only)

If the target has a runnable binary, MAP-7 in map.md describes how to corroborate the static map with a sandbox(observe=True) probe. The runtime observation lands under a runtime_observation key in context-map.json with correlations against entry points and sinks — an entry point whose file the binary actually reads is "runtime-confirmed" rather than only structurally identified.

Skip when the target is library/source-only or when the operator has no consent to execute the binary.


Notice

This analysis is performed for defensive purposes, security research, and authorized security testing only.

Repository
gadievron/raptor
Last updated
First committed

Is this your skill?

If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.