Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

investigate-pylon调查塔架

Agent Skill

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

总安装

519

周安装

21

GitHub Stars

5,767

下载量

163
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/lightdash/lightdash --skill investigate-pylon

简介

用于查找、检索和筛选相关信息。investigate-pylon 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合根据关键词或任务场景快速定位候选结果。
  • 可在 Codex、Claude、Cursor 等宿主环境中使用。
  • 通过 GitHub 安装,具体用法请参考原始 README。
  • 安装前建议确认权限范围和维护状态,避免触发联网或文件操作。

SKILL.md

Investigate Pylon Ticket

Investigate Pylon issue $ARGUMENTS.

Step 1: Gather context

  1. Fetch the Pylon issue using get_issue with the issue number
  2. Fetch the full message history using get_issue_messages
  3. Fetch the customer account using get_account
  4. Fetch the customer contact using get_contact

The message thread is often more important than the issue body. Pay close attention to:

  • Follow-up messages where the customer added crucial details
  • Prior replies from colleagues (don't contradict them)
  • What the customer is *currently* waiting on, which may differ from the original question
  • Whether the issue has already resolved itself

Use the customer's first name in any draft replies. Note their account tier (Starter, Starter Plus, etc.) to calibrate expectations around feature availability.

Step 2: Classify the ticket

Based on the issue content and messages, classify it as one of:

  • Question - the customer is asking how to do something
  • Feature request - the customer wants functionality that doesn't exist
  • Bug - something is broken or behaving unexpectedly

State your classification clearly before proceeding.

Step 3: Investigate based on type

If it's a question

  1. Search Lightdash docs using SearchLightdash with relevant keywords
  2. Find the most relevant documentation pages
  3. Draft a reply that answers the question and links to the docs

Before answering, consider whether you need to ask the customer to clarify their setup. For example: are they using the CLI, GitHub Actions, or the Lightdash App UI? Don't guess if a clarifying question would narrow it down.

If it's a feature request

  1. Search GitHub for existing issues: gh search issues --repo lightdash/lightdash "<relevant keywords>" --state open
  2. Also try broader search terms if the first search returns nothing
  3. Search Linear for related issues using list_issues with a search query
  4. If a matching issue exists: note it with a link and its current status
  5. If no match exists: draft a GitHub issue body (title + description). Do NOT create it yet.

If it's a bug

  1. Search GitHub for existing bug issues: gh search issues --repo lightdash/lightdash "<relevant keywords>" --label bug
  2. Search Linear for related issues using list_issues
  3. Search the codebase for relevant code: gh search code --repo lightdash/lightdash "<relevant keywords>"
  4. For complex bugs, use a Task subagent to do a deeper codebase investigation with Grep, Read, and Glob to find the specific logic causing the issue
  5. Review what you find. Determine:

- Is this intended behavior? - Is this a genuine bug? - What part of the code is responsible?

  1. If no existing issue: draft a GitHub issue body. Do NOT create it yet.

Important: If you need to create a GitHub issue, always create it on GitHub (not Linear). The GitHub-Linear sync will automatically create a linked Linear issue. Creating in Linear first causes duplicates.

For ALL types

Always verify your understanding of product behavior against the docs using SearchLightdash before drafting any reply. This is the technical backstop that prevents inaccurate answers. Don't rely on assumptions about how the product works.

Step 4: Draft a customer reply

Write a draft reply to send to the customer. Rules:

  • Keep it concise and natural. Write like a human, not an AI.
  • Never use em dashes.
  • Be friendly and direct.
  • Use the customer's first name.
  • If it's a question: include the answer with links to relevant docs.
  • If it's a bug or feature request: acknowledge what they reported and let them know we're looking into it.
  • If a matching GitHub issue exists, always link to it in the customer reply so they can follow progress.
  • If you need more info from the customer, ask a specific clarifying question instead of guessing.
  • Do not be verbose. Short sentences. No filler.

Step 5: Draft internal engineering message (if needed)

Only if the issue needs engineering investigation, draft a message for the support engineer. Include:

  • What the customer reported (1-2 sentences)
  • What you found in the code (with file paths or links)
  • Specific questions or asks for the engineer

Keep it actionable. Engineers are busy, don't make them read a wall of text.

Step 6: Present everything

Output your findings in this format:

## Classification
[Question / Feature Request / Bug]

## Customer
[Name, account name, tier, and any relevant context]

## Summary
[What the customer is asking about, 2-3 sentences max]

## Related Issues
[Links to any matching GitHub/Linear issues found, with status. Or "None found."]

## Relevant Docs
[Links to relevant Lightdash docs. Or "None found."]

## Code Findings
[Only if bug: what you found in the codebase. File paths, brief explanation.]

## Draft Customer Reply
[The reply to copy into Pylon/Slack]

## Draft Engineering Message
[Only if needed: the internal message for the engineer]

## Draft GitHub Issue
[Only if needed: the issue title and body to create]

Do not auto-create GitHub issues, send Slack messages, or take any action beyond presenting drafts. Everything stays in this chat for the AE to review and act on.

The AE will likely refine the draft. Be ready for follow-up instructions to adjust the reply, dig deeper into the code, or change the approach.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.63%
按下载量换算55

Claude

31.46%
按下载量换算51

Cursor

20.05%
按下载量换算33

Gemini CLI

8.29%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills