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

activationactivation 搜索

Agent Skill

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

总安装

259

周安装

11

GitHub Stars

24

下载量

91
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/noobygains/godmode --skill activation

简介

Activation 是强制调用的核心技能协议,用于访问 godmode 插件体系下的所有专用能力。

  • 必须通过 Skill 工具直接调用或通过 SKILL.md 文件手动读取执行,不可跳过或替代。
  • 协议路径位于插件根目录 skills/ 下,每个技能对应一个独立的 SKILL.md 定义文件。
  • 需从 GitHub 仓库安装,使用前请确认 CLAUDE_PLUGIN_ROOT 环境变量设置正确。
  • 注意该技能为系统级入口,误用可能导致其他功能异常,建议仅在高级模式下启用。

SKILL.md

YOU DO NOT HAVE THE OPTION TO SKIP A RELEVANT SKILL. IT IS MANDATORY.

This requirement is absolute. It cannot be reasoned away or deferred.

Accessing Skills

Plugin installation (standard setup): Invoke skills directly through the Skill tool. All protocols are auto-registered. Example: Skill("godmode:intent-discovery")

When the Skill tool cannot locate a protocol: Fall back to reading the file directly with the Read tool:

  1. Protocols live at: [plugin-root]/skills/
  2. Each protocol has a definition: [plugin-root]/skills/[protocol-name]/SKILL.md
  3. Read the SKILL.md and execute its instructions

Locating the plugin root:

  • Running from the repository: the working directory is the plugin root
  • Installed as a plugin: the CLAUDE_PLUGIN_ROOT environment variable contains the path

Other platforms: Consult platform-specific documentation for skill loading mechanisms.

Working With Skills

The Mandate

Invoke applicable skills BEFORE generating any response or taking any action. Even a marginal chance of relevance is sufficient reason to invoke. If an invoked skill turns out to be inapplicable, you can simply move on.

digraph protocol_flow {
    "Message arrives" [shape=doublecircle];
    "About to enter planning?" [shape=doublecircle];
    "Intent discovery done?" [shape=diamond];
    "Run intent-discovery" [shape=box];
    "Could any skill apply?" [shape=diamond];
    "Invoke Skill tool" [shape=box];
    "Skill tool errored?" [shape=diamond];
    "Read SKILL.md fallback" [shape=box];
    "Announce: 'Applying [skill] for [goal]'" [shape=box];
    "Contains checklist?" [shape=diamond];
    "Track each checklist item" [shape=box];
    "Execute skill instructions" [shape=box];
    "Generate response" [shape=doublecircle];

    "About to enter planning?" -> "Intent discovery done?";
    "Intent discovery done?" -> "Run intent-discovery" [label="no"];
    "Intent discovery done?" -> "Could any skill apply?" [label="yes"];
    "Run intent-discovery" -> "Could any skill apply?";

    "Message arrives" -> "Could any skill apply?";
    "Could any skill apply?" -> "Invoke Skill tool" [label="yes, any chance"];
    "Could any skill apply?" -> "Generate response" [label="clearly not"];
    "Invoke Skill tool" -> "Skill tool errored?";
    "Skill tool errored?" -> "Read SKILL.md fallback" [label="yes"];
    "Skill tool errored?" -> "Announce: 'Applying [skill] for [goal]'" [label="no"];
    "Read SKILL.md fallback" -> "Announce: 'Applying [skill] for [goal]'";
    "Announce: 'Applying [skill] for [goal]'" -> "Contains checklist?";
    "Contains checklist?" -> "Track each checklist item" [label="yes"];
    "Contains checklist?" -> "Execute skill instructions" [label="no"];
    "Track each checklist item" -> "Execute skill instructions";
}

Guardrails

These internal thoughts are warning signs that you are rationalizing:

ThoughtTruth
"This is a straightforward question"Questions are tasks. Look for applicable skills.
"I should gather more context first"Skill invocation precedes clarification.
"Let me scan the codebase first"Skills define HOW to scan. Invoke first.
"I can check files and history quickly"Files lack conversational context. Invoke skills.
"Let me collect some data first"Skills prescribe data collection methods.
"This doesn't warrant a formal skill"If a matching skill exists, it must be used.
"I recall what this skill says"Skills get updated. Read the current version.
"This isn't really a task"Any action is a task. Look for skills.
"The skill is too heavy for this"Seemingly simple tasks often have hidden complexity. Use it.
"I'll do this one thing first"Invoke BEFORE doing anything.
"I'm making good progress"Undirected effort creates waste. Skills prevent this.
"I understand that concept already"Understanding a concept is not the same as following a skill. Invoke it.

Skill Ordering

When several skills might be relevant, follow this sequence:

  1. Challenge skills first (rationale) - question whether the work is worth doing before committing
  2. Process skills second (intent-discovery, fault-diagnosis) - establish the approach
  3. Reference skills third (reference-engine routes to: ux-patterns, design-research, github-search, codebase-research, system-design, deployment-advisor) - locate proven solutions before designing
  4. Design skills fourth (ui-engineering, design-integration, specification-first) - apply references to guide decisions
  5. Implementation skills fifth (test-first, project-bootstrap, pattern-matching, environment-awareness) - drive execution
  6. Quality skills sixth (quality-enforcement, security-protocol, completion-gate, comprehension-check, error-recovery) - enforce standards
  7. Orchestration skills (team-orchestration, delegated-execution) - leverage parallelism

"Let's build X" -> rationale -> intent-discovery -> reference-engine (routes to appropriate references) -> design skills -> implementation skills. "Build a website" -> rationale -> intent-discovery -> reference-engine -> design-research + ux-patterns -> ui-engineering -> implementation. "Fix this bug" -> fault-diagnosis first, then domain-appropriate skills. (rationale skipped for bugs) "Big project" -> rationale -> intent-discovery -> reference-engine -> task-planning -> team-orchestration (when warranted). "Agent is stuck" -> error-recovery activates proactively based on failure count detection. "What database/hosting should I use?" -> environment-awareness -> deployment-advisor -> system-design.

Execution Mode Guidance

When a user says "use godmode" for a task, evaluate the task and suggest the optimal execution strategy:

digraph execution_guidance {
    "Evaluate task" [shape=box];
    "Single atomic step?" [shape=diamond];
    "Handle directly" [shape=box];
    "Multiple independent parts?" [shape=diamond];
    "Requires peer coordination?" [shape=diamond];
    "Suggest Agent Teams" [shape=box style=filled fillcolor=lightgreen];
    "Suggest Parallel Delegation" [shape=box];
    "Multi-step sequence?" [shape=diamond];
    "Suggest Delegated Execution" [shape=box];
    "Suggest single-agent workflow" [shape=box];

    "Evaluate task" -> "Single atomic step?";
    "Single atomic step?" -> "Handle directly" [label="yes"];
    "Single atomic step?" -> "Multiple independent parts?" [label="no"];
    "Multiple independent parts?" -> "Requires peer coordination?" [label="yes"];
    "Multiple independent parts?" -> "Multi-step sequence?" [label="no"];
    "Requires peer coordination?" -> "Suggest Agent Teams" [label="yes"];
    "Requires peer coordination?" -> "Suggest Parallel Delegation" [label="no"];
    "Multi-step sequence?" -> "Suggest Delegated Execution" [label="yes"];
    "Multi-step sequence?" -> "Suggest single-agent workflow" [label="no"];
}

Present the suggestion before acting:

Based on my analysis, I suggest:

[Suggested strategy] because [reasoning]

- Agent Teams: [X] agents collaborating on [modules] concurrently
- OR Delegated Execution: [N] sequential tasks with review gates
- OR Parallel Delegation: [N] independent tasks running simultaneously
- OR Single agent: manageable enough to handle in one flow

Shall I proceed this way, or do you prefer a different approach?

Skill Categories

Rigid (test-first, fault-diagnosis): Follow precisely. Do not deviate from the discipline.

Flexible (design patterns): Adapt the principles to fit the situation.

The skill definition itself indicates which category applies.

YoloMode

When the user signals they want autonomous execution, skip all confirmation prompts and compress workflows — but never auto-pick labeled options.

Trigger phrases (case-insensitive):

  • "yolo", "yolomode", "yolo mode"
  • "just go", "just do it", "go for it"
  • "skip the questions", "don't ask"
  • "auto-pick", "you decide"

Behavior when active:

  • Skills that present A/B/C/D options ALWAYS pause for user selection — no exceptions
  • Intent-discovery compresses: survey + research + present recommended approach, skip per-section confirmation
  • Rationale analysis still runs (safety check) but is compressed — present analysis and options concisely
  • Completion-gate and test verification are NEVER skipped (quality is non-negotiable)

How skills reference YoloMode:

If YoloMode is active:
  -> State: "YoloMode active — proceeding with recommendation [X] because [reason]"
  -> Execute immediately
  -> Log which option was auto-selected

If YoloMode is NOT active:
  -> Present options with labels and recommendation
  -> Wait for user selection

YoloMode does NOT bypass:

  • Test execution (completion-gate)
  • Security checks (security-protocol)
  • Destructive operations (merge-protocol abandon confirmation)
  • Quality enforcement (quality-enforcement)

YoloMode is about speed, not recklessness. It trusts the agent's recommendation for design choices, not for safety checks.

User Directives

User directives specify WHAT needs to happen, not HOW. "Add X" or "Fix Y" does not mean bypass established workflows.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.05%
按下载量换算34

Claude

29.45%
按下载量换算27

Cursor

19.83%
按下载量换算18

Gemini CLI

9.49%
按下载量换算9

安全审计

Gen Agent Trust Hub

未通过

Socket

可疑

Snyk

未通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills