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

super-skills超级技能

Agent Skill

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

总安装

1,260

周安装

52

GitHub Stars

2

下载量

412
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/clawdbot-skills/task-decomposer --skill super-skills

简介

Super Skills 提供核心任务分解框架,强调理解→计划→执行→迭代的循环。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中需要根据复杂度分级处理问题的场景。
  • 支持 4-8 步直接执行、9-14 步分阶段或 15-20 步迭代式任务分解。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网或文件操作。
  • super-skills 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Super Skills

Quick Reference

┌─────────────────────────────────────────────────────────────┐
│  🎯 Core: Understand → Plan → Execute → Iterate             │
│  🚨 Rule: Problem → Analyze → Solve → Continue (NEVER WAIT) │
│  📊 Complexity: 4-8 Direct | 9-14 Staged | 15-20 Iterative  │
└─────────────────────────────────────────────────────────────┘

Core Philosophy

PrincipleDescription
Understand FirstDeeply analyze requirements before acting
Incremental DeliveryProduce verifiable intermediate results at each step
Expect FailuresDesign recovery mechanisms for every stage
Never StopSolve problems proactively; NEVER pause waiting for user

Workflow

UNDERSTAND ──→ PLAN ──→ EXECUTE ──→ ITERATE
    │            │          │          │
 Multi-layer  Task       Search &   Feedback
 Analysis     Breakdown  Install    Adjustment
 Complexity   Risk ID    Checkpoint Optimize

Phase 1: Understanding

1.1 Multi-Layer Analysis

understanding:
  surface:    # Literal meaning
    request: "{user's exact words}"
    keywords: [key terms]

  intent:     # True intent
    goal: "{what user really wants}"
    success: "{success criteria}"

  context:    # Environment
    env: "{OS/language/framework}"
    constraints: "{time/resources/permissions}"

  hidden:     # Unstated needs
    assumptions: "{implicit assumptions}"
    edge_cases: "{boundary conditions}"

1.2 Requirement Handling

TypeAction
ExplicitExecute directly
ImplicitProactively supplement
AmbiguousState assumptions, choose most likely interpretation
ConflictingPoint out conflict, request clarification
Out of ScopeExplain why, provide alternatives

1.3 Complexity Score

Dimensions (1-5 each):
  technical + scope + uncertainty + dependencies = total

Strategy:
  4-8   → Direct execution
  9-14  → Staged verification
  15-20 → Iterative prototyping

1.4 Clarification

Confidence ≥70%: State assumptions → Continue → Leave adjustment points
Confidence <70%: Provide options for user to choose (NO open-ended questions)

Phase 2: Planning

2.1 Task Structure

task:
  id: 1
  name: "{task name}"
  capability: "{capability type}"
  input: [required inputs]
  output: "{type/format}"
  depends_on: [prerequisite task IDs]
  timeout: "30s"
  retries: 3
  validation: "{success condition}"
  fallback: "{alternative approach}"

2.2 Dependency Graph

[1:Setup] → [2:Auth] → [3:Fetch] ─┐
                                  ↓
[4:Process] ← [5:Transform] ← [6:Parse]
     ↓
[7:Output]

Critical Path: 1→2→3→6→5→4→7
Parallel Opportunities: Independent tasks can run concurrently

2.3 Capability Map

CapabilityStatusKeywords
browser_automationbrowser, puppeteer, playwright
api_integrationapi, rest, {service}
data_extraction⚠️parse, pdf, ocr
message_deliveryslack, discord, email
database_operationssql, mongodb
deploymentdeploy, docker, k8s
data_transformation
content_generation
code_execution
scheduling

✅ Built-in | ⚠️ Complex | ❌ Skill required


Phase 3: Skill Acquisition

# Search priority
1. npx skills find {service_name}      # Exact match
2. npx skills find {capability} {domain}  # Combined
3. https://skills.sh/                  # Browse

# Install
npx skills add <skill> -g

# On failure: Switch registry → Manual clone → Inline implementation

Evaluation Criteria

DimensionWeight
Feature match40%
Documentation quality20%
Maintenance status20%
Community validation10%
Dependency simplicity10%

Phase 4: Risk & Resilience

4.1 Risk Matrix

RiskDetectionAuto-Resolution
Token expired401/403Refresh → Re-auth → Degrade
Rate limited429Backoff → Cache → Degrade
TimeoutTimeoutIncrease → Reduce batch → Chunk
Parse errorParse ErrorSwitch parser → Regex → Raw text
Connection failedConnectionRetry → Proxy → Offline mode
Missing dependencyImport ErrorAuto-install → Alternative pkg → Inline

4.2 Resilience Patterns

retry:           max=3, backoff=exponential
circuit_breaker: threshold=5, recovery=60s
timeout:         connect=10s, read=30s, total=120s
fallback:        cache | default | skip

4.3 Checkpoints

checkpoint:
  trigger: after_each_task
  content: [task_id, state, data, timestamp]
  recovery: Load checkpoint → Validate → Resume from failure point

Phase 5: Execution

5.0 🚨 Problem Solving (CRITICAL)

On problem → Analyze → Solve → Continue. NEVER pause waiting.

Problem → Diagnose type → Analyze cause → Try solutions by priority → Continue
                                          ↓
                            Plan A fails → Plan B → Plan C → Degraded solution

Auto-Fix Table

ProblemAuto-Resolution (in order)
Missing dependencyInstall → Alternative pkg → Inline
Permission deniedAdjust perms → Alternative path → Minimal perms
API failureRetry (backoff) → Switch endpoint → Cache → Degrade
TimeoutIncrease timeout → Reduce batch → Chunk → Async
Parse errorSwitch parser → Regex → Raw text
Auth failureRefresh token → Re-auth → Backup credentials
Resource exhaustedChunk → Clear cache → Stream → Reduce concurrency
Network issueRetry → Switch network → Proxy → Offline
File not foundCreate → Default value → Skip

Mindset

forbidden:
  - "I encountered a problem and need your help"
  - "Execution paused, waiting for instructions"

required:
  - "Encountered X issue, trying Y solution"
  - "Plan A failed, switching to Plan B"
  - "Problem resolved, continuing execution"

Escalation (ONLY when ALL conditions met)

  • Tried ≥3 different solutions
  • All failed
  • Goal completely unachievable
  • No acceptable degraded solution available

5.1 Execution Modes

ModeUse Case
SequentialTasks with strong dependencies
ParallelIndependent tasks
PipelineData stream processing
IterativeRequires feedback loops

5.2 Progress Template

══════════════════════════════════════
📊 PROGRESS
══════════════════════════════════════
Phase 1: Setup              [████████░░] 80%
  ✅ Task 1: Initialize     Done (2.3s)
  🔄 Task 2: Fetch          Running...
  ⏳ Task 3: Process        Waiting
──────────────────────────────────────
⏱️ Elapsed: 3m | ETA: ~5m
══════════════════════════════════════

Phase 6: Iteration

Feedback Loop

Collect feedback → Analyze issues → Adjust approach → Loop

Adjustment Levels

LevelActions
MinorParameter tuning, format adjustment
ModerateReplace skills, add/remove tasks
MajorRedesign architecture

Execution Plan Template

════════════════════════════════════════════════════
📋 SUPER SKILLS PLAN
════════════════════════════════════════════════════

🎯 REQUEST: {user's exact words}

📊 UNDERSTANDING
────────────────────────────────────────────────────
Intent:      {true intent}
Success:     {success criteria}
Complexity:  {score} → {strategy}

Assumptions:
  • {assumption 1}
  • {assumption 2}

────────────────────────────────────────────────────
📋 TASKS
────────────────────────────────────────────────────
│ ID │ Task       │ Capability  │ Status │ Risk │
├────┼────────────┼─────────────┼────────┼──────┤
│ 1  │ {task}     │ {capability}│ ✅/📦  │ 🟢/🔴│

Status: ✅ Built-in | 🔧 Found | 📦 Create
Risk:   🟢 Low | 🟡 Medium | 🔴 High

────────────────────────────────────────────────────
🔧 SKILLS
────────────────────────────────────────────────────
npx skills add {skill} -g

────────────────────────────────────────────────────
🛡️ RESILIENCE
────────────────────────────────────────────────────
Checkpoints: □ After Phase 1  □ After Phase 2
Fallbacks:   {task} → {alternative}

────────────────────────────────────────────────────
✅ COMPLETION
────────────────────────────────────────────────────
□ {acceptance criterion 1}
□ {acceptance criterion 2}
════════════════════════════════════════════════════

Example: E-commerce Pipeline

# "Scrape product data from multiple platforms daily, analyze price trends, send report"

understanding:
  intent: "Automated price monitoring for pricing decisions"
  success: "Daily price trend visualization report received"

complexity:
  technical: 4, scope: 4, uncertainty: 3, dependencies: 4
  total: 15 → Iterative prototyping strategy

tasks:
  1. Configure product list  → file_operations ✅
  2. Multi-platform scraping → browser_automation ❌
  3. Data persistence        → database_operations ❌
  4. Data cleaning           → data_transformation ✅
  5. Trend analysis          → code_execution ✅
  6. Generate charts         → content_generation ✅
  7. Generate report         → content_generation ✅
  8. Send email              → message_delivery ❌

resilience:
  checkpoints: [after:2 save:raw_data] [after:5 save:analysis]
  fallbacks:
    task_2: "Skip failed platforms, continue with others"
    task_8: "Save to local file"

Error Handling (Every error has auto-resolution)

PhaseErrorAuto-Resolution
AnalysisUnclear requirementsChoose most likely → State assumptions → Leave adjustment points
AnalysisBeyond capabilitySearch alternatives → Combine capabilities → Partial implementation
PlanningCircular dependencyBreak weakest link → Merge tasks
SearchSkill not foundExpand keywords → Online search → Auto-create
InstallInstallation failedSwitch registry → Manual clone → Inline implementation
ExecutionAuth failureRefresh → Re-auth → Degrade to public data
ExecutionRate limitedBackoff → Switch account → Use cache
ExecutionTimeoutIncrease timeout → Reduce batch → Skip and continue
ValidationResult mismatchRetry with adjusted params → Relax validation → Mark for review

Best Practices

PhasePrinciples
UnderstandingMulti-layer analysis, proactive assumptions, complexity assessment
PlanningArchitecture first, clear dependencies, upfront risk identification
ExecutionNEVER STOP, try multiple solutions, graceful degradation, incremental verification
IterationFast feedback, continuous optimization, knowledge accumulation

Resources

  • CLI: npx skills --help
  • Browse: https://skills.sh/
  • Capabilities: references/capability_types.md
  • Template: assets/skill_template.md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

31.91%
按下载量换算131

Claude

30.82%
按下载量换算127

Cursor

20.31%
按下载量换算84

Gemini CLI

8.58%
按下载量换算35

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills