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

mainmain 搜索

Agent Skill

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

总安装

222

周安装

9

GitHub Stars

1

下载量

70
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/sipengxie2024/superpower-planning --skill main

简介

main 用于查找和筛选相关信息。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

  • 适合在关键词搜索或任务场景中快速定位候选结果。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装前应确认权限范围、维护状态及是否触发联网或文件读写。
  • main 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

How to Access Skills

In Claude Code: Use the Skill tool. When you invoke a skill, its content is loaded and presented to you -- follow it directly. Never use the Read tool on skill files.

In other environments: Check your platform's documentation for how skills are loaded.

Using Skills

The Rule

Invoke relevant or requested skills BEFORE any response or action. Even a 1% chance a skill might apply means you should invoke the skill to check. If an invoked skill turns out to be wrong for the situation, you don't need to use it.

When multiple skills could apply: process skills first (brainstorming, debugging), then implementation skills (executing-plans, tdd).

If you're thinking "this doesn't need a skill" — it probably does. Check BEFORE any action.

Planning Context

When starting a complex task (multi-step, research, >5 tool calls):

  1. Check if .planning/ directory exists in the project root
  2. If NOT found, run ${CLAUDE_PLUGIN_ROOT}/scripts/init-planning-dir.sh to initialize it
  3. If FOUND, read the existing planning files to recover context (see Session Recovery below)

The .planning/ directory is your "RAM on disk" -- persistent working memory that survives context resets.

Session Recovery

On session start, check for an existing .planning/ directory. If found:

  1. Read .planning/progress.md -- Task Status Dashboard shows current status; session log shows what was done
  2. Read .planning/findings.md -- recall discoveries and decisions
  3. Run git diff --stat to see what changed since last session
  4. Update planning files with recovered context
  5. Continue with the task

Planning Approach Routing

When facing a non-trivial task (multi-step, architectural decisions, multi-file changes), do NOT automatically call EnterPlanMode or invoke brainstorming. Instead, present the choice to the user via AskUserQuestion:

Option 1: Quick Planning (Plan Mode) — Lightweight read-only exploration. Best for medium-scope tasks with known approach, quick alignment before implementation.

Option 2: Lightweight Execution — Fast structured execution with .planning/ tracking but no review loops or formal plans. Best for clear requirements, 2-5 files, <10 tasks. Code gets written in this session.

Option 3: Structured Brainstorming — Full brainstorming pipeline with design doc, spec interview, implementation plan. Best for complex features, creative design decisions, multi-file refactors.

Option 4: Stash Current Work — Pause unfinished work safely, save current .planning/ context into .planning/stash/, and switch away cleanly. Best when changing projects or waiting on external input.

When to skip this choice:

  • Trivial tasks (typo, single-line fix) → just do it, no planning needed
  • User explicitly requests one mode (e.g., "let's brainstorm", "/plan") → use what they asked for
  • Already inside plan mode or brainstorming → continue the current flow

After Plan Mode completes: If the approved plan reveals complex work (3+ tasks, multiple files), suggest transitioning to brainstorming/writing-plans for a formal implementation plan. Plan mode output can inform writing-plans — reference it, don't re-derive.

When Lightweight Execution is chosen: Invoke superpower-planning:lightweight-execute. This skill handles everything: .planning/ init, exploration, task checklist, implementation, verification, and finishing-branch. No further routing is needed.

Execution Routing

When the user requests plan execution (e.g., "execute the plan", "implement it", "start building"), do NOT directly invoke a single execution skill. Instead:

  1. If no plan exists at .planning/plan.md, invoke superpower-planning:writing-plans first.
  2. If a plan exists, present the execution strategy choice via AskUserQuestion:

- Subagent-Driven (this session, sequential) → superpower-planning:subagent-driven - Team-Driven (this session, parallel) → superpower-planning:team-driven - Parallel Session (separate session) → superpower-planning:executing-plans

  1. Recommend based on: high parallelism + heavy tasks → Team-Driven; light serial → Subagent-Driven; manual checkpoints → Parallel Session.

Available Skills

SkillPurpose
superpower-planning:planning-foundationPersistent file-based planning with.planning/ directory. Foundation layer inherited by all other skills.
superpower-planning:lightweight-executeFast structured execution for clear, medium-scope tasks (2-5 files). Skips formal plans and review loops, keeps .planning/ tracking and verification.
superpower-planning:brainstormingStructured brainstorming before implementation. Think before you code.
superpower-planning:spec-interviewRefine design docs through systematic deep questioning. Auto-invoked after brainstorming.
superpower-planning:writing-plansWrite detailed implementation plans with phases and checkpoints.
superpower-planning:executing-plansExecute plans in a separate session with batch execution and human checkpoints. One of 3 execution strategies — see Execution Routing.
superpower-planning:subagent-drivenExecute plans in this session, sequentially via fresh subagents with two-stage review. One of 3 execution strategies — see Execution Routing.
superpower-planning:team-drivenExecute plans in this session, in parallel via Agent Team with dedicated reviewer. One of 3 execution strategies — see Execution Routing.
superpower-planning:parallel-agentsRun multiple subagents in parallel for independent tasks.
superpower-planning:tddTest-driven development: write tests first, then make them pass.
superpower-planning:debuggingSystematic debugging: reproduce, isolate, fix, verify.
superpower-planning:git-worktreesUse git worktrees for parallel branch work without stashing.
superpower-planning:finishing-branchClean up and finalize a development branch before merge/PR.
superpower-planning:archivingArchive completed plans, consolidate memory, and reset.planning/ for the next task.
superpower-planning:stashingPause unfinished work, save it into .planning/stash/, and support later resume with stale-findings check.
superpower-planning:requesting-reviewPrepare and submit code for review with context and rationale.
superpower-planning:receiving-reviewProcess review feedback systematically and address all comments.
superpower-planning:verificationVerify work is complete and correct before declaring done.
superpower-planning:releasingBump versions, tag, and publish GitHub Releases with changelogs.

Stash / Resume Routing

  • When the user says they want to pause current unfinished work, switch projects, or come back later: use superpower-planning:stashing or /stash
  • When the user says they want to continue paused work, resume a previous project, or recover a stashed task: use /resume-stash
  • Resume must include a stale-findings check before execution continues

User Instructions

Instructions say WHAT, not HOW. "Add X" or "Fix Y" doesn't mean skip workflows.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.59%
按下载量换算26

Claude

28.12%
按下载量换算20

Cursor

18.94%
按下载量换算13

Gemini CLI

8.67%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills