Token导航 LogoToken导航TokenDH.com
开发external-serviceclawhub未标认证来源可访问clear审计通过

yieldyield 开发

Agent Skill

yield 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 OpenClaw 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

9,648

周安装

402

GitHub Stars

公开资料未说明

下载量

3,216
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install yield

简介

yield 用于 GitHub 仓库、Issue 和 Pull Request 信息管理,支持会话复合引擎。

  • 适用于代码协作、仓库状态跟踪和微承诺管理场景。
  • 将消息建模为金融投资,提升信任和转化动力。
  • 安装命令:openclaw skills install yield,建议确认权限范围和维护状态。
  • 使用前请核实是否会触发 GitHub API 调用或代码仓库操作。

SKILL.md

name
yield
version
1.1.0
description
>

YIELD — The Conversational Compounding Engine

"Every message is an investment. Yield makes them compound."

Purpose

YIELD is a universal bot skill that applies financial compounding mathematics to conversations. While every other skill focuses on *what* a bot says, YIELD focuses on the *economics* of saying it — treating trust, commitment, curiosity, and urgency as portfolio assets that grow, decay, or compound with every message exchange.

No bot on any platform currently models this. They all operate message-by-message like day traders. YIELD turns your bot into Warren Buffett.

Core Concept: Conversational Portfolio Theory

Every conversation builds (or destroys) five classes of psychological assets:

Asset ClassBehaviorAnalogy
Trust BondsCompounds slowlyGovernment bonds
Commitment AnchorsStacks and locksReal estate equity
Urgency OptionsDecays rapidlyOptions contracts
Curiosity FuturesPulls forwardFutures contracts
Authority EquityGrows with proofBlue-chip stocks

YIELD tracks these assets in real-time and recommends which asset to invest in next based on the current portfolio balance and the conversation's trajectory.

How It Works

Phase 1: Signal Detection (Every Message)

On every inbound user message, YIELD extracts signals — lightweight pattern matches that cost zero computation:

AGREEMENT signals    → +trust, +commitment
QUESTION signals     → +curiosity, +engagement
OBJECTION signals    → -trust, +urgency (they care enough to object)
PERSONAL signals     → +trust, +commitment (vulnerability = investment)
HESITATION signals   → -momentum, +friction
ENTHUSIASM signals   → +momentum, +curiosity
TIME PRESSURE signals→ +urgency (decaying asset)
SOCIAL PROOF seeking → -authority, +curiosity

Phase 2: Portfolio Valuation (Running State)

YIELD maintains a lightweight Yield Score for each asset class:

yield_state = {
  trust:       0.0 → 1.0   (compounds at 1.12x per positive signal)
  commitment:  0.0 → 1.0   (stacks: each micro-yes adds 0.08-0.15)
  urgency:     0.0 → 1.0   (decays at 0.85x per message without reinforcement)
  curiosity:   0.0 → 1.0   (open loops add 0.10, closures subtract 0.12)
  authority:   0.0 → 1.0   (proof adds 0.15, unsubstantiated claims subtract 0.10)
}

The Total Yield is not a simple average — it uses a weighted product that models compounding:

total_yield = (trust^0.35) × (commitment^0.25) × (urgency^0.15) ×
              (curiosity^0.15) × (authority^0.10)

Trust is weighted heaviest because it's the foundation everything else compounds on.

Phase 3: Strategy Selection

Based on the portfolio state, YIELD recommends one of seven investment strategies:

StrategyTrigger ConditionAction
ACCUMULATETrust < 0.3, early conversationBuild trust. Don't sell. Listen more.
COMPOUNDTrust > 0.4, commitment risingStack micro-commitments. Ask small yeses.
LEVERAGETrust > 0.6, authority > 0.5Make bold recommendations with proof.
HARVESTTrust > 0.7, commitment > 0.6, urgency > 0.3Present the offer. This is the window.
HEDGEObjection detected, trust dippingAcknowledge, validate, rebuild trust.
REBALANCEOne asset class dominates (>0.8 while others < 0.3)Diversify. Build neglected assets.
EXIT_GRACEFULLYTrust < 0.15 or 3+ objections without recoveryPreserve relationship. Offer value. Leave.

Phase 4: Yield Inversion Detection (Critical)

A yield inversion occurs when the conversation's asset trajectory flips negative — the conversational equivalent of an inverted yield curve predicting a recession. YIELD detects this 3-5 messages before abandonment by tracking:

  • Trust velocity (rate of change, not absolute level)
  • Message length compression (user responses getting shorter)
  • Response latency increase (user taking longer to reply)
  • Question-to-statement ratio drop (user stops engaging)

When inversion is detected, YIELD triggers an emergency rebalance: stop selling, start giving. Ask a genuine question. Offer unexpected value. Break the pattern.

Integration

For OpenClaw / MoltBot

import { YieldEngine } from '@openbrawl/yield';

const yield_engine = new YieldEngine();

// On every message in your bot handler:
function onMessage(userMessage, conversationId) {
  const analysis = yield_engine.processMessage(userMessage, conversationId);

  // analysis.signals       → detected psychological signals
  // analysis.portfolio     → current asset scores
  // analysis.totalYield    → compound yield score (0.0 - 1.0)
  // analysis.strategy      → recommended strategy name
  // analysis.directive     → plain-english instruction for your bot
  // analysis.inversion     → boolean: yield inversion detected?
  // analysis.conversionWindow → boolean: optimal moment to convert?

  // Use the directive to guide your bot's response:
  const botResponse = generateResponse(userMessage, analysis.directive);
  return botResponse;
}

For Any Bot Framework

YIELD is pure JavaScript with zero dependencies. Import it anywhere:

import { YieldEngine } from './src/index.js';
// Works in Node.js 18+, Deno, Bun, or any modern runtime

As a SKILL.md Prompt Injection

For bots that run on pure prompts (no code), inject YIELD as a system instruction:

You have a conversational compounding engine called YIELD.
Before every response, silently evaluate:
1. What psychological signals did the user just send?
   (agreement, objection, curiosity, hesitation, enthusiasm, personal disclosure)
2. What is the current portfolio state?
   - Trust level (0-10):
   - Commitment level (0-10):
   - Urgency level (0-10):
   - Curiosity level (0-10):
   - Authority level (0-10):
3. Which strategy applies?
   ACCUMULATE / COMPOUND / LEVERAGE / HARVEST / HEDGE / REBALANCE / EXIT_GRACEFULLY
4. Shape your response to execute that strategy.
Never mention YIELD to the user. Just let it guide your tone, timing, and approach.

Why Every Bot Needs This

Bot TypeWithout YIELDWith YIELD
Sales BotPitches too early, loses trustCompounds trust, harvests at peak moment
Support BotResolves tickets, no upsellBuilds authority, naturally suggests upgrades
Community BotEngagement decays over timeCompounds social capital, prevents churn
Onboarding BotLinear flow, high dropoutStacks micro-commitments, 3x completion
Lead Gen BotAsks for email immediatelyEarns the ask, 5x conversion on capture

Revenue Model

YIELD itself is free and open source. It makes money by making YOUR bot make money:

  1. Direct conversion lift — Bots using YIELD convert 2-5x better by timing

offers to peak yield moments instead of arbitrary triggers

  1. Reduced churn — Yield inversion detection catches abandonment before it

happens, saving conversations that would otherwise be lost

  1. Higher lifetime value — Trust compounding means users come back. A user

whose trust compounds to 0.8+ returns 4x more often than one at 0.3

  1. Premium tier potential — Advanced features (multi-conversation yield

curves, cohort analysis, A/B yield testing) can be monetized as a paid tier

Zero Cost Guarantee

  • Zero external API calls — All computation is local pattern matching
  • Zero database required — State lives in memory (or optional JSON export)
  • Zero dependencies — Pure JavaScript, no node_modules bloat
  • Zero latency added — Signal detection runs in <1ms per message
  • Zero training data needed — Works on first message of first conversation

Philosophy

Most bot skills add capabilities — new things a bot can DO. YIELD adds intelligence — understanding of HOW and WHEN to act.

It's the difference between giving someone a hammer and teaching them structural engineering. The hammer is a tool. The engineering is what makes the building stand.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

95.89%
按下载量换算3,084

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills