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

help帮助指南

Agent Skill

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

总安装

188

周安装

8

GitHub Stars

1

下载量

66
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/chrislacey89/skills --skill help

简介

help 用于读取当前仓库状态并推荐下一步操作流程,不直接执行任何任务。

  • 适合作为重返项目或新手的引导入口,指出应调用的下一个技能及依据。
  • 通过分析现有分支、问题和文档结构提供路径建议,帮助用户重新定位进度。
  • 属于旁路技能,诊断后会回归主流程,避免重复劳动或误用其他工具。
  • help 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Help

Read the current repo state and recommend the next pipeline step. This skill does not do any work itself — it orients the user by pointing to the right next skill, citing the state it observed so the recommendation can be overruled.

This is the front door for users who are returning to a repo after a break, onboarding to Skill Kit for the first time, or stuck mid-pipeline and unsure which skill to invoke next.

Invocation Position

This is a side-route skill. It reconnects to the main pipeline at whichever skill the diagnosis points to.

Use /help when:

  • The user is starting a session in a repo that already uses Skill Kit and wants to know where they are in the pipeline
  • The user has been away from a feature for a while and needs a refresher on what state the work is in
  • A new team member is learning the pipeline and wants guidance rather than reading all of references/SYSTEM-OVERVIEW.md
  • The user explicitly asks "what should I do next?" or "where am I?"

Do not use /help:

  • To actually run the recommended skill — /help only recommends; the user runs the next skill themselves
  • When the user already knows the next step and just wants to execute
  • As a substitute for reading references/SYSTEM-OVERVIEW.md when the question is conceptual rather than state-specific
  • For tasks unrelated to the feature pipeline (bug fixes with no upstream artifacts, one-off cleanups)

Process

1. Gather repo state

Build a state snapshot in two phases: first detect the base branch sequentially (so downstream calls can reference it), then dispatch the read-only snapshot commands in parallel.

Phase 1a — detect the base branch (run first, sequentially):

# Prefer the remote's HEAD, fall back through common names
BASE_BRANCH=$(git symbolic-ref refs/remotes/origin/HEAD --short 2>/dev/null | sed 's@^origin/@@')
if [ -z "$BASE_BRANCH" ]; then
  for candidate in main master prod trunk; do
    if git rev-parse --verify "$candidate" >/dev/null 2>&1; then BASE_BRANCH=$candidate; break; fi
  done
fi
echo "base=$BASE_BRANCH"

Do not hardcode main or master — not every repo uses them (Skill Kit's own repo uses prod, and many others use develop, trunk, or a team-specific name). If origin/HEAD is not set and none of the fallback candidates exist, ask the user for the base branch name before continuing.

Phase 1b — gather the snapshot (run in parallel, each call independent):

# Current branch and commits ahead of the detected base branch
git branch --show-current
git log --oneline "$BASE_BRANCH..HEAD"

# Open PR for the current branch, if any
gh pr list --head "$(git branch --show-current)" --state open --json number,title,url

# Research archive entries for this repo (durable, per-user, outside the repo)
REPO_SLUG=$(git config --get remote.origin.url | sed -E 's|.*[:/]([^/]+)/([^/.]+)(\.git)?$|\1-\2|')
ls -t "$HOME/.claude/research/$REPO_SLUG/" 2>/dev/null

# Open issues with PRD or slice labels, or in open milestones
gh issue list --state open --json number,title,labels,milestone --limit 50

# Open milestones with remaining feature issues
gh api "repos/{owner}/{repo}/milestones?state=open" --jq '.[] | {title, open_issues, closed_issues}' 2>/dev/null

Parallel tool-use gotcha. In Claude Code, when one bash call in a parallel batch errors, the harness cancels its in-flight siblings — one bad ref takes down the whole snapshot. This is why Phase 1a must run first (and alone): if base-branch detection fails, nothing in Phase 1b will try to reference $BASE_BRANCH. Do not chain &&/|| against a guessed branch name inside a parallel batch to "save a round trip" — it will fail noisily on any repo that does not match your guess.

If gh is not authenticated or the repo is not a GitHub repo, note which signals you could not gather and work from the rest. A missing signal is not a failure — it just narrows the recommendation.

2. Classify the state

Walk through these checks in priority order. The first one that matches is the recommendation. Stop at the first match — do not try to give the user three options.

#SignalRecommendationOne-line reason
1Open PR on current branchMerge the PR, then run /compound"You have an open PR on <branch> — if review is done, merge it and capture lessons."
2Current branch has commits ahead of base, no open PR/pre-merge"You have <N> commits ahead of <base> with no PR yet — /pre-merge creates it and runs the architectural review."
3Open slice issues referencing a PRD, none closed/execute on the highest-priority unblocked slice"You have <N> open slice issues under PRD #<prd>/execute is the next step for the first unblocked one."
4Open slice issues referencing a PRD, some closed/execute on the next unblocked slice"You have <N> open and <M> closed slices under PRD #<prd>/execute picks up the next unblocked slice."
5Open PRD issue with no slice issues/prd-to-issues on PRD #<prd>"PRD #<prd> is shaped but not yet decomposed — /prd-to-issues breaks it into slices."
6Recent research archive entry for this repo, no open PRD issue matching its feature/write-a-prd"A recent research file for <feature> is archived but there is no PRD issue — /write-a-prd turns it into a shaped pitch."
7Planning milestone with a research-ready feature issue/research on the research-ready feature"Milestone <name> has a research-ready feature — run /research on it."
8Planning milestone with only roadmap bet featuresPromote one feature to research-ready, then /research"Milestone <name> has only roadmap bet features — pick one, promote it, then /research."
9Shipped work but no docs/solutions/ entry since the last merge/compound"The last merge shipped work that has not yet been compounded — run /compound."
10QA bugs open and no active feature work/execute on the highest-priority QA bug"You have <N> open QA bug issues — /execute to work through them."
11None of the above — clean slate, no feature in flight/shape (or ask the user what they are trying to do)"No feature work is in flight — /shape is the normal starting point."

3. Present the recommendation

Present one recommendation, with the one-line reason and the state signals that triggered it. Use this format:

## Where you are

<one paragraph: the state signals you observed, stated as facts>

## Next step

**`/<recommended-skill>`** — <one-line reason>

## Why this skill

<one short paragraph: what the skill produces and how it connects to the observed state>

## If this is wrong

<2-3 alternative next steps for common cases where the heuristic might have missed>

Example output (for signal #6, a recent research archive entry with no matching PRD issue):

## Where you are

Current branch: main. No open PRs. Research archive has `~/.claude/research/owner-repo/nextjs-middleware-migration-2026-04-05.md`, dated 2026-04-05 and pointing at a Next.js 16 middleware migration. No open PRD issue matches it (I searched open issues for "middleware" and "Next.js" and found nothing). No open slice issues. No active milestone.

## Next step

**`/write-a-prd`** — a recent research file is present but there is no PRD issue for the work it covers.

## Why this skill

`/write-a-prd` takes a completed research document and turns it into a shaped PRD filed as a GitHub issue. It consults the archived research automatically, so the recommendations in the research will flow into the pitch without you re-summarizing them. Expect 10–15 minutes of interview, then a PRD issue ready for `/prd-to-issues`.

## If this is wrong

- If the archived research is stale and no longer matches what you intend to build, run `/correct-course` first to clean up before shaping again.
- If you want to rewrite the research for a different approach, run `/research` again (it will produce a new archive entry with today's date).

4. Stop

After presenting the recommendation, stop. Do not start the recommended skill automatically, and do not ask the user if they want you to run it — the user decides. If the user wants to run it, they will invoke it themselves.

If the user responds with "that's wrong, I'm actually doing X," do not re-run the full state gather. Just answer the corrected question directly — your recommendation was based on signals, not authority.

Heuristic Rules

  • One recommendation, not three. The user is asking for a next step, not a menu. Pick the best match and commit to it.
  • Cite the state. Every recommendation must reference the specific signal that triggered it — a file path, an issue number, a branch name. Vague recommendations lose trust fast.
  • Prefer the earliest unblocked step. If the user has both an open slice issue and an unrelated merged PR that was never compounded, recommend compounding first only if the slice work is paused. When in doubt, recommend what unblocks forward motion on the most recent work.
  • Never fabricate signals. If you could not read open issues because gh is unauthenticated, say so. Do not guess.
  • Never auto-run the recommendation. /help is advisory. The user runs the next skill.

What This Skill is NOT

  • Not a task tracker. GitHub issues and PRs are the task tracker. This skill reads that state, it does not replace it.
  • Not a replacement for the pipeline overview. If the user is asking conceptual questions about how the pipeline works, pull the relevant sections from references/SYSTEM-OVERVIEW.md and references/using-this-pack.md (bundled alongside this skill) rather than improvising. For deeper reading, point the user at the repo originals: https://github.com/chrislacey89/skills/blob/main/SYSTEM-OVERVIEW.md and https://github.com/chrislacey89/skills/blob/main/docs/using-this-pack.md.
  • Not a wizard. It does not walk the user through shaping, research, or planning. It tells them which skill to start and gets out of the way.

Handoff

  • Expected input: a question like "what should I do next?" or ambient uncertainty about pipeline position
  • Produces: a single next-step recommendation with cited state signals and a one-line reason
  • Feeds into: whichever pipeline skill the recommendation points at — /shape, /research, /write-a-prd, /prd-to-issues, /execute, /pre-merge, or /compound
  • What comes next: the user runs the recommended skill themselves — /help does not invoke anything

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.06%
按下载量换算24

Claude

28.85%
按下载量换算19

Cursor

19.44%
按下载量换算13

Gemini CLI

7.87%
按下载量换算5

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills