Claude Skill

trailmark

Builds and queries multi-language source and binary code graphs for security analysis. Includes pre-analysis passes for blast radius, taint propagation, privilege boundaries, entry point enumeration, proxy/unresolved-call tracking, type/reference queries, structural traversal, gr

LLM Mart · 0 points · 5 views 0 listing impressions 0 install-command copies
Virus-scanned Reviewed automatically before listing.

Full trust report

Download trailofbits-skills-plugins_trailmark_skills_trailmark-123037e.zip · 14 KB
trailofbits/skills 7234 616 forks CC-BY-SA-4.0 Updated 9h ago
Part of trailofbits/skills — 100 skills

Install

skills CLI npx skills add https://github.com/trailofbits/skills/tree/main/plugins/trailmark/skills/trailmark
Claude Code claude plugin marketplace add https://llmmart.ai/marketplace.json && claude plugin install trailofbits-skills@llmmart
Git git clone https://github.com/trailofbits/skills.git

The skills CLI installs just this skill, for any of its supported agents. Claude Code installs the whole trailofbits/skills collection as a plugin from our marketplace. Git is the plain clone.

Skill manifest

Trailmark

Parses source code into a directed graph of functions, classes, calls, and semantic metadata for security analysis.

When to Use

  • Mapping call paths from user input to sensitive functions
  • Finding complexity hotspots for audit prioritization
  • Identifying attack surface and entrypoints
  • Understanding call relationships in unfamiliar codebases
  • Security review or audit preparation across polyglot projects
  • Adding LLM-inferred annotations (assumptions, preconditions) to code units
  • Importing external binary-analysis graphs to connect source and binary views
  • Querying transitive slices, entrypoint paths, subgraph edges, or type references
  • Producing graph evidence for one suspicious function or candidate finding
  • Pre-analysis before mutation testing (genotoxic skill) or diagramming

When NOT to Use

  • Single-file scripts where call graph adds no value (read the file directly)
  • Architecture diagrams not derived from code (use the diagramming-code skill or draw by hand)
  • Mutation testing triage (use the genotoxic skill, which calls trailmark internally)
  • Runtime behavior analysis (trailmark is static, not dynamic)

Rationalizations to Reject

Rationalization Why It's Wrong Required Action
"I'll just read the source files manually" Manual reading misses call paths, blast radius, and taint data Install trailmark and use the API
"Pre-analysis isn't needed for a quick query" Blast radius, taint, and privilege data are only available after preanalysis() Always run engine.preanalysis() before handing off to other skills
"The graph is too large, I'll sample" Sampling misses cross-module attack paths Build the full graph; use subgraph queries to focus
"Uncertain edges don't matter" Dynamic dispatch is where type confusion bugs hide Account for uncertain edges in security claims
"Single-language analysis is enough" Polyglot repos have FFI boundaries where bugs cluster Use the correct --language flag per component
"Complexity hotspots are the only thing worth checking" Low-complexity functions on tainted paths are high-value targets Combine complexity with taint and blast radius data
"The docs mention a version-gated method, so I can call it anywhere" Many environments still have Trailmark 0.2.x installed Check the installed version or probe feature availability before using v0.4+/v0.5+ features

Installation

MANDATORY: If trailmark is not found, install the CLI before doing anything else:

uv tool install trailmark

A tool install provides the CLI only — it does not make import trailmark resolvable. Run the Python snippets in this skill with uv run --with trailmark python -; that, not installation, is the fix for an import error or ModuleNotFoundError in a snippet.

DO NOT fall back to "manual verification", "manual analysis", or reading source files by hand as a substitute for running trailmark. The tool must be installed and used programmatically. If installation fails, report the error to the user instead of silently switching to manual code reading.

Version Gate

Trailmark 0.4.0 expands the graph model and query surface, and 0.5.0 adds a SQL parser, repository-link configuration, and richer entrypoint metadata. Before using a feature listed as v0.4+ or v0.5+, check the installed version:

trailmark --version 2>/dev/null || uv run trailmark --version 2>/dev/null

Compare the reported version numerically (not lexically). 0.4.0 or newer means the full v0.4 surface is available. The version command itself was added in 0.2.2, so a failure means either a pre-0.2.2 install or trailmark missing entirely — distinguish with trailmark analyze --help. When working programmatically, probe with hasattr() and fall back instead of assuming a v0.4-only method exists:

if hasattr(engine, "subgraph_edges"):
    edges = engine.subgraph_edges("tainted")
else:
    # v0.2 fallback: filter engine.to_json() edges whose endpoints
    # are both in engine.subgraph("tainted")
    edges = []

v0.2-safe baseline: CLI analyze, diff, entrypoints, augment, and --language auto; QueryEngine.from_directory(), callers_of(), callees_of(), paths_between(), ancestors_of(), reachable_from(), entrypoint_paths_to(), complexity_hotspots(), attack_surface(), summary(), to_json(), preanalysis(), annotate(), annotations_of(), nodes_with_annotation(), clear_annotations(), findings(), subgraph(), subgraph_names(), diff_against(), augment_sarif(), and augment_weaudit().

Added in 0.2.2: CLI --version flag and version subcommand.

Added in 0.3.x: the trailmark.parse module with module-level detect_languages() and supported_languages(). detect_languages() itself is v0.2-safe via from trailmark.query.api import detect_languages (kept as a deprecated alias in 0.3+); supported_languages() has no 0.2.x equivalent.

v0.4+ features: native diagram subcommand; expanded parser coverage; proxy nodes for unresolved calls; node origins; binary graph augmentation via augment_binary(); connect_subgraphs(); subgraph_edges(); generic_parameters(); and type_references().

v0.5+ features: sql parser (PostgreSQL-oriented schemas, tables, views, functions, procedures, dependencies); node kinds schema, table, view, procedure; .trailmark/links.toml repository-link configuration (see Repository Links below), including proxy.external:<symbol> nodes for declared external endpoints; repository links, unresolved-call proxies, and type_uses edges now materialize for single-language directory parses (0.4 emitted them only for polyglot parses); Solidity entrypoints detected from parser metadata (interfaces excluded; solidity_visibility, solidity_mutability, solidity_override, solidity_container_kind, and solidity_overridden_by node attributes); attack_surface() entries carry an attributes key when the node has attributes; TypeScript resolves receivers assigned with new ConcreteClass(); C# file-scoped namespaces.

v0.5.0 adds no new QueryEngine methods, so hasattr(engine, ...) cannot detect it. Gate v0.5 features on the reported version, or probe structurally:

from trailmark.models.nodes import NodeKind

has_v05 = "SCHEMA" in NodeKind.__members__  # sql kinds are 0.5+

Quick Start

# Auto-detect and merge every supported language under the tree
uv run trailmark analyze --language auto --summary {targetDir}

# Explicit languages (single language or comma-separated list)
uv run trailmark analyze --language rust {targetDir}
uv run trailmark analyze --language python,rust {targetDir}

# Complexity hotspots
uv run trailmark analyze --language auto --complexity 10 {targetDir}

# Entrypoint inventory and structural diff (v0.2-safe)
uv run trailmark entrypoints --language auto {targetDir}
uv run trailmark diff --language auto --repo {repoDir} main HEAD --json

# Version report (0.2.2+)
uv run trailmark --version

# v0.4+: native diagram command
uv run trailmark diagram -t {targetDir} -T call-graph -f main --depth 2

Programmatic API

# trailmark.parse is a 0.3+ module; on 0.2.x import detect_languages from
# trailmark.query.api instead (supported_languages has no 0.2.x equivalent)
from trailmark.parse import detect_languages, supported_languages
from trailmark.query.api import QueryEngine

# Ask the installed Trailmark build what it supports
supported_languages()
detect_languages("{targetDir}")

# Prefer auto for unknown or polyglot trees; use explicit lists when needed
engine = QueryEngine.from_directory("{targetDir}", language="auto")
engine = QueryEngine.from_directory("{targetDir}", language="python,rust")

engine.callers_of("function_name")
engine.callees_of("function_name")
engine.paths_between("entry_func", "db_query")
engine.complexity_hotspots(threshold=10)
engine.attack_surface()
engine.summary()
engine.to_json()

# Transitive slices and entrypoint path queries (v0.2-safe)
engine.ancestors_of("sensitive_sink")
engine.reachable_from("entry_func")
engine.entrypoint_paths_to("sensitive_sink")

# v0.4+: connect named subgraphs
if hasattr(engine, "connect_subgraphs"):
    engine.connect_subgraphs("tainted", "privilege_boundary")

# Run pre-analysis (blast radius, entrypoints, privilege
# boundaries, taint propagation)
result = engine.preanalysis()

# Query subgraphs created by pre-analysis
engine.subgraph_names()
engine.subgraph("tainted")
engine.subgraph("high_blast_radius")
engine.subgraph("privilege_boundary")
engine.subgraph("entrypoint_reachable")
if hasattr(engine, "subgraph_edges"):
    engine.subgraph_edges("tainted")

# Add LLM-inferred annotations
from trailmark.models import AnnotationKind

engine.annotate("function_name", AnnotationKind.ASSUMPTION,
                "input is URL-encoded", source="llm")

# Query annotations (including pre-analysis results)
engine.annotations_of("function_name")
engine.annotations_of("function_name",
                       kind=AnnotationKind.BLAST_RADIUS)
engine.annotations_of("function_name",
                       kind=AnnotationKind.TAINT_PROPAGATION)
engine.nodes_with_annotation(AnnotationKind.FINDING)
engine.clear_annotations("function_name", kind=AnnotationKind.ASSUMPTION)

# v0.4+: generic/type-reference and binary augmentation APIs
if hasattr(engine, "generic_parameters"):
    engine.generic_parameters("GenericTypeOrFunction")
if hasattr(engine, "type_references"):
    engine.type_references("function_name")
if hasattr(engine, "augment_binary"):
    engine.augment_binary("binary_graph.json")

Pre-Analysis Passes

Always run engine.preanalysis() before handing off to genotoxic or diagramming-code skills. Pre-analysis enriches the graph with four passes:

  1. Blast radius estimation — counts downstream and upstream nodes per function, identifies critical high-complexity descendants
  2. Entry point enumeration — maps entrypoints by trust level, computes reachable node sets
  3. Privilege boundary detection — finds call edges where trust levels change (untrusted -> trusted)
  4. Taint propagation — marks all nodes reachable from untrusted entrypoints

Results are stored as annotations and named subgraphs on the graph.

For detailed documentation, see references/preanalysis-passes.md.

Language Selection

Do not hardcode a stale language table in downstream workflows. Ask the installed Trailmark build what it supports:

from trailmark.parse import detect_languages, supported_languages

supported_languages()
detect_languages("{targetDir}")

CLI patterns:

# Auto-detect and merge
uv run trailmark analyze --language auto {targetDir}

# Explicit list for a known polyglot target
uv run trailmark analyze --language python,rust {targetDir}

As of Trailmark 0.5.0, parser names include: python, javascript, typescript, php, ruby, c, cpp, c_sharp, java, go, rust, solidity, cairo, circom, haskell, erlang, masm, swift, objc, kotlin, dart, move, tact, func, sway, rego, proto, thrift, graphql, and sql (added in 0.5.0; PostgreSQL-oriented, .sql files). Treat this list as documentation, not a source of truth; call supported_languages() on the installed build before relying on a parser.

Repository Links (v0.5+)

Parsers cannot see cross-language calls (FFI, RPC, IPC, contract invocation) or edges into external systems. Declare them in .trailmark/links.toml at the analysis root and Trailmark materializes the edges on every parse — this is a stable public configuration interface:

[[link]]
source = "backend:submit"
target = "contract:Verifier.verify"
kind = "calls"                 # any EdgeKind; defaults to calls
confidence = "certain"         # certain | inferred | uncertain; defaults to inferred
description = "JSON-RPC eth_call"

[[link]]
source = "backend:notify"
target = "payments-webhook"
target_external = true         # required because target is unresolved

Endpoint references may be exact node IDs or unique names/suffixes. Validation fails closed: ambiguous references, unknown internal endpoints, invalid enum values, and malformed TOML raise ValueError rather than silently weakening the graph. source_external = true / target_external = true permit an unresolved endpoint by creating a proxy.external:<symbol> node. Configured edges carry a configured_by = .trailmark/links.toml attribute so they are distinguishable from parser-derived edges.

Use this when the audit spans an FFI/RPC boundary the rationalization table warns about: declare the boundary edges first, then path and taint queries cross them like any other call edge.

Graph Model

Node kinds: function, method, class, module, struct, interface, trait, enum, namespace, contract, library, template; v0.4+ also materializes unresolved references as proxy nodes; v0.5+ adds schema, table, view, and procedure for SQL graphs.

Node origins: v0.4+ nodes may carry origin source, proxy, binary, or synthetic. v0.2 exports may omit origin.

Edge kinds: calls, inherits, implements, contains, imports; v0.4+ adds resolves_to, type_uses, specializes, and corresponds_to.

Edge confidence: certain (direct call, self.method()), inferred (attribute access on non-self object), uncertain (dynamic dispatch)

Per Code Unit

  • Parameters with types, return types, exception types
  • Cyclomatic complexity and branch metadata
  • Docstrings
  • Annotations: assumption, precondition, postcondition, invariant, blast_radius, privilege_boundary, taint_propagation, finding, audit_note (last two set by augment_sarif / augment_weaudit)

Per Edge

  • Source/target node IDs, edge kind, confidence level

Project Level

  • Dependencies (imported packages)
  • Entrypoints with trust levels and asset values
  • Named subgraphs (populated by pre-analysis)

Key Concepts

Declared contract vs. effective input domain: Trailmark separates what a function declares it accepts from what can actually reach it via call paths. Mismatches are where vulnerabilities hide:

  • Widening: Unconstrained data reaches a function that assumes validation
  • Safe by coincidence: No validation, but only safe callers exist today

Edge confidence: Dynamic dispatch produces uncertain edges. Account for confidence when making security claims.

Proxy nodes (v0.4+): Unresolved calls are preserved as nodes such as proxy.unresolved:<symbol>. Do not treat these as source code functions; use them to identify resolution gaps, dynamic dispatch, external APIs, or binary linkage candidates. v0.5+ also emits proxy.external:<symbol> nodes for endpoints declared external in .trailmark/links.toml.

Reachability is not taint: entrypoint_paths_to() and the taint subgraph answer different questions. Path queries report call-graph reachability; preanalysis taint marks nodes reachable from untrusted entrypoints as a coarse signal. Trailmark does not perform interprocedural taint analysis — do not present either as proof that attacker-controlled data reaches a sink.

Binary augmentation (v0.4+): engine.augment_binary() imports an external binary-analysis graph JSON file. Trailmark connects it to source nodes when possible; it does not disassemble binaries itself.

Subgraphs: Named collections of node IDs produced by pre-analysis. Query with engine.subgraph("name"). Available after engine.preanalysis().

Query Patterns

See references/query-patterns.md for common security analysis patterns.

See references/preanalysis-passes.md for pre-analysis pass documentation.

Use trailmark-finding-triage when the user has one concrete candidate finding, SARIF result, weAudit annotation, suspicious function, or report excerpt and needs a handoff-ready reachability and blast-radius evidence packet.

Use trailmark-variant-neighborhood after one seed issue is known and the user needs graph-derived variant candidates for variant-analysis, Semgrep, CodeQL, or manual review.

Files (skills)
  • agents
    • openai.yaml 242 B
      interface:
        display_name: "Trailmark"
        short_description: "Build and query source and binary graphs for security analysis"
        icon_small: "assets/trail-of-bits-mark.svg"
        icon_large: "assets/trail-of-bits-mark.svg"
        brand_color: "#D83A34"
      
  • assets
    • trail-of-bits-mark.svg 3 KB · in bundle
  • references
    • preanalysis-passes.md 5.6 KB
      # Pre-Analysis Passes
      
      Four passes that enrich the code graph before downstream skills (genotoxic,
      diagramming-code) consume it. Run via `engine.preanalysis()`.
      
      ## Contents
      
      - Blast radius estimation
      - Entry point enumeration
      - Privilege boundary detection
      - Taint propagation
      - Subgraph reference
      - Annotation reference
      
      ---
      
      ## 1. Blast Radius Estimation
      
      Counts how many nodes are reachable downstream (descendants) and upstream
      (ancestors) from each function. High blast radius means a bug in that
      function affects many others.
      
      **Annotation:** `AnnotationKind.BLAST_RADIUS` on every node.
      
      ```
      "12 downstream, 3 upstream; critical: db_query, auth_check"
      ```
      
      **Subgraph:** `high_blast_radius` — nodes with >= 10 downstream descendants.
      
      ```python
      engine.preanalysis()
      
      # All high-blast-radius nodes
      high = engine.subgraph("high_blast_radius")
      for node in high:
          print(f"{node['id']}: CC={node['cyclomatic_complexity']}")
      
      # Per-node annotation
      for ann in engine.annotations_of("handler",
                                        kind=AnnotationKind.BLAST_RADIUS):
          print(ann["description"])
      ```
      
      ---
      
      ## 2. Entry Point Enumeration
      
      Collects all entrypoints, groups them by trust level, and computes the
      full set of reachable nodes from any entrypoint.
      
      **Subgraphs:**
      
      | Name | Contents |
      |------|----------|
      | `entrypoints` | All entrypoint nodes |
      | `entrypoint_reachable` | Every node reachable from any entrypoint |
      | `entrypoints:untrusted_external` | Entrypoints at untrusted level |
      | `entrypoints:semi_trusted_external` | Entrypoints at semi-trusted level |
      | `entrypoints:trusted_internal` | Entrypoints at trusted level |
      
      ```python
      import json
      
      engine.preanalysis()
      
      # Nodes NOT reachable from any entrypoint (potential dead code)
      reachable_ids = {n["id"] for n in engine.subgraph("entrypoint_reachable")}
      graph = json.loads(engine.to_json())
      all_ids = set(graph["nodes"])
      dead_ids = sorted(all_ids - reachable_ids)
      ```
      
      On Trailmark 0.5.0+, Solidity entrypoints come from parser metadata rather
      than signature-line regexes: interface members are excluded,
      `external`/`public` visibility is read from `solidity_visibility`, and base
      implementations shadowed by a derived contract carry a
      `solidity_overridden_by` attribute. `engine.attack_surface()` surfaces these
      via each entry's optional `attributes` key (0.5.0+).
      
      ---
      
      ## 3. Privilege Boundary Detection
      
      Finds call edges where the source and target are reachable from entrypoints
      at different trust levels. These boundaries are where untrusted data crosses
      into trusted zones.
      
      **Annotation:** `AnnotationKind.PRIVILEGE_BOUNDARY` on boundary nodes.
      
      ```
      "trust transition across call: untrusted_external -> trusted_internal"
      ```
      
      **Subgraph:** `privilege_boundary` — all nodes sitting on a trust boundary.
      
      ```python
      engine.preanalysis()
      
      boundary = engine.subgraph("privilege_boundary")
      for node in boundary:
          anns = engine.annotations_of(
              node["id"], kind=AnnotationKind.PRIVILEGE_BOUNDARY)
          for a in anns:
              print(f"{node['id']}: {a['description']}")
      ```
      
      ---
      
      ## 4. Taint Propagation
      
      Propagates taint from every untrusted and semi-trusted entrypoint through
      call edges. Trusted entrypoints do not generate taint. Each tainted node
      is annotated with the entrypoint(s) that reach it.
      
      **Annotation:** `AnnotationKind.TAINT_PROPAGATION` on tainted nodes.
      
      ```
      "tainted via: handle_request, parse_input"
      ```
      
      **Subgraph:** `tainted` — all nodes reachable from any non-trusted entrypoint.
      
      This is call-graph reachability used as a coarse taint signal, not
      interprocedural data-flow analysis. Membership in `tainted` means an
      untrusted entrypoint can *reach* the node, not that attacker-controlled data
      demonstrably flows into it — verify data flow manually before claiming it.
      
      ```python
      engine.preanalysis()
      
      tainted = engine.subgraph("tainted")
      for node in tainted:
          anns = engine.annotations_of(
              node["id"], kind=AnnotationKind.TAINT_PROPAGATION)
          print(f"{node['id']}: {anns[0]['description']}")
      ```
      
      ---
      
      ## Subgraph Reference
      
      All subgraphs created by `engine.preanalysis()`:
      
      | Subgraph | Pass | Description |
      |----------|------|-------------|
      | `high_blast_radius` | Blast radius | Nodes with >= 10 downstream descendants |
      | `entrypoints` | Entry point enum | All entrypoint nodes |
      | `entrypoint_reachable` | Entry point enum | Union of all entrypoint-reachable nodes |
      | `entrypoints:{trust_level}` | Entry point enum | Entrypoints grouped by trust level |
      | `privilege_boundary` | Privilege boundary | Nodes on trust-level transitions |
      | `tainted` | Taint propagation | All nodes reachable from non-trusted entrypoints |
      
      Query any subgraph:
      
      ```python
      nodes = engine.subgraph("tainted")
      names = engine.subgraph_names()
      
      # Trailmark 0.4.0+
      if hasattr(engine, "subgraph_edges"):
          tainted_call_edges = engine.subgraph_edges("tainted", edge_kinds=("calls",))
      ```
      
      Use `subgraph_edges()` only after checking for Trailmark 0.4.0+ or probing the
      method. On v0.2.x, export `engine.to_json()` and filter edges whose endpoints
      are both in `engine.subgraph(name)`.
      
      ---
      
      ## Annotation Reference
      
      Annotations added by pre-analysis (source = `"preanalysis"`):
      
      | Kind | Pass | Description format |
      |------|------|--------------------|
      | `blast_radius` | Blast radius | `"N downstream, M upstream; critical: ..."` |
      | `privilege_boundary` | Privilege boundary | `"trust transition across call: X -> Y"` |
      | `taint_propagation` | Taint propagation | `"tainted via: ep1, ep2"` |
      
      Query annotations:
      
      ```python
      from trailmark.models import AnnotationKind
      
      engine.annotations_of("func", kind=AnnotationKind.BLAST_RADIUS)
      engine.annotations_of("func", kind=AnnotationKind.PRIVILEGE_BOUNDARY)
      engine.annotations_of("func", kind=AnnotationKind.TAINT_PROPAGATION)
      ```
      
    • query-patterns.md 8.7 KB
      # Trailmark Query Patterns for Security Analysis
      
      Common patterns for using Trailmark in security reviews.
      
      ## Version-Gated Queries
      
      Use v0.2-safe APIs unless the installed build is Trailmark 0.4.0 or newer, or
      the method exists when probed with `hasattr()`.
      
      ```python
      from trailmark.query.api import QueryEngine
      
      engine = QueryEngine.from_directory("{targetDir}", language="auto")
      
      if hasattr(engine, "subgraph_edges"):
          edges = engine.subgraph_edges("tainted")  # v0.4+
      else:
          # v0.2 fallback: filter exported edges by subgraph membership
          import json
          graph = json.loads(engine.to_json())
          member_ids = {node["id"] for node in engine.subgraph("tainted")}
          edges = [
              e for e in graph.get("edges", [])
              if e["source"] in member_ids and e["target"] in member_ids
          ]
      ```
      
      ## 1. Mapping Attack Surface
      
      Find all entrypoints and trace what they can reach:
      
      ```python
      from trailmark.query.api import QueryEngine
      
      engine = QueryEngine.from_directory("{targetDir}", language="auto")
      
      # All entrypoints
      for ep in engine.attack_surface():
          print(f"{ep['node_id']}: {ep['trust_level']} ({ep['kind']})")
          # Trailmark 0.5.0+ includes node attributes when present, e.g. Solidity
          # visibility/mutability and overridden-by metadata
          for key, value in ep.get("attributes", {}).items():
              print(f"  {key} = {value}")
      ```
      
      On 0.5.0+, Solidity entrypoints come from parser metadata: interface members
      are excluded, and a base implementation shadowed by a derived contract carries
      `solidity_overridden_by` naming the overriding method(s). Check that attribute
      before attributing reachability to the base implementation.
      
      ## 2. Complexity Hotspots
      
      High-complexity functions are more likely to contain bugs:
      
      ```python
      for hotspot in engine.complexity_hotspots(threshold=10):
          loc = hotspot["location"]
          print(
              f"{hotspot['id']}  "
              f"complexity={hotspot['cyclomatic_complexity']}  "
              f"{loc['file_path']}:{loc['start_line']}"
          )
      ```
      
      ## 3. Call Path Analysis
      
      Find how user input reaches a sensitive function:
      
      ```python
      paths = engine.paths_between("handle_request", "execute_query")
      for path in paths:
          print(" -> ".join(path))
      ```
      
      ## 4. Caller Analysis
      
      Find all callers of a security-sensitive function to check if they
      all validate input properly:
      
      ```python
      callers = engine.callers_of("execute_query")
      for caller in callers:
          print(f"{caller['id']} at {caller['location']['file_path']}:{caller['location']['start_line']}")
      ```
      
      ## 5. Reachability from Entrypoints
      
      Check if a function is reachable from any entrypoint:
      
      ```python
      paths = engine.entrypoint_paths_to("sensitive_function_id")
      if paths:
          print(f"Reachable via {len(paths)} path(s)")
      else:
          print("Not reachable from any entrypoint")
      ```
      
      ## 6. Transitive Slices
      
      Upward and downward transitive slices (v0.2-safe):
      
      ```python
      callers_to_sink = engine.ancestors_of("execute_query")
      downstream = engine.reachable_from("handle_request")
      ```
      
      Use `ancestors_of()` for "who could eventually reach this sink?" and
      `reachable_from()` for "what could this entrypoint or helper eventually call?"
      
      ## 7. Subgraph Connections
      
      After `engine.preanalysis()`, Trailmark 0.4.0+ can connect named subgraphs and
      return induced edges:
      
      ```python
      engine.preanalysis()
      
      if hasattr(engine, "connect_subgraphs"):
          paths = engine.connect_subgraphs("tainted", "privilege_boundary")
      if hasattr(engine, "subgraph_edges"):
          tainted_edges = engine.subgraph_edges("tainted")
      ```
      
      Use this when prioritizing tainted paths that cross trust boundaries.
      
      ## 8. Type and Generic Queries
      
      Trailmark 0.4.0+ records type references and generic parameters where parsers
      can extract them:
      
      ```python
      if hasattr(engine, "type_references"):
          refs = engine.type_references("deserialize_request")
      if hasattr(engine, "generic_parameters"):
          params = engine.generic_parameters("Container")
      ```
      
      Use these to find parser, deserializer, FFI, or generic-bound hotspots where
      declared types are narrower than the effective input domain.
      
      ## 9. Full Graph Export
      
      Export for use with other tools:
      
      ```python
      import json
      
      json_str = engine.to_json()
      with open("graph.json", "w") as f:
          f.write(json_str)
      
      # Current export includes: summary, nodes, edges, subgraphs.
      # Query attack_surface() and annotations_of() directly for entrypoint
      # metadata and per-node annotations.
      ```
      
      Trailmark 0.4.0+ exports proxy nodes for unresolved calls and may include
      `origin` on non-source nodes. Trailmark 0.5.0+ also exports
      `proxy.external:<symbol>` nodes for endpoints declared external in
      `.trailmark/links.toml`, and materializes proxies and `type_uses` edges for
      single-language parses (0.4 emitted them only for polyglot parses). Do not
      treat `origin=proxy` or `origin=binary` nodes as source locations during
      manual review.
      
      ## 10. Multi-Language Analysis
      
      Ask Trailmark which languages it supports, detect what exists under the
      target tree, then choose `auto` or an explicit list:
      
      ```python
      # trailmark.parse is a 0.3+ module; on 0.2.x import detect_languages from
      # trailmark.query.api instead (supported_languages has no 0.2.x equivalent)
      from trailmark.parse import detect_languages, supported_languages
      from trailmark.query.api import QueryEngine
      
      print(supported_languages())
      print(detect_languages("{targetDir}"))
      
      engine = QueryEngine.from_directory("{targetDir}", language="auto")
      engine = QueryEngine.from_directory("{targetDir}", language="python,rust")
      ```
      
      As of Trailmark 0.5.0, supported parser names include `python`, `javascript`,
      `typescript`, `php`, `ruby`, `c`, `cpp`, `c_sharp`, `java`, `go`, `rust`,
      `solidity`, `cairo`, `circom`, `haskell`, `erlang`, `masm`, `swift`, `objc`,
      `kotlin`, `dart`, `move`, `tact`, `func`, `sway`, `rego`, `proto`, `thrift`,
      `graphql`, and `sql` (0.5.0+). Treat this list as documentation, not a source
      of truth; on 0.3+ builds call `supported_languages()` before relying on it.
      
      ## 10a. Cross-Boundary Links (v0.5+)
      
      When the parser cannot see a call across an FFI/RPC/contract boundary,
      declare it in `.trailmark/links.toml` at the analysis root (see the SKILL.md
      Repository Links section for the format). The declared edges materialize on
      every parse, so path and reachability queries cross the boundary directly:
      
      ```python
      # .trailmark/links.toml declares backend:submit -> contract:Verifier.verify
      paths = engine.paths_between("submit", "verify")
      ```
      
      Configured edges carry a `configured_by` attribute naming the file. When a
      declared endpoint is external (`target_external = true`), it appears as a
      `proxy.external:<symbol>` node — treat it as a system boundary, not source.
      
      ## 11. CLI Patterns
      
      ```bash
      # Version check before v0.4-only commands (version CLI itself is 0.2.2+)
      uv run trailmark --version
      
      # Quick summary with auto-detection
      uv run trailmark analyze --language auto --summary {targetDir}
      
      # Analyze explicit languages
      uv run trailmark analyze --language rust --summary {targetDir}
      uv run trailmark analyze --language python,rust --complexity 8 {targetDir}
      
      # Entrypoint inventory
      uv run trailmark entrypoints --language auto {targetDir}
      
      # Structural diff between two refs or directories
      uv run trailmark diff --language auto --repo {repoDir} main HEAD --json
      
      # v0.4+: native diagram
      uv run trailmark diagram -t {targetDir} -T call-graph -f main --depth 2
      
      # Full JSON output for piping to other tools
      uv run trailmark analyze {targetDir} | jq '.nodes | to_entries[] | select(.value.cyclomatic_complexity > 10)'
      ```
      
      ## 12. Annotation Workflow
      
      Add semantic annotations after analyzing code with an LLM. Annotations
      persist on the in-memory graph and can be queried later:
      
      ```python
      from trailmark.models import AnnotationKind
      
      # Add annotations (returns False if node not found)
      engine.annotate("handle_request", AnnotationKind.ASSUMPTION, "input is URL-encoded", source="llm")
      engine.annotate("validate_token", AnnotationKind.PRECONDITION, "token is non-empty string", source="llm")
      
      # Query annotations on a specific function
      for ann in engine.annotations_of("handle_request"):
          print(f"[{ann['kind']}] {ann['description']} (source: {ann['source']})")
      
      # Filter by kind
      assumptions = engine.annotations_of("handle_request", kind=AnnotationKind.ASSUMPTION)
      
      # Clear annotations (all, or by kind)
      engine.clear_annotations("handle_request", kind=AnnotationKind.ASSUMPTION)
      engine.clear_annotations("handle_request")
      
      # Nodes with a given annotation
      finding_nodes = engine.nodes_with_annotation(AnnotationKind.FINDING)
      ```
      
      **Annotation kinds:** `ASSUMPTION`, `PRECONDITION`, `POSTCONDITION`, `INVARIANT`.
      Pre-analysis adds: `BLAST_RADIUS`, `PRIVILEGE_BOUNDARY`, `TAINT_PROPAGATION`.
      Audit augmentation adds: `FINDING`, `AUDIT_NOTE` (set by `augment_sarif()` /
      `augment_weaudit()`).
      
      **Source convention:** Use `"llm"` for LLM-inferred annotations, `"docstring"`
      for annotations extracted from source, `"manual"` for human-added annotations.
      
  • SKILL.md 17 KB
    ---
    name: trailmark
    description: "Builds and queries multi-language source and binary code graphs for security analysis. Includes pre-analysis passes for blast radius, taint propagation, privilege boundaries, entry point enumeration, proxy/unresolved-call tracking, type/reference queries, structural traversal, graph diffs, audit augmentation, declared cross-language/FFI/external links via `.trailmark/links.toml`, and SQL schema graphs. Use when analyzing call paths, mapping attack surface, finding complexity hotspots, enumerating entry points, tracing taint propagation, measuring blast radius, importing SARIF/weAudit/binary findings, linking source graphs across language or RPC boundaries, or building a code graph for audit prioritization. Feature-gate version-specific Trailmark APIs before using them; prefer `trailmark.parse.detect_languages()` or `--language auto` when the target language is unknown or polyglot."
    ---
    
    # Trailmark
    
    Parses source code into a directed graph of functions, classes, calls, and
    semantic metadata for security analysis.
    
    ## When to Use
    
    - Mapping call paths from user input to sensitive functions
    - Finding complexity hotspots for audit prioritization
    - Identifying attack surface and entrypoints
    - Understanding call relationships in unfamiliar codebases
    - Security review or audit preparation across polyglot projects
    - Adding LLM-inferred annotations (assumptions, preconditions) to code units
    - Importing external binary-analysis graphs to connect source and binary views
    - Querying transitive slices, entrypoint paths, subgraph edges, or type references
    - Producing graph evidence for one suspicious function or candidate finding
    - Pre-analysis before mutation testing (genotoxic skill) or diagramming
    
    ## When NOT to Use
    
    - Single-file scripts where call graph adds no value (read the file directly)
    - Architecture diagrams not derived from code (use the `diagramming-code` skill or draw by hand)
    - Mutation testing triage (use the genotoxic skill, which calls trailmark internally)
    - Runtime behavior analysis (trailmark is static, not dynamic)
    
    ## Rationalizations to Reject
    
    | Rationalization | Why It's Wrong | Required Action |
    |-----------------|----------------|-----------------|
    | "I'll just read the source files manually" | Manual reading misses call paths, blast radius, and taint data | Install trailmark and use the API |
    | "Pre-analysis isn't needed for a quick query" | Blast radius, taint, and privilege data are only available after `preanalysis()` | Always run `engine.preanalysis()` before handing off to other skills |
    | "The graph is too large, I'll sample" | Sampling misses cross-module attack paths | Build the full graph; use subgraph queries to focus |
    | "Uncertain edges don't matter" | Dynamic dispatch is where type confusion bugs hide | Account for `uncertain` edges in security claims |
    | "Single-language analysis is enough" | Polyglot repos have FFI boundaries where bugs cluster | Use the correct `--language` flag per component |
    | "Complexity hotspots are the only thing worth checking" | Low-complexity functions on tainted paths are high-value targets | Combine complexity with taint and blast radius data |
    | "The docs mention a version-gated method, so I can call it anywhere" | Many environments still have Trailmark 0.2.x installed | Check the installed version or probe feature availability before using v0.4+/v0.5+ features |
    
    ---
    
    ## Installation
    
    **MANDATORY:** If `trailmark` is not found, install the CLI before doing anything else:
    
    ```bash
    uv tool install trailmark
    ```
    
    A tool install provides the CLI only — it does not make `import trailmark` resolvable.
    Run the Python snippets in this skill with `uv run --with trailmark python -`; that, not
    installation, is the fix for an import error or ModuleNotFoundError in a snippet.
    
    **DO NOT** fall back to "manual verification", "manual analysis", or reading
    source files by hand as a substitute for running trailmark. The tool must be
    installed and used programmatically. If installation fails, report the error
    to the user instead of silently switching to manual code reading.
    
    ## Version Gate
    
    Trailmark 0.4.0 expands the graph model and query surface, and 0.5.0 adds a
    SQL parser, repository-link configuration, and richer entrypoint metadata.
    Before using a feature listed as **v0.4+** or **v0.5+**, check the installed
    version:
    
    ```bash
    trailmark --version 2>/dev/null || uv run trailmark --version 2>/dev/null
    ```
    
    Compare the reported version numerically (not lexically). `0.4.0` or newer
    means the full v0.4 surface is available. The version command itself was added
    in 0.2.2, so a failure means either a pre-0.2.2 install or trailmark missing
    entirely — distinguish with `trailmark analyze --help`. When working
    programmatically, probe with `hasattr()` and fall back instead of assuming a
    v0.4-only method exists:
    
    ```python
    if hasattr(engine, "subgraph_edges"):
        edges = engine.subgraph_edges("tainted")
    else:
        # v0.2 fallback: filter engine.to_json() edges whose endpoints
        # are both in engine.subgraph("tainted")
        edges = []
    ```
    
    **v0.2-safe baseline:** CLI `analyze`, `diff`, `entrypoints`, `augment`, and
    `--language auto`; `QueryEngine.from_directory()`, `callers_of()`,
    `callees_of()`, `paths_between()`, `ancestors_of()`, `reachable_from()`,
    `entrypoint_paths_to()`, `complexity_hotspots()`, `attack_surface()`,
    `summary()`, `to_json()`, `preanalysis()`, `annotate()`, `annotations_of()`,
    `nodes_with_annotation()`, `clear_annotations()`, `findings()`, `subgraph()`,
    `subgraph_names()`, `diff_against()`, `augment_sarif()`, and
    `augment_weaudit()`.
    
    **Added in 0.2.2:** CLI `--version` flag and `version` subcommand.
    
    **Added in 0.3.x:** the `trailmark.parse` module with module-level
    `detect_languages()` and `supported_languages()`. `detect_languages()` itself
    is v0.2-safe via `from trailmark.query.api import detect_languages` (kept as a
    deprecated alias in 0.3+); `supported_languages()` has no 0.2.x equivalent.
    
    **v0.4+ features:** native `diagram` subcommand; expanded parser coverage;
    proxy nodes for unresolved calls; node origins; binary graph augmentation via
    `augment_binary()`; `connect_subgraphs()`; `subgraph_edges()`;
    `generic_parameters()`; and `type_references()`.
    
    **v0.5+ features:** `sql` parser (PostgreSQL-oriented schemas, tables, views,
    functions, procedures, dependencies); node kinds `schema`, `table`, `view`,
    `procedure`; `.trailmark/links.toml` repository-link configuration (see
    Repository Links below), including `proxy.external:<symbol>` nodes for
    declared external endpoints; repository links, unresolved-call proxies, and
    `type_uses` edges now materialize for single-language directory parses (0.4
    emitted them only for polyglot parses); Solidity entrypoints detected from
    parser metadata (interfaces excluded; `solidity_visibility`,
    `solidity_mutability`, `solidity_override`, `solidity_container_kind`, and
    `solidity_overridden_by` node attributes); `attack_surface()` entries carry an
    `attributes` key when the node has attributes; TypeScript resolves receivers
    assigned with `new ConcreteClass()`; C# file-scoped namespaces.
    
    v0.5.0 adds no new `QueryEngine` methods, so `hasattr(engine, ...)` cannot
    detect it. Gate v0.5 features on the reported version, or probe structurally:
    
    ```python
    from trailmark.models.nodes import NodeKind
    
    has_v05 = "SCHEMA" in NodeKind.__members__  # sql kinds are 0.5+
    ```
    
    ## Quick Start
    
    ```bash
    # Auto-detect and merge every supported language under the tree
    uv run trailmark analyze --language auto --summary {targetDir}
    
    # Explicit languages (single language or comma-separated list)
    uv run trailmark analyze --language rust {targetDir}
    uv run trailmark analyze --language python,rust {targetDir}
    
    # Complexity hotspots
    uv run trailmark analyze --language auto --complexity 10 {targetDir}
    
    # Entrypoint inventory and structural diff (v0.2-safe)
    uv run trailmark entrypoints --language auto {targetDir}
    uv run trailmark diff --language auto --repo {repoDir} main HEAD --json
    
    # Version report (0.2.2+)
    uv run trailmark --version
    
    # v0.4+: native diagram command
    uv run trailmark diagram -t {targetDir} -T call-graph -f main --depth 2
    ```
    
    ### Programmatic API
    
    ```python
    # trailmark.parse is a 0.3+ module; on 0.2.x import detect_languages from
    # trailmark.query.api instead (supported_languages has no 0.2.x equivalent)
    from trailmark.parse import detect_languages, supported_languages
    from trailmark.query.api import QueryEngine
    
    # Ask the installed Trailmark build what it supports
    supported_languages()
    detect_languages("{targetDir}")
    
    # Prefer auto for unknown or polyglot trees; use explicit lists when needed
    engine = QueryEngine.from_directory("{targetDir}", language="auto")
    engine = QueryEngine.from_directory("{targetDir}", language="python,rust")
    
    engine.callers_of("function_name")
    engine.callees_of("function_name")
    engine.paths_between("entry_func", "db_query")
    engine.complexity_hotspots(threshold=10)
    engine.attack_surface()
    engine.summary()
    engine.to_json()
    
    # Transitive slices and entrypoint path queries (v0.2-safe)
    engine.ancestors_of("sensitive_sink")
    engine.reachable_from("entry_func")
    engine.entrypoint_paths_to("sensitive_sink")
    
    # v0.4+: connect named subgraphs
    if hasattr(engine, "connect_subgraphs"):
        engine.connect_subgraphs("tainted", "privilege_boundary")
    
    # Run pre-analysis (blast radius, entrypoints, privilege
    # boundaries, taint propagation)
    result = engine.preanalysis()
    
    # Query subgraphs created by pre-analysis
    engine.subgraph_names()
    engine.subgraph("tainted")
    engine.subgraph("high_blast_radius")
    engine.subgraph("privilege_boundary")
    engine.subgraph("entrypoint_reachable")
    if hasattr(engine, "subgraph_edges"):
        engine.subgraph_edges("tainted")
    
    # Add LLM-inferred annotations
    from trailmark.models import AnnotationKind
    
    engine.annotate("function_name", AnnotationKind.ASSUMPTION,
                    "input is URL-encoded", source="llm")
    
    # Query annotations (including pre-analysis results)
    engine.annotations_of("function_name")
    engine.annotations_of("function_name",
                           kind=AnnotationKind.BLAST_RADIUS)
    engine.annotations_of("function_name",
                           kind=AnnotationKind.TAINT_PROPAGATION)
    engine.nodes_with_annotation(AnnotationKind.FINDING)
    engine.clear_annotations("function_name", kind=AnnotationKind.ASSUMPTION)
    
    # v0.4+: generic/type-reference and binary augmentation APIs
    if hasattr(engine, "generic_parameters"):
        engine.generic_parameters("GenericTypeOrFunction")
    if hasattr(engine, "type_references"):
        engine.type_references("function_name")
    if hasattr(engine, "augment_binary"):
        engine.augment_binary("binary_graph.json")
    ```
    
    ## Pre-Analysis Passes
    
    **Always run `engine.preanalysis()` before handing off to genotoxic or
    `diagramming-code` skills.** Pre-analysis enriches the graph with four passes:
    
    1. **Blast radius estimation** — counts downstream and upstream nodes per
       function, identifies critical high-complexity descendants
    2. **Entry point enumeration** — maps entrypoints by trust level, computes
       reachable node sets
    3. **Privilege boundary detection** — finds call edges where trust levels
       change (untrusted -> trusted)
    4. **Taint propagation** — marks all nodes reachable from untrusted
       entrypoints
    
    Results are stored as annotations and named subgraphs on the graph.
    
    For detailed documentation, see
    [references/preanalysis-passes.md](references/preanalysis-passes.md).
    
    ## Language Selection
    
    Do not hardcode a stale language table in downstream workflows. Ask the
    installed Trailmark build what it supports:
    
    ```python
    from trailmark.parse import detect_languages, supported_languages
    
    supported_languages()
    detect_languages("{targetDir}")
    ```
    
    CLI patterns:
    
    ```bash
    # Auto-detect and merge
    uv run trailmark analyze --language auto {targetDir}
    
    # Explicit list for a known polyglot target
    uv run trailmark analyze --language python,rust {targetDir}
    ```
    
    As of Trailmark 0.5.0, parser names include: `python`, `javascript`,
    `typescript`, `php`, `ruby`, `c`, `cpp`, `c_sharp`, `java`, `go`, `rust`,
    `solidity`, `cairo`, `circom`, `haskell`, `erlang`, `masm`, `swift`, `objc`,
    `kotlin`, `dart`, `move`, `tact`, `func`, `sway`, `rego`, `proto`, `thrift`,
    `graphql`, and `sql` (added in 0.5.0; PostgreSQL-oriented, `.sql` files).
    Treat this list as documentation, not a source of truth; call
    `supported_languages()` on the installed build before relying on a parser.
    
    ## Repository Links (v0.5+)
    
    Parsers cannot see cross-language calls (FFI, RPC, IPC, contract invocation)
    or edges into external systems. Declare them in `.trailmark/links.toml` at the
    analysis root and Trailmark materializes the edges on every parse — this is a
    stable public configuration interface:
    
    ```toml
    [[link]]
    source = "backend:submit"
    target = "contract:Verifier.verify"
    kind = "calls"                 # any EdgeKind; defaults to calls
    confidence = "certain"         # certain | inferred | uncertain; defaults to inferred
    description = "JSON-RPC eth_call"
    
    [[link]]
    source = "backend:notify"
    target = "payments-webhook"
    target_external = true         # required because target is unresolved
    ```
    
    Endpoint references may be exact node IDs or unique names/suffixes. Validation
    fails closed: ambiguous references, unknown internal endpoints, invalid enum
    values, and malformed TOML raise `ValueError` rather than silently weakening
    the graph. `source_external = true` / `target_external = true` permit an
    unresolved endpoint by creating a `proxy.external:<symbol>` node. Configured
    edges carry a `configured_by = .trailmark/links.toml` attribute so they are
    distinguishable from parser-derived edges.
    
    Use this when the audit spans an FFI/RPC boundary the rationalization table
    warns about: declare the boundary edges first, then path and taint queries
    cross them like any other call edge.
    
    ## Graph Model
    
    **Node kinds:** `function`, `method`, `class`, `module`, `struct`,
    `interface`, `trait`, `enum`, `namespace`, `contract`, `library`,
    `template`; **v0.4+** also materializes unresolved references as `proxy`
    nodes; **v0.5+** adds `schema`, `table`, `view`, and `procedure` for SQL
    graphs.
    
    **Node origins:** **v0.4+** nodes may carry origin `source`, `proxy`,
    `binary`, or `synthetic`. v0.2 exports may omit origin.
    
    **Edge kinds:** `calls`, `inherits`, `implements`, `contains`, `imports`;
    **v0.4+** adds `resolves_to`, `type_uses`, `specializes`, and
    `corresponds_to`.
    
    **Edge confidence:** `certain` (direct call, `self.method()`), `inferred`
    (attribute access on non-self object), `uncertain` (dynamic dispatch)
    
    ### Per Code Unit
    - Parameters with types, return types, exception types
    - Cyclomatic complexity and branch metadata
    - Docstrings
    - Annotations: `assumption`, `precondition`, `postcondition`, `invariant`,
      `blast_radius`, `privilege_boundary`, `taint_propagation`, `finding`,
      `audit_note` (last two set by `augment_sarif` / `augment_weaudit`)
    
    ### Per Edge
    - Source/target node IDs, edge kind, confidence level
    
    ### Project Level
    - Dependencies (imported packages)
    - Entrypoints with trust levels and asset values
    - Named subgraphs (populated by pre-analysis)
    
    ## Key Concepts
    
    **Declared contract vs. effective input domain:** Trailmark separates what a
    function *declares* it accepts from what can *actually reach* it via call
    paths. Mismatches are where vulnerabilities hide:
    - **Widening**: Unconstrained data reaches a function that assumes validation
    - **Safe by coincidence**: No validation, but only safe callers exist today
    
    **Edge confidence:** Dynamic dispatch produces `uncertain` edges. Account for
    confidence when making security claims.
    
    **Proxy nodes (v0.4+):** Unresolved calls are preserved as nodes such as
    `proxy.unresolved:<symbol>`. Do not treat these as source code functions; use
    them to identify resolution gaps, dynamic dispatch, external APIs, or binary
    linkage candidates. **v0.5+** also emits `proxy.external:<symbol>` nodes for
    endpoints declared external in `.trailmark/links.toml`.
    
    **Reachability is not taint:** `entrypoint_paths_to()` and the taint subgraph
    answer different questions. Path queries report call-graph reachability;
    preanalysis taint marks nodes reachable from untrusted entrypoints as a coarse
    signal. Trailmark does not perform interprocedural taint analysis — do not
    present either as proof that attacker-controlled data reaches a sink.
    
    **Binary augmentation (v0.4+):** `engine.augment_binary()` imports an external
    binary-analysis graph JSON file. Trailmark connects it to source nodes when
    possible; it does not disassemble binaries itself.
    
    **Subgraphs:** Named collections of node IDs produced by pre-analysis.
    Query with `engine.subgraph("name")`. Available after `engine.preanalysis()`.
    
    ## Query Patterns
    
    See [references/query-patterns.md](references/query-patterns.md) for common
    security analysis patterns.
    
    See [references/preanalysis-passes.md](references/preanalysis-passes.md) for
    pre-analysis pass documentation.
    
    Use `trailmark-finding-triage` when the user has one concrete candidate
    finding, SARIF result, weAudit annotation, suspicious function, or report
    excerpt and needs a handoff-ready reachability and blast-radius evidence packet.
    
    Use `trailmark-variant-neighborhood` after one seed issue is known and the user
    needs graph-derived variant candidates for `variant-analysis`, Semgrep, CodeQL,
    or manual review.
    

Comments (0)

Sign in to join the conversation.

No comments yet.

Reviews (0)

No reviews yet.

Related