perf-code-paths

仓库创建 2025年10月22日最近提交 2 个月前SkillHot 收录 23 天前
▸ 精选理由

帮助定位剖析目标,节省探索与采样时间。

这个 Skill 做什么

识别性能场景相关的入口点与可能热点文件以指导剖析。

在正式做性能剖析前帮你梳理可能的入口点和热点文件,列出候选源码、入口函数及相关调用链,便于有的放矢地打点和采样。用在要做 profiling、定位慢点或制定剖析计划时。特点是结合 repo-map 或快速搜索给出优先级候选,节省盲目排查时间。

▸ 展开 SKILL.md 英文原文

Use when mapping code paths, entrypoints, and likely hot files before profiling.

开发编程代码路径热点定位剖析准备通用
1.8k
Stars
487
Forks
23
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/ComposioHQ/awesome-claude-plugins/master/perf/skills/code-paths/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/ComposioHQ/awesome-claude-plugins/master/perf/skills/code-paths/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# 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.
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有