Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计异常

prop-drill支柱钻机

Agent Skill

prop-drill 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

250

周安装

10

GitHub Stars

1

下载量

81
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:prop-drill(支柱钻机)
来源仓库:https://github.com/laststance/skills
仓库路径:skills/prop-drill
安装命令:
npx skills add https://github.com/laststance/skills --skill prop-drill
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/laststance/skills --skill prop-drill

简介

用于查找和检索特定主题或领域的深度研究资料。

  • 适合在需要聚焦关键概念或技术细节时使用。
  • 使用时需结合关键词和上下文筛选相关结果。
  • 建议验证来源仓库中的资料更新频率和权威性。
  • 涉及专业领域时应交叉比对多个可靠来源。prop-drill 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Prop Drill — React Props Origin & Drilling Path Tracer

Core Value

Find where an unknown prop is originally defined and show the complete drilling path through the component tree. The origin code is displayed as a clickable code block in Cursor IDE so the user can jump to it instantly.

Input

Parse the user's input to extract:

  • prop name (required) — the prop to trace
  • component name or file path (optional) — narrows the search scope

Examples of valid inputs:

  • orderData
  • orderData OrderTable
  • orderData src/features/shared/order_status_tabs/order_table/OrderTable.tsx
  • isOpen NewOrderModal

Workflow

Phase 1: Find the Prop's Type Definition

Locate the type or type... Props that declares this prop.

If Serena MCP is available:

  1. search_for_pattern with propName in *.tsx / *.ts files filtered to type definitions
  2. find_symbol with include_body=True on the matched Props type
  3. If the prop is inherited via & (intersection) or utility types, trace to the original type

Otherwise (standard tools):

  1. Grep for the pattern propName\s*[\?:] in *.ts / *.tsx to find type declarations
  2. Read the matched files to confirm the type definition context
  3. Follow intersection types / imported types to the original declaration

Phase 2: Find the Data Origin

Identify where the prop's value is first created (not just passed through).

Look for patterns:

  • useState / useReducer — local state
  • useQuery / useSWR / fetch — API data
  • useMemo / useCallback — computed values
  • Literal values / constants — static data
  • Function parameters — from parent (continue tracing upward)

If Serena MCP is available:

  • find_referencing_symbols on the Props type to list all components using it
  • Read component bodies to find where the value is generated vs merely forwarded

Otherwise:

  • Grep for <ComponentName or propName={ to find where the prop value is created
  • Read those files to distinguish origin from passthrough

Phase 3: Trace the Drilling Path

Starting from the origin component, trace downward through JSX:

  1. Read the origin component body
  2. Find JSX where propName={...} is passed to a child component
  3. Move to that child component's file
  4. Check if the child uses the prop directly (consumer) or passes it further (passthrough)
  5. Repeat until reaching all leaf consumers

Record for each step:

  • Component name
  • File path and line number
  • Prop name at that level (detect renames like data={orderData})
  • Role: origin | passthrough | consumer
  • Code snippet (abbreviated)

If Serena MCP is available:

  • find_referencing_symbols to efficiently discover child usage
  • get_symbols_overview to quickly map component structure

Phase 4: Knowledge Enrichment (optional)

If available:

  • context7: Look up React documentation on props patterns if the user seems unfamiliar
  • exa: Search for prop-drilling alternative patterns (Context, composition) for the improvement suggestions section

Output Format

Output in this exact order. The clickable code block is the most important part.

Section 1: Origin Definition (REQUIRED, FIRST)

Show the prop's type definition and value origin as Cursor IDE clickable code blocks. Use the startLine:endLine:filepath format (relative path from project root).

## Origin: `propName`

### Value created at:

const orderData = useQuery({ queryKey: ["orders"], queryFn: fetchOrders, });


### Type defined at:

type OrderData = { id: string; status: OrderStatus; };

Rules for code blocks:

  • Use startLine:endLine:filepath — NO language tag, NO other metadata
  • Path must be relative from project root
  • Include enough surrounding lines for context (typically 3-8 lines)
  • Always include at least 1 line of actual code

Section 2: Drilling Path Table (REQUIRED)

## Drilling Path

| # | Component | File:Line | Prop Name | Role | Code |
|---|-----------|-----------|-----------|------|------|
| 1 | OrderPage | src/pages/orders/table.tsx:25 | orderData | origin | `const orderData = useQuery(...)` |
| 2 | OrderStatusTabs | src/features/.../OrderStatusTabs.tsx:40 | orderData | passthrough | `<OrderTable orderData={orderData} />` |
| 3 | OrderTable | src/features/.../OrderTable.tsx:15 | orderData | consumer | `orderData.map(...)` |

Role definitions:

  • origin: Where the prop value is first created
  • passthrough: Receives and forwards without transformation
  • consumer: Uses the prop value directly (renders, calls methods, etc.)
  • transform: Receives, transforms, then passes a derived value

Section 3: Mermaid Flowchart (REQUIRED)

## Component Flow

flowchart TD OrderPage["OrderPage\n(origin)"] --> OrderStatusTabs["OrderStatusTabs\n(passthrough)"] OrderStatusTabs --> OrderTable["OrderTable\n(consumer)"]

Mermaid rules:

  • No spaces in node IDs (use PascalCase)
  • Label in double quotes with \n for line breaks
  • Show role in parentheses under component name
  • If prop is renamed between components, add edge label: -->|"renamed: data"|

Section 4: Improvement Suggestions (OPTIONAL)

Only show when drilling depth >= 3 layers.

## Suggestions

This prop passes through **N** layers. Consider:
- **Context API**: Extract `propName` into a Context provider at the `OriginComponent` level
- **Composition pattern**: Pass the consuming component as children instead of drilling the data

If exa MCP is available, search for real-world examples of the suggested pattern.

Tool Priority

All MCP tools are optional. Use when available, fall back to standard tools.

NeedPreferred (MCP)Fallback (standard)
Find type definitionsSerena search_for_pattern + find_symbolGrep + Read
Find referencesSerena find_referencing_symbolsGrep for component usage
File structureSerena get_symbols_overviewGlob + Read
React docscontext7Skip
Alternative patternsexaSkip

Success Criteria

  • Prop's type definition located and shown as clickable code block
  • Prop's value origin located and shown as clickable code block
  • Complete drilling path from origin to all consumers documented in table
  • Mermaid flowchart accurately represents the component tree
  • Prop renames between components detected and noted
  • No false positives (components listed that don't actually handle this prop)

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

32.93%
按下载量换算27

Claude

31.71%
按下载量换算26

Cursor

17.24%
按下载量换算14

Gemini CLI

9.46%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills