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

xiaobai-activation-booster小白激活助推器

Agent Skill

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

总安装

2,976

周安装

124

GitHub Stars

公开资料未说明

下载量

992
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install xiaobai-activation-booster

简介

技能激活助推器 - 修复 40% 激活问题。优化触发器、描述和上下文,以便客服人员真正使用您的技能。

SKILL.md

name
skill-activation-booster
version
1.0.0
description
Skill Activation Booster - Fix the 40% activation problem. Optimize triggers, descriptions, and context so agents actually use your skills.
emoji
🚀
tags
[activation, optimization, skill, triggers, ai-agent]

Skill Activation Booster 🚀

Fix the 40% activation problem. Optimize triggers, descriptions, and context so agents actually use your skills.

The Problem

Tessl Research (April 2026) discovered a critical issue:

Agents only activate relevant skills ~40% of the time in unforced settings.

This means 60% of the time, agents ignore valuable skills they have access to. Your skill might be amazing, but if the agent never activates it, it's worthless.

Root Causes of Low Activation

1. Vague Triggers

❌ Bad: "Use this skill when working with databases"
✅ Good: "Trigger when user mentions: SQL, PostgreSQL, MySQL, 'query', 'database schema', 'migrate data'"

2. Missing Context Signals

❌ Bad: Description only mentions one use case
✅ Good: Description lists 5+ specific scenarios with example phrases

3. Generic Descriptions

❌ Bad: "A helpful tool for developers"
✅ Good: "PostgreSQL query optimizer - fix slow queries, analyze execution plans, suggest indexes"

4. Buried Instructions

❌ Bad: Key trigger words buried in paragraph 3
✅ Good: Trigger words in first 2 sentences of description

5. Competing Skills

❌ Bad: 3 skills all trigger on "git"
✅ Good: One skill for "git commit", another for "git branch", another for "git conflict"

Optimization Checklist

Phase 1: Trigger Audit

  • [ ] List all trigger words/phrases
  • [ ] Check if trigger words appear in user's natural language
  • [ ] Verify triggers don't overlap with other skills
  • [ ] Test: "Would this phrase activate the skill?"

Phase 2: Description Optimization

  • [ ] First 50 chars contain primary trigger
  • [ ] Description matches how users actually ask for help
  • [ ] Include 3-5 example user phrases that should trigger
  • [ ] Mention alternatives: "When user asks X OR Y OR Z"

Phase 3: Context Enhancement

  • [ ] Add "When NOT to use" section (reduces false activations)
  • [ ] Include common synonyms for key concepts
  • [ ] Add domain-specific terminology
  • [ ] List related but different scenarios

Phase 4: Activation Testing

  • [ ] Test with 10 natural user phrases
  • [ ] Verify skill activates when it should
  • [ ] Verify skill doesn't activate when it shouldn't
  • [ ] Adjust based on results

Optimization Template

## Skill Activation Profile

### Primary Triggers (must activate)
- "phrase 1"
- "phrase 2"
- "phrase 3"

### Secondary Triggers (should activate)
- "related phrase 1"
- "related phrase 2"

### Anti-Triggers (should NOT activate)
- "similar but different 1"
- "similar but different 2"

### Example User Messages That Should Trigger

1. "Can you help me optimize this SQL query?"
2. "The database is running slow"
3. "I need to add an index to my table"

### Example User Messages That Should NOT Trigger

1. "Can you optimize this Python code?" (not database)
2. "Help me design a database schema" (different skill)

### Optimized Description (first 80 chars)

[Primary trigger word] - [what it does] - [when to use]

Quick Wins

Add Trigger Phrases Section

## Trigger Phrases

This skill activates when user mentions:
- "query optimization"
- "slow query"
- "execution plan"
- "add index"
- "database performance"

Impact: +15-25% activation rate

Front-Load Key Terms

Before: "This is a comprehensive tool that helps with database operations including optimization..."

After: "SQL Query Optimizer - Fix slow queries and improve database performance. Use when user mentions 'slow query', 'execution plan', or 'add index'."

**Impact:** +10-20% activation rate

Add Synonyms

## Also Known As

Users might say:
- "tune my query" (same as optimize)
- "speed up my database" (same as improve performance)
- "why is my query slow" (same as query optimization)

Impact: +5-10% activation rate

Activation Rate Testing

Test Script

For each test phrase:
1. Present phrase to agent in isolation
2. Check if skill is activated
3. Record: activated (yes/no)
4. Calculate activation rate

Expected: 80%+ for direct triggers
Expected: 50%+ for secondary triggers
Expected: <10% for anti-triggers (false positives)

Test Phrases Template

## Test Phrases for [Skill Name]

### Direct Triggers (should activate 80%+)
| Phrase | Activated? | Notes |
|--------|------------|-------|
| [phrase 1] | ? | |
| [phrase 2] | ? | |
| [phrase 3] | ? | |

### Secondary Triggers (should activate 50%+)
| Phrase | Activated? | Notes |
|--------|------------|-------|
| [phrase 1] | ? | |
| [phrase 2] | ? | |

### Anti-Triggers (should activate <10%)
| Phrase | Activated? | Notes |
|--------|------------|-------|
| [phrase 1] | ? | |
| [phrase 2] | ? | |

Integration with Skill Quality Evaluator

After evaluating a skill's quality, use this skill to:

  1. Check activation reliability score
  2. If <80, run optimization checklist
  3. Re-test activation rate
  4. Iterate until ≥80%

License

MIT

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

89.98%
按下载量换算893

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills