---
name: Performance Code Paths
slug: performance-code-paths
category: Quality
description: Performance Code Paths identifies likely implementation paths for a performance scenario, mapping entrypoints and hot files before profiling. Use it to narrow down the most relevant 10-15 files in Rust, Java, JS/TS, Go, or Python codebases.
github: "https://github.com/composio-community/awesome-claude-plugins/tree/master/perf/skills/code-paths"
language: JavaScript
stars: 1892
forks: 565
install: "npx degit https://github.com/composio-community/awesome-claude-plugins/tree/master/perf/skills/code-paths ~/.claude/skills/code-paths"
installs_to: ~/.claude/skills/code-paths
source_path: perf/skills/code-paths/SKILL.md
collection_size: 23
category_size: 1354
collection_url: "https://dirskills.com/collections/composio-community/awesome-claude-plugins"
added: 2026-08-18T06:59:18.209Z
last_synced: 2026-08-18T06:59:18.209Z
canonical_url: "https://dirskills.com/skills/performance-code-paths"
---

# Performance Code Paths

Performance Code Paths identifies likely implementation paths for a performance scenario, mapping entrypoints and hot files before profiling. Use it to narrow down the most relevant 10-15 files in Rust, Java, JS/TS, Go, or Python codebases.

**Install:**

```bash
npx degit https://github.com/composio-community/awesome-claude-plugins/tree/master/perf/skills/code-paths ~/.claude/skills/code-paths
```

## README

# perf-code-paths

Identify likely implementation paths for a performance scenario.

Follow `docs/perf-requirements.md` as the canonical contract.

## Required Steps

1. Use repo-map if available; otherwise use grep for entrypoints and handlers.
2. List top candidate files/symbols tied to the scenario.
3. Include imports/exports or call chains when relevant.

## Output Format

```
keywords: <comma-separated list>
paths:
  - file: <path>
    symbols: [<symbol1>, <symbol2>]
    evidence: <short reason>
```

## Constraints

- Focus only on supported languages (Rust, Java, JS/TS, Go, Python).
- Keep to the most relevant 10-15 files.
