Source profileQuality 82/100

gadievron/raptor/.claude/skills/code-understanding/SKILL.md

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.

Source repository stars
3,413
Declared platforms
0
Static risk flags
1
Last source update
2026-07-28
Source checked
2026-07-28

Decision brief

What it does—and where it fits

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.

Best for

  • 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

Not for

  • Tasks that require unconfirmed production actions or broad system permissions.
  • Environments where the pinned source and install steps cannot be inspected.

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexNot declaredNo explicit evidencePortability before use
Claude CodeNot declaredNo explicit evidencePortability before use
CursorNot declaredNo explicit evidencePortability before use
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/gadievron/raptor --skill ".claude/skills/code-understanding"
Safe inspection promptEditorial

Inspect the Agent Skill "code-understanding" from https://github.com/gadievron/raptor/blob/e63c1b0ae449516f50ab510226ceb09a0edb3895/.claude/skills/code-understanding/SKILL.md at commit e63c1b0ae449516f50ab510226ceb09a0edb3895. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

Workflow

What the source asks the agent to do

  1. 01

    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…

    Understand unfamiliar codebases quickly from an attacker's perspectiveTrace exact data flows from untrusted input to dangerous sinksFind all instances of a vulnerable pattern once one is identified
  2. 02

    When to Use

    Before scanning: Build context so scanner results make sense immediately

    Before scanning: Build context so scanner results make sense immediatelyDuring validation: Trace a finding's real path through the codeAfter a finding: Hunt for variants of the same pattern elsewhere
  3. 03

    Modes

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

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

    [CONFIG] Configuration

    Review the “[CONFIG] Configuration” section in the pinned source before continuing.

    Review and apply the “[CONFIG] Configuration” source section.
  5. 05

    [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.…

    Read actual code before making any claim. Do not rely on naming conventions or assumptions.Quote the exact line (file path + line number) as proof for every assertion.When tracing a flow, follow it until it terminates — don't stop at the first interesting function.

Permission review

Static risk signals and limitations

Reads files

low · line 60

The documentation asks the agent to read local files, directories, or repositories.

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

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score82/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars3,413SourceRepository attention, not individual Skill quality
Compatibility0 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
gadievron/raptor
Skill path
.claude/skills/code-understanding/SKILL.md
Commit
e63c1b0ae449516f50ab510226ceb09a0edb3895
License
NOASSERTION
Collected
2026-07-28
Default branch
main
View the original SKILL.md

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.

Alternatives

Compare before choosing

Computed 10042,015

coreyhaines31/marketingskills

ab-testing

When the user wants to plan, design, or implement an A/B test or experiment, or build a growth experimentation program. Also use when the user mentions "A/B test," "split test," "experiment," "test this change," "variant copy," "multivariate test," "hypothesis," "should I test this," "which version is better," "test two versions," "statistical significance," "how long should I run this test," "growth experiments," "experiment velocity," "experiment backlog," "ICE score," "experimentation program

Computed 997

event4u-app/agent-config

design-review

Use when the user says "review the design", "check the UI", or wants a comprehensive UI/UX review. Uses a 7-phase methodology covering interaction, responsiveness, accessibility, and more.

Computed 9831,966

K-Dense-AI/scientific-agent-skills

dask

Distributed computing for larger-than-RAM pandas/NumPy workflows. Use when you need to scale existing pandas/NumPy code beyond memory or across clusters. Best for parallel file processing, distributed ML, integration with existing pandas code. For out-of-core analytics on single machine use vaex; for in-memory speed use polars.

Computed 9831,966

K-Dense-AI/scientific-agent-skills

neurokit2

Use NeuroKit2 to build or audit reproducible research workflows for physiological time-series preprocessing, event/interval analysis, multimodal alignment, variability, and complexity. Trigger when code imports neurokit2 or needs its current APIs, schemas, and method-aware validation—not for diagnosis or device validation.