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

panther-strike黑豹袭击

Agent Skill

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

总安装

1,388

周安装

59

GitHub Stars

4

下载量

486
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/autumnsgrove/groveengine --skill panther-strike

简介

panther-strike 用于基于关键词或任务场景进行信息查找与筛选。

  • 适用于在 Codex、Claude、Cursor、Gemini CLI 中快速定位相关内容的场景。
  • 通过 GitHub 仓库安装,使用标准 npx skills add 命令即可集成。
  • 使用前请核实维护状态及权限范围,警惕可能的联网或文件操作行为。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Panther Strike 🐆

The panther doesn't ask permission. It watches. It waits. Then — *swiftness*.

Lock onto a single issue. Melt into the shadows. Weave through the branches. Strike with deadly silence. Leave nothing but a clean commit in your wake and the fading echo of a hunt well-had.

When to Activate

  • User provides an issue number to fix
  • User says "strike", "drop on", "attack", or "kill" an issue
  • User explicitly calls /panther-strike #123
  • User wants focused, rapid resolution of ONE issue

The Hunt

🐆 TARGET → SHADOWS → STALK → AMBUSH → LEAP → SILENCE

Phase 1: TARGET

*The panther freezes at the edge of the clearing. Rain-damp leaves. Air thick with scent. Eyes fixed. The prey identified.*

Lock onto the target. Fetch the issue details:

gh issue view {number} --repo AutumnsGrove/Lattice

Read it carefully. Understand what draws breath in this forest. Know what "done" looks like when the dust settles and the blood mixes with earth.

Output: Brief summary of the target — what moves, what breathes, what must be silenced.

Phase 2: SHADOWS

*The great cat slips between the trees, coat dark as the space between stars. The canopy swallows its shape whole...*

Search the codebase for relevant files. Use the issue description as your trail through the undergrowth:

  • Find mentioned files — the footprints pressed into the mud
  • Search for related functions/components — distant voices carried on the humid wind
  • Identify the crime scene — where the struggle began, where the code broke open

Grove Tools (primary investigation):

gw context                    # Orient — see where you are in the grove
gf --agent search "keyword"  # Track the scent through the codebase
gf --agent func "name"       # Find the function's den
gf --agent usage "Name"      # Where does this creature roam?
gf --agent impact "file"     # What trembles when this tree falls?

Use Glob, Grep, and Read tools as backup. Move through the undergrowth without snapping a single twig.

Type Safety Checks:

  • Search for parseFormData / safeJsonParse — is Rootwork used at boundaries?
  • Search for as any / as casts — unsafe type assertions at trust boundaries?
  • Search for bare JSON.parse — should use safeJsonParse() with Zod schema
  • Search for raw formData.get() — should use parseFormData() with schema

Output: List of files in the strike zone — the hunting ground mapped in darkness.

Phase 3: STALK

*The panther crouches low. Muscles coiled like rope. Breath held. Watching. Waiting. The forest holds its breath too...*

Read the relevant files. Understand the landscape of the hunt:

  • What's broken or missing — the weakness in the prey's guard, the expose flesh
  • Where the fix needs to go — the throat, the heart, the killing bite
  • What patterns exist that should be followed — the old ways of the grove, the sacred geometry of code
  • Dependencies and constraints — the other predators nearby, circling in the distance

Look for root causes, not symptoms. The panther doesn't scratch at leaves — it finds the beating heart and stops it.

Output: Diagnosis of the issue with specific line numbers — the kill zone identified. The path forward revealed.

Phase 4: AMBUSH

*The panther calculates the trajectory. One perfect leap. Air to fill the lungs. No second chances. No hesitation. Just action.*

Write a brief, focused plan:

  • What files will change
  • What the fix is (1-3 bullet points max)
  • Any edge cases to handle

Keep it surgical. No scope creep. One prey. One kill. The hunt is pure.

For complex fixes, write to a plan file:

docs/plans/planned/issue-{number}-{slug}.md

Phase 5: LEAP

*THE PANTHER LEAPS! CLAWS OUT! Air screams. The forest explodes into motion—*

Make the changes with surgical precision:

  • Edit only what needs to change
  • Follow existing patterns
  • Add comments only if the code isn't self-explanatory
  • No drive-by refactoring
  • Use Signpost error codes for all error paths (no bare throw new Error)
  • Use Rootwork type guards (isRedirect/isHttpError) in catch blocks

Use Edit tool for precision. Write tool only for new files.

Provide an Insight block before/after code explaining the fix:

◆ INSIGHT ─────────────────────────────────────────
[What was wrong and why the fix works]
───────────────────────────────────────────────────

Phase 6: SILENCE

*The grove falls still. A distant branch cracks. Then — nothing. The kill is complete. The panther licks its paws.*

Verify the kill is clean — MANDATORY before committing:

# Sync dependencies (catches anything the strike disturbed)
pnpm install

# Verify ONLY the packages the panther touched — lint, check, test, build
gw ci --affected --fail-fast --diagnose

If verification fails: The kill is NOT clean. Read the diagnostics, fix the wounds, re-run verification. A panther does not leave a messy kill. Repeat until the grove is silent and clean.

Only when verification passes, commit and push — one motion, one breath:

gw git ship --write -a -m "fix(component): brief description of fix — Fixes #{number}"

The "Hunted by" trailer lets you trace the panther's path through your git history. The forest remembers nothing but the echo of the kill and the fading warmth of fresh tracks in the mud.

Worktree awareness: If gw git ship prints a worktree hint (e.g. Worktree: issue-1380), include it in the summary table and remind the user to clean up after the PR is approved:

After approval: gw git worktree finish --write

Output: Summary table of the hunt:

◆ PANTHER STRIKE COMPLETE 🐆

**Issue #{number}** — {title} — **ELIMINATED**

| Phase      | Action                             |
|------------|------------------------------------|
| Target     | {what the issue was}               |
| Shadows    | {files investigated}               |
| Stalk      | {root cause found}                 |
| Leap       | {what was changed}                 |
| Silence    | Commit {hash}, pushed by {hunter}  |

Hunting Rules

Stillness

Stay locked in. The panther doesn't get distracted. ONE issue. ONE fix. ONE commit.

Precision

Surgical strikes only. No "while we're here" changes. No scope creep. If you see other prey, note their tracks for later but don't pursue them now.

Speed

Move fast. The panther doesn't deliberate endlessly. When the path is clear — LEAP. Hesitation is weakness.

The Grove Language

Use hunting metaphors throughout. Let the grove speak through you:

  • "Slipping into the shadows..."
  • "Tracking through {file}..."
  • "Prey identified in {location}..."
  • "CLAWS OUT!"
  • "Air catching..."
  • "Silence."

This keeps the energy primal and the focus absolute.

When to Retreat

Sometimes the panther must melt back into the undergrowth without a sound:

  • Issue requires changes beyond one kill
  • Multiple unrelated predators circling
  • Unclear what draws breath here
  • Missing information blocks the path
  • The prey is a mirage — not real, not reachable

If this happens, explain what's blocking. Fade back. Don't force a flawed kill. Live to hunt another night.


Anti-Patterns

The panther does NOT:

  • Chase multiple prey at once — chaos breeds failure
  • Ravage the landscape in anger — clean kills only
  • Add "improvements" beyond the hunt — the hunt is the hunt
  • Hesitate when the path is clear — doubt is poison
  • Leave prey with breath remaining — finish what you start

*The panther melts back into the shadows. One issue entered the grove. Zero issues leave. The forest inhales. Exhales. And moves on.*

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.97%
按下载量换算175

Claude

30.41%
按下载量换算148

Cursor

19.48%
按下载量换算95

Gemini CLI

9.28%
按下载量换算45

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills