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

wtf.spike哇哦 尖峰

Agent Skill

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

总安装

218

周安装

9

GitHub Stars

3

下载量

71
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/xiduzo/wtf --skill wtf.spike

简介

wtf.spike 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。
  • 通过 npx 命令从指定 GitHub 仓库安装并使用。
  • 安装前需确认权限范围、维护状态,注意是否触发联网或命令执行。
  • wtf.spike 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Spike

Run a time-boxed technical investigation. Core value: turns an unknown into a decision — produces concrete findings and a recommendation so the team can write specs confidently rather than guessing.

Process

0. GitHub CLI setup

Run steps 1–2 of ../references/gh-setup.md (install check and auth check). Stop if gh is not installed or not authenticated. Extensions are not required for this skill.

Skip this step if gh-setup was already confirmed this session.

1. Define the question

If the user described the investigation in their request, extract the core question from it. Otherwise call AskUserQuestion with:

  • question: "What question should this spike answer?"
  • header: "Spike question"
  • options: pre-filled with 1–2 specific questions inferred from any context provided (e.g. linked Epic, conversation)

The question must be specific and answerable — not "how does caching work?" but "is Redis or in-memory caching the right choice for our session store given our deployment constraints?" — and scoped to a decision the team actually needs to make.

Then call AskUserQuestion with:

  • question: "How much time should this spike take?"
  • header: "Time box"
  • options: [{label: "1 hour", description: "Quick feasibility check"}, {label: "Half day", description: "Moderate investigation"}, {label: "1 day", description: "Deep dive with proof of concept"}]

2. Identify the linked issue (optional)

Call AskUserQuestion with question: "Is this spike linked to an existing issue?", header: "Linked issue", and options pre-filled with recent open Epics and Features from gh issue list --label "epic,feature" --state open --limit 5, plus {label: "No linked issue", description: "Standalone investigation"}.

If linked: fetch the issue to extract domain context, constraints, and success metrics that inform the investigation scope.

3. Research

Run all research in parallel using the Agent tool:

Codebase exploration:

  • Search for existing implementations, prior attempts, or ADRs addressing the same question (domain nouns, patterns, imports)
  • Check docs/steering/TECH.md for constraints that rule out certain approaches
  • Identify integration points and dependencies the solution must respect

External research (if available):

  • Use WebSearch/WebFetch for relevant documentation, benchmarks, or known trade-offs

Synthesise findings internally. Do not dump raw research at the user.

4. Derive 2–3 concrete approaches

For each approach:

  • Name: short label (e.g. "Redis session store", "In-memory with TTL")
  • Summary: one sentence describing what it involves
  • Pros: 2–3 concrete advantages relevant to this codebase and constraints
  • Cons: 2–3 concrete risks or costs
  • Effort estimate: rough implementation cost (hours or days)
  • Fit with TECH.md: does it align with the established stack and patterns?

5. Recommend

State a single recommendation:

"Recommend [Approach N] because [1–2 key reasons]. Main risk: [X], mitigated by [Y]."

If evidence is genuinely ambiguous or the spike revealed the question is harder than expected, say so clearly — recommend a proof of concept or a follow-up spike with a narrower question.

6. Review with user

Show the full analysis (approaches + recommendation). Then call AskUserQuestion with:

  • question: "Does this answer the question well enough to proceed?"
  • header: "Spike review"
  • options: [{label: "Yes — record the findings", description: "Write the spike doc"}, {label: "Need more depth on one approach", description: "Explore a specific area further"}, {label: "Question changed", description: "The investigation revealed a different question"}]

Apply any adjustments, then proceed.

7. Write the findings doc

Write to docs/spikes/<YYYY-MM-DD>-<slug>.md where <slug> is a 2–4 word kebab-case summary of the question (e.g. session-store-strategy).

Structure:

# Spike: <question>

**Date:** <YYYY-MM-DD>
**Time box:** <duration>
**Linked issue:** #<n> or —

## Question

<the specific question this spike answered>

## Approaches considered

### <Approach 1 name>
**Summary:** ...
**Pros:** ...
**Cons:** ...
**Effort:** ...

### <Approach 2 name>
...

## Recommendation

<recommendation text>

## Decision

<!-- Fill when the team decides -->
- [ ] Accepted — proceeding with [approach]
- [ ] Rejected — reason: ...
- [ ] Needs follow-up: ...
mkdir -p docs/spikes
git add docs/spikes/<filename>
git commit -m "docs(spike): <question summary>"

Print the file path.

8. Post to linked issue (if applicable)

If a linked issue exists, post a comment:

gh issue comment <issue_number> --body "🔬 Spike concluded: **<question>** → Recommendation: <one-line summary>. Full findings: docs/spikes/<filename>.md"

9. Offer next steps

Call AskUserQuestion with:

  • question: "What's next?"
  • header: "Next step"
  • options: [{label: "Write an Epic from this", description: "Turn the recommendation into an Epic issue (default)"}, {label: "Write a Task from this", description: "The spike uncovered a specific narrow change"}, {label: "Stop here", description: "Exit — the team will decide separately"}]
  • Write an Epic → follow the wtf.write-epic process, seeding it with the spike's recommendation and findings as context.
  • Write a Task → follow the wtf.write-task process with the spike recommendation as the task description.
  • Stop here → exit.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Codex

38.4%
按下载量换算27

Claude

29.59%
按下载量换算21

Cursor

17.55%
按下载量换算12

Gemini CLI

9.01%
按下载量换算6

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills