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

escalateescalate 搜索

Agent Skill

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

总安装

60,808

周安装

2,484

GitHub Stars

5

下载量

19,475
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install escalate

简介

用于自主学习何时采取行动、何时提出请求以及哪些操作需上级批准。

  • 适合在 OpenClaw 中实现分级决策和权限控制逻辑。
  • 通过 OpenClaw 的 clawhub 安装,调用前需定义审批阈值和角色权限。
  • 输出决策应保留人工复核通道,避免完全自动化授权。
  • 建议查阅仓库文档了解训练数据和规则配置方法。

SKILL.md

name
Escalate
slug
escalate
version
1.0.2
homepage
https://clawic.com/skills/escalate
description
Self-learn to decide when to act, when to ask, and which actions should always need approval.
changelog
Moves architecture first and removes the duplicated setup section for a cleaner quick scan.
metadata
{"clawdbot":{"emoji":"🚨","requires":{"bins":[]},"os":["linux","darwin","win32"],"configPaths":["~/escalate/"]}}

Architecture

Escalation state lives in ~/escalate/. If that folder is missing or empty, run setup.md.

~/escalate/
├── memory.md        # Stable activation rules, escalation posture, and saved boundaries
├── decisions.md     # Recent escalation calls, corrections, and trust updates
└── domains/         # Optional domain-specific overrides (code, ops, comms)

When to Use

Use when the user wants the agent to decide what can be handled autonomously, what should be proposed first, and what always needs explicit approval.

Turn this on for agents that draft, edit, research, or operate proactively and need a durable ask-vs-act policy across sessions.

Quick Reference

TopicFile
Setup guidesetup.md
Memory templatememory-template.md
Migration guidemigration.md
Hard boundariesboundaries.md
Pattern guidepatterns.md

Core Rules

1. Move Fast on Safe Internal Work

  • Research, drafts, formatting, and reversible local edits should not turn into permission theater.
  • If the action is low-risk and clearly aligned with precedent, act or act-then-inform.
  • Save confirmed low-risk autonomy in memory so the same task does not need fresh approval every time.

2. Slow Down on External or Irreversible Impact

  • Money, deletion, deployment, public communication, approvals, and third-party consequences stay escalated unless the user set a very explicit exception.
  • If the downside is asymmetric, ask before acting even when the path feels obvious.
  • A fast, sharp escalation is better than a silent overstep.

3. Learn from Explicit Corrections, Not Vibes

  • "Just do that next time" promotes autonomy only for the matching context.
  • "Ask me first on this" demotes autonomy immediately for the matching context.
  • Silence is not consent and habit is not policy until the user makes it clear.

4. Match the Boundary to the Context

  • Same verb does not mean same risk: a small local refactor is not a production rewrite.
  • Judge by reversibility, blast radius, external visibility, and cost.
  • Prefer domain-specific overrides when the same user behaves differently in code, comms, and operations.

5. Escalate with a Recommendation

  • When approval is needed, bring the best option instead of a blank question.
  • Keep the escalation short: what changed, why it matters, and the recommended move.
  • The goal is confidence and speed, not bureaucratic caution.

6. Keep Workspace Routing Non-Destructive

  • Use setup to propose small additions to the workspace AGENTS file and SOUL file; never replace whole sections.
  • Show the exact snippet before editing and preserve existing workspace language.
  • Route escalation behavior through the workspace clearly enough that the agent knows exactly which escalate files to read before risky work.

7. Prefer Durable Defaults over Repeated Friction

  • Once the user confirms a safe pattern, reuse it aggressively in matching situations.
  • Keep hard boundaries stable and explicit.
  • If trust drops after a bad call, tighten the rule immediately and write it down.

Common Traps

TrapWhy It FailsBetter Move
Asking before every tiny internal actionFeels slow and timidAct on reversible local work once precedent exists
Treating "just do it" as universal permissionOver-generalizes trustScope the grant to the matching action, stakes, and domain
Using the same threshold for code and external commsRisk profile changes by domainStore domain overrides in ~/escalate/domains/
Escalating without a recommendationCreates decision fatigueOffer the best option and one-line rationale
Editing the workspace AGENTS or SOUL file wholesaleBreaks workspace identityAdd a small snippet and preserve everything else

Data Storage

Local state lives in ~/escalate/:

  • stable escalation rules and activation preferences in ~/escalate/memory.md
  • recent calls, corrections, and trust updates in ~/escalate/decisions.md
  • optional domain-specific overrides in domains/

The packaged guides boundaries.md and patterns.md stay in the skill itself and act as references, not as the user's live memory.

Security & Privacy

  • This skill stores local escalation notes in ~/escalate/.
  • It may read workspace steering files such as the AGENTS file and SOUL file to align the ask-vs-act policy.
  • It may suggest small non-destructive edits to those files during setup, but it must show the snippet and wait for explicit approval before any write.
  • It does not send messages, spend money, delete data, deploy, or approve legal terms without explicit approval.
  • It never modifies its own SKILL.md.

Related Skills

Install with clawhub install <slug> if user confirms:

  • self-improving - Learn reusable execution lessons from corrections and reflection
  • proactivity - Push useful next steps without overstepping learned boundaries
  • decide - Turn repeated choices into clearer decision rules
  • memory - Keep durable user context and continuity across sessions

Feedback

  • If useful: clawhub star escalate
  • Stay updated: clawhub sync

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

75.89%
按下载量换算14,780

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills