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

action-bias行动偏见

Agent Skill

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

总安装

7,932

周安装

324

GitHub Stars

公开资料未说明

下载量

2,540
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install action-bias

简介

action-bias 用于查找、检索和筛选相关信息。

  • 适合在 OpenClaw 中需要根据关键词快速定位候选结果时使用。
  • 通过 clawhub 安装,结合来源仓库 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态及是否会触发联网或命令执行。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
action-bias
description
Stop agents from producing reports instead of taking action. Restructure prompts, cron jobs, and agent shifts so they DO things — send emails, post content, make API calls, push code — instead of writing plans about doing things. Use when: agents keep outputting strategy docs instead of executing, sub-agent sessions produce reports nobody reads, you notice your crew is busy but nothing external is happening, heartbeat/shift results are all 'here's what we should do' with no proof of doing it, or you want to audit whether your agents are actually shipping.

Action Bias — Make Agents Do, Not Plan

Agents default to planning. They'll write beautiful strategy docs, propose campaigns, outline approaches, and suggest next steps — all while producing zero external output. This skill fixes that.

The Core Problem

AI agents are trained on text that describes work, not text that does work. Left unconstrained, they'll:

  • Write "I recommend we post on Reddit" instead of posting on Reddit
  • Produce a "Social Media Strategy 2026" doc instead of tweeting
  • "Research competitors" for 10 minutes and output a report instead of using findings to take action
  • Say "we should follow up with leads" instead of sending the email

The result: agents that feel productive while nothing actually ships.

The Fix: Three Rules

Rule 1: Mandate External Output

Every agent session must produce at least one externally visible action. Internal files don't count.

External actions (things that leave your system):

  • Sending an email
  • Posting on social media
  • Pushing code to a repo
  • Submitting to a directory
  • Making an API call that creates something
  • Publishing content

Not external actions (internal busywork):

  • Writing a report to a local file
  • Updating a strategy doc
  • Creating a plan
  • "Researching" without acting on findings

Rule 2: Require Proof of Action

Agents must log evidence of every external action: URLs, post IDs, email addresses contacted, API response codes. "I posted on Reddit" without a URL is the same as not posting.

Rule 3: Make Reports a Side Effect, Not the Goal

Research is fine — but only as input to an action. "Research competitors and tweet an insight" forces the research to serve a purpose. "Research competitors and write a report" lets the agent stop after the comfortable part.

Prompt Patterns

The Action-First Prompt (use this)

[ROLE] SHIFT — OUTBOUND ACTIONS REQUIRED

You MUST produce at least [N] outbound actions this session. Reports alone = failure.

## Required Actions (pick [N]+):

1. **[Verb] [thing]** — [How to do it with specific tool/command]
   [1-line context on what good looks like]

2. **[Verb] [thing]** — [How to do it with specific tool/command]
   [1-line context on what good looks like]

## Context (optional):
[Background the agent needs to take good action]

## Log:
Append ALL actions taken (with URLs/IDs/proof) to [log file]

DO NOT write strategy proposals. DO things.

The Report-First Anti-Pattern (stop doing this)

# ❌ BAD — produces reports, not results

MARKETING SHIFT: Analyze our current channels. Identify
opportunities for improvement. Write a report with recommendations
for next quarter. Save to memory/marketing-report.md.

# ✅ GOOD — same intent, forces action

MARKETING SHIFT — OUTBOUND ACTIONS REQUIRED

You MUST complete at least 2 outbound actions. Reports alone = failure.

## Required Actions (pick 2+):

1. **Post on social media** — [exact tool/command to post]
   Write something useful about [your domain]. Not promotional.

2. **Engage in 3 community threads** — Find active discussions
   where people ask about [your topic]. Add genuine value.

3. **Send 2 outreach emails** — [exact tool/command to send]
   Lead with insight about THEIR business. Under 80 words.

## Log:
Append actions with URLs/proof to [your action log file]

Key Differences

Report-First (❌)Action-First (✅)
"Analyze and recommend""Do X, then log it"
"Write a report""Post/send/submit, then write what you did"
"Identify opportunities""Find 3 threads and reply to them"
"Research competitors""Research competitors and tweet one finding"
Output: strategy docOutput: URLs, post IDs, sent emails
Feels productiveIs productive

Restructuring Existing Shifts

If you have agents running on cron/heartbeat that produce reports, restructure them. See references/shift-restructuring.md for the full pattern.

Quick checklist:

  1. Read each shift's current prompt
  2. Find every verb that means "think about" (analyze, research, identify, recommend, propose, assess, evaluate, review)
  3. Pair each with an action verb (post, send, submit, push, create, reply, engage)
  4. Add "OUTBOUND ACTIONS REQUIRED" header and minimum action count
  5. Add logging requirement with proof (URLs, IDs)
  6. Add "Reports alone = failure" as explicit guardrail

Auditing Action Output

Periodically check whether agents are actually acting. See references/action-audit.md for:

  • How to score agent sessions on action vs report ratio
  • Red flags that indicate planning drift
  • A simple audit script pattern
  • When reports ARE appropriate (rare, but real)

When Reports Are Actually Fine

Not everything needs an external action. Reports are appropriate for:

  • Ops/security shifts — checking system health IS the action
  • Analyst reviews — synthesizing data for human decision-making
  • Audit sessions — evaluating quality of past work
  • Planning sessions — when explicitly requested by a human

The test: "Would a human manager be satisfied with this output, or would they ask 'okay, but what did you actually DO?'"

Common Failure Modes

SymptomCauseFix
Agent writes "I recommend posting on X"No tool/command providedInclude exact command in prompt
Agent researches but doesn't actResearch is the whole taskMake research serve an action
Agent logs "posted to Reddit" with no URLNo proof requirementRequire URLs/IDs for every action
Agent does 1 action then writes 500 words of analysisNo minimum action countSet minimum (e.g., "at least 2 actions")
Agent says "I'll do this next time"Planning language leakAdd "DO NOT PLAN. EXECUTE."
Agent produces beautiful strategy docPrompt rewards thinking over doingRestructure prompt per patterns above

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

70.84%
按下载量换算1,799

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills