perf-code-paths

仓库创建 2025年10月22日最近提交 1 天前SkillHot 收录 11 小时前
▸ 精选理由

在正式采样前快速锁定排查目标,节省定位时间。

这个 Skill 做什么

识别与性能场景相关的代码入口、可能的热文件与调用链。

在跑剖析前快速定位与性能场景相关的入口点、可能的热点文件和调用链。会用 repo-map 或 grep 找到 handlers、symbols、import/export 路径,并列出优先排查的候选文件或调用链。目的是把剖析范围缩小到最可能的热区,节约诊断时间。

▸ 展开 SKILL.md 英文原文

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

开发编程性能定位代码路径入口识别通用
1.8k
Stars
518
Forks
23
仓库内 Skill
积累中
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/composio-community/awesome-claude-plugins/master/perf/skills/code-paths/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/composio-community/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 公开信息 · 原文版权归作者所有