Source profileQuality 86/100

nikolai-vysotskyi/trace-mcp/skills/trace-mcp/SKILL.md

trace-mcp

Use trace-mcp tools for code navigation, impact analysis, and framework-aware queries instead of Read/Grep/Glob/Bash. Activate whenever the agent needs to explore, understand, or modify a codebase that has trace-mcp indexed.

Source repository stars
95
Declared platforms
0
Static risk flags
2
Last source update
2026-08-04
Source checked
2026-08-04

Decision brief

What it does—and where it fits

trace-mcp is a framework-aware code intelligence MCP server. It exposes 120+ tools that return semantic, structured results over a cross-language dependency graph. When trace-mcp is available, it is almost always cheaper and more accurate than native file tools.

Best for

  • Find a function, class, method, route, component, or any symbol
  • Understand a file, module, or feature before editing
  • Determine what breaks if you change something

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/nikolai-vysotskyi/trace-mcp --skill "skills/trace-mcp"
Safe inspection promptEditorial

Inspect the Agent Skill "trace-mcp" from https://github.com/nikolai-vysotskyi/trace-mcp/blob/a3b3c3eb88e1398d2b5f69342da7f98714658bdf/skills/trace-mcp/SKILL.md at commit a3b3c3eb88e1398d2b5f69342da7f98714658bdf. 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

    When to Use

    Activate this skill whenever you need to: - Find a function, class, method, route, component, or any symbol - Understand a file, module, or feature before editing - Determine what breaks if you change something - Trace a request flow, call graph, or data flow - Audit architectur…

    Find a function, class, method, route, component, or any symbolUnderstand a file, module, or feature before editingDetermine what breaks if you change something
  2. 02

    Start-of-Session Checklist

    1. getprojectmap with summaryonly=true — orient yourself to the project structure 2. gettaskcontext with task: "" — gather all relevant code in a single call instead of chaining search → getsymbol → Read

    getprojectmap with summaryonly=true — orient yourself to the project structuregettaskcontext with task: "" — gather all relevant code in a single call instead of chaining search → getsymbol → Read1. getprojectmap with summaryonly=true — orient yourself to the project structure 2. gettaskcontext with task: "" — gather all relevant code in a single call instead of chaining search → getsymbol → Read
  3. 03

    Decision Matrix

    Review the “Decision Matrix” section in the pinned source before continuing.

    Review and apply the “Decision Matrix” source section.
  4. 04

    Token-Efficiency Rules

    1. Batch independent queries. Use batch when you need 2+ independent tool calls:

    Batch independent queries. Use batch when you need 2+ independent tool calls:Never read the same file twice. Use getoutline once, then getsymbol for specific pieces.Prefer getcontextbundle over chained getsymbol calls — it deduplicates shared imports.
  5. 05

    After Editing a File

    Call registeredit with the edited filepath to reindex just that file and invalidate caches. This is much lighter than a full reindex and keeps subsequent queries accurate.

    Call registeredit with the edited filepath to reindex just that file and invalidate caches. This is much lighter than a full reindex and keeps subsequent queries accurate.If the response includes duplicationwarnings, review the referenced symbols — you may be duplicating existing logic.Do not re-read the file to "verify" the edit. The Edit tool already confirmed success.

Permission review

Static risk signals and limitations

Writes files

medium · line 15

The documentation asks the agent to create, modify, or delete local files.

*Do not use** `Read`, `Grep`, `Glob`, or shell `ls`/`find`/`cat`/`head`/`tail` for exploring source code (`.ts`, `.js`, `.py`, `.php`, `.go`, `.rb`, `.java`, etc.). Use trace-mcp tools instead. Native tools stay allowed only for non-code fi

Reads files

low · line 27

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

| Understand a file before editing | `get_outline` | Read (full file) |

Reads files

low · line 28

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

| Read one symbol's source | `get_symbol` | Read (full file) |

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score86/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars95SourceRepository 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
nikolai-vysotskyi/trace-mcp
Skill path
skills/trace-mcp/SKILL.md
Commit
a3b3c3eb88e1398d2b5f69342da7f98714658bdf
License
MIT
Collected
2026-08-04
Default branch
master
View the original SKILL.md

trace-mcp — Code Intelligence Routing

trace-mcp is a framework-aware code intelligence MCP server. It exposes 120+ tools that return semantic, structured results over a cross-language dependency graph. When trace-mcp is available, it is almost always cheaper and more accurate than native file tools.

When to Use

Activate this skill whenever you need to:

  • Find a function, class, method, route, component, or any symbol
  • Understand a file, module, or feature before editing
  • Determine what breaks if you change something
  • Trace a request flow, call graph, or data flow
  • Audit architecture, dead code, tests, or security

Do not use Read, Grep, Glob, or shell ls/find/cat/head/tail for exploring source code (.ts, .js, .py, .php, .go, .rb, .java, etc.). Use trace-mcp tools instead. Native tools stay allowed only for non-code files (.md, .json, .yaml, configs) or immediately before an Edit on a known file.

Start-of-Session Checklist

  1. get_project_map with summary_only=true — orient yourself to the project structure
  2. get_task_context with task: "<natural-language description>" — gather all relevant code in a single call instead of chaining searchget_symbolRead

Decision Matrix

Tasktrace-mcp toolInstead of
Find a symbol by namesearchGrep
Understand a file before editingget_outlineRead (full file)
Read one symbol's sourceget_symbolRead (full file)
Multiple symbols + shared importsget_context_bundlechained get_symbol
What breaks if I change Xget_change_impactguessing
Who calls this / what does it callget_call_graphGrep
All usages of a symbolfind_usagesGrep
Implementations of an interfaceget_type_hierarchyGrep / ls
Classes implementing Xsearch with implements filterGrep
Tests for a symbol or fileget_tests_forGlob + Grep
Project overviewget_project_map (summary_only)Bash ls/find
Context for a taskget_task_context / get_feature_contextreading many files
HTTP request flowget_request_flowreading route + controller files
DB model relationshipsget_model_contextreading model + migrations
Component treeget_component_treereading component files
Circular dependenciesget_circular_importsmanual tracing
Dead code / dead exportsget_dead_code / get_dead_exportsGrep for unused
Project health / coverage gapsself_auditmanual inspection
Complexity / hotspotsget_complexity_report / get_risk_hotspotsguessing

Token-Efficiency Rules

  1. Batch independent queries. Use batch when you need 2+ independent tool calls:
    batch({ calls: [
      { tool: "get_outline", args: { path: "src/foo.ts" } },
      { tool: "get_outline", args: { path: "src/bar.ts" } },
      { tool: "search",      args: { query: "handleRequest", kind: "function" } }
    ]})
    
  2. Never read the same file twice. Use get_outline once, then get_symbol for specific pieces.
  3. Prefer get_context_bundle over chained get_symbol calls — it deduplicates shared imports.
  4. Read-before-Edit optimization. When you must Read a file to edit it:
    • Call get_outline first to find the line range of the target symbol.
    • Read only that range with offset + limit. Never read a 500-line file to edit 5 lines.
  5. Do not delegate code exploration to subagents. Agent subprocesses carry ~50k tokens of overhead before doing anything. Use trace-mcp tools in the main conversation instead.

After Editing a File

  • Call register_edit with the edited file_path to reindex just that file and invalidate caches. This is much lighter than a full reindex and keeps subsequent queries accurate.
  • If the response includes _duplication_warnings, review the referenced symbols — you may be duplicating existing logic.
  • Do not re-read the file to "verify" the edit. The Edit tool already confirmed success.

Before Creating New Symbols

  • Call check_duplication with { name, kind } to verify no similar symbol exists. Prevents reinventing existing logic.

Health Checks (Once Per Session)

  • audit_config — stale references in CLAUDE.md / settings
  • self_audit — dead exports, untested code, hotspots
  • get_tech_debt — per-module tech-debt grades
  • get_optimization_report — detects repeated reads, Bash grep usage, missed trace-mcp opportunities

Related Skills

  • trace-mcp-refactoring — safe refactoring workflow (risk assessment → rename → impact check)
  • trace-mcp-codemod — bulk mechanical changes via apply_codemod
  • trace-mcp-pre-commit — security, quality-gate, and antipattern checks before commit

Alternatives

Compare before choosing

Computed 10042,968

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 10023,781

alirezarezvani/claude-skills

app-store-optimization

App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist

Computed 100165

JasonColapietro/suede-creator-skills

suede-ab-testing

Suede-owned experimentation discipline for hypotheses, sample sizing, test duration, significance, and repeatable experiment programs. Use when comparing variants, deciding whether a result is reliable, or building an experiment backlog and cadence. NOT FOR: analytics instrumentation (use suede-analytics), post-click conversion diagnosis (use suede-site-alchemy), or writing the variant copy itself (use suede-copy).

Computed 1007

narrative-io/narrative-skills-marketplace

design-analysis

Translate a fuzzy analytical question into a rigorous investigation plan. Interrogates the ask, grounds the plan in the available data dictionary, applies analytical best practices, and produces a structured brief of query specifications for a downstream query-writing skill. Plans, does not write SQL. Use when: "why did X drop", "is there a relationship between A and B", "who are our highest-value customers", "what's driving the change in Y", "investigate this trend", "design an analysis for", "