Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

ask

Agent Skill

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

总安装

423

周安装

18

GitHub Stars

1,683

下载量

148
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/git-ai-project/git-ai --skill ask

简介

ask 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于通用信息检索与筛选任务场景。
  • 通过 npx skills add 命令从 GitHub 仓库安装,需确认权限与维护状态。
  • 使用前建议核实是否会触发联网、命令执行或文件读写操作。
  • 可结合原始 README 进一步验证具体用法和功能边界。

SKILL.md

Ask Skill

Answer questions about AI-written code by finding the original prompts and conversations that produced it, then embodying the author agent's perspective to answer.

Main Agent's Job (you)

You do the prep work, then hand off to a fast, tightly scoped subagent:

  1. Resolve the file path and line range — check these sources in order: a) Editor selection context (most common). When the user has lines selected in their editor, a <system-reminder> is injected into the conversation like: The user selected the lines 2 to 4 from /path/to/file.rs: _flush_logs(args: &[String]) {flush::handle_flush_logs(args);} Extract the file path and line range directly from this. This is the primary way users will invoke /ask — they select code, then type something like "/ask why is this like that" without naming the file or lines. b) Explicit file/line references — "on line 42", "lines 10-50 of src/main.rs" → use directly. c) Named symbol — mentions a variable/function/class → Read the file, find where it's defined, extract line numbers. d) File without line specifics → whole file (omit --lines). e) No file, no lines, no selection context, no identifiable code reference → Do NOT attempt to guess or search. Just reply: Select some code or mention a specific file/symbol, then /ask your question. Stop here. Do not spawn a subagent.
  2. Spawn one subagent with the template below. Use max_turns: 4.
  3. Relay the answer to the user. That's it.

Subagent Configuration

Task tool settings:
  subagent_type: "general-purpose"
  max_turns: 4

The subagent gets only Bash and Read. It does NOT get Glob, Grep, or Task. It runs at most 4 turns — this is a fast lookup, not a research project.

Choosing Between blame --show-prompt and search

If you want to read an entire file or range of lines AND the corresponding prompts behind them, use git-ai blame --show-prompt. This is better than search for this use case — it gives you every line's authorship plus the full prompt JSON in one call.

# Get blame + prompts for a line range (pipe to get prompt dump appended):
git-ai blame src/commands/blame.rs -L 23,54 --show-prompt | cat

# Interactive (TTY) mode shows prompt hashes inline:
# 7a4471d (cursor [abc123e] 2026-02-06 14:20:05 -0800   23)     code_here

# Piped mode appends raw prompt messages after a --- separator:
# ---
# Prompt [abc123e]
# [{"type":"user","text":"Write a function..."},{"type":"assistant","text":"Here is..."}]

Use git-ai search when you need to find prompts by commit, keyword, or when you don't have a specific file/line range in mind.

Subagent Prompt Template

Fill in {question}, {file_path}, and {start}-{end} (omit LINES if not applicable):

You are answering a question about code by finding the original AI conversation
that produced it. You will embody the author agent's perspective — first person,
as the agent that wrote the code.

QUESTION: {question}
FILE: {file_path}
LINES: {start}-{end}

You have exactly 3 steps. Do them in order, then stop.

STEP 1 — Search (one command):
  Run: git-ai search --file {file_path} --lines {start}-{end} --verbose
  If no results, try ONE fallback: git-ai search --file {file_path} --verbose
  That's it. Do not run more than 2 git-ai commands total.

STEP 2 — Read the code (one Read call):
  Read {file_path} (focus on lines {start}-{end})

STEP 3 — Answer:
  Using the transcript from Step 1 and the code from Step 2, answer the
  question AS THE AUTHOR in first person:
  - "I wrote this because..."
  - "The problem I was solving was..."
  - "I chose X over Y because..."

  Format:
  - **Answer**: Direct answer in the author's voice
  - **Original context**: What the human asked for and why
  - **Date(s)**: Dates, Human Author where this feature was worked on.

  If no transcript was found, say so clearly: "I couldn't find AI conversation
  history for this code — it may be human-written or predate git-ai setup."
  In that case, analyze the code objectively (not first person).

HARD CONSTRAINTS:
- Do NOT use Glob, Grep, or Task tools. You only have Bash and Read.
- Do NOT run more than 2 git-ai commands.
- Do NOT read .claude/, .cursor/, .agents/, or any agent log directories.
- Do NOT search JSONL transcripts or session logs directly.
- All conversation data comes from `git-ai search` only.

When the user's question doesn't reference specific lines, omit --lines from Step 1 and the LINES: field.

Fallback Behavior

When no prompt data is found:

  • The code might be human-written or predate git-ai
  • Answer from the code alone, clearly stating no AI history was found
  • Do NOT use first-person author voice in fallback — analyze objectively

Example Invocations

User selects lines 10-25 in editor, types: /ask why is this like that Selection context is in system-reminder → extract file + lines 10-25, spawn subagent. This is the most common usage pattern.

/ask why does this function use recursion instead of iteration? Main agent finds the function definition, extracts file/lines, spawns subagent.

/ask what problem was being solved on lines 100-150 of src/main.rs? File and lines explicit — spawn subagent directly.

/ask why was this approach chosen over using a HashMap? Main agent identifies relevant code from context, spawns subagent.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.89%
按下载量换算53

Claude

29.63%
按下载量换算44

Cursor

17.36%
按下载量换算26

Gemini CLI

9.56%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/git-ai-project/git-ai --skill ask 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills