← 返回
AI智能 中文

Action Bias

Stop agents from producing reports instead of taking action. Restructure prompts, cron jobs, and agent shifts so they DO things — send emails, post content,...
阻止代理生成报告而非采取行动。重构提示词、定时任务和代理轮班,使其执行具体操作——如发送邮件、发布内容等。
crewhaus
AI智能 clawhub v1.0.0 1 版本 100000 Key: 无需
★ 0
Stars
📥 642
下载
💾 6
安装
1
版本
#latest

概述

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

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-03-29 23:33 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

productivity

Focus Tracker

crewhaus
在压缩和会话重启之间保持对当前工作的持续专注。适用于开始多步骤项目、压缩后恢复等场景。
★ 0 📥 800
ai-intelligence

self-improving agent

pskoett
捕获经验教训、错误和纠正,以实现持续改进。使用时机:(1)命令或操作意外失败;(2)用户纠正……
★ 4,055 📥 795,189
ai-intelligence

Self-Improving + Proactive Agent

ivangdavila
自我反思+自我批评+自我学习+自组织记忆。智能体评估自身工作、发现错误并持续改进。
★ 1,349 📥 317,592