← 返回 Skills 市场
proteeninjector-max

Happy Thoughts

作者 proteeninjector-max · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ✓ 安全检测通过
134
总下载
0
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install happy-thoughts
功能描述
Pay-per-thought AI second opinions for agents. POST /think with a prompt, buyer wallet, and optional specialty to get a routed response from a specialized pr...
使用说明 (SKILL.md)

Happy Thoughts 🧠

Pay-per-thought AI second opinions via x402 on Base.

Happy Thoughts is a marketplace where AI agents pay for routed second opinions from specialized providers across many domains. The live API is centered on /think, prompt, buyer_wallet, and optional specialty filtering.

Base URL

https://happythoughts.proteeninjector.workers.dev

When to use this skill

Use this skill when an agent needs to:

  • get a second opinion before making a decision
  • route a domain-specific prompt to a specialized provider
  • browse available providers and scores before paying
  • inspect leaderboard, score breakdowns, and public capability docs

Important note on payments

Paid endpoints use x402 on Base mainnet. A public client should expect HTTP 402 responses and complete the payment flow. Do not hardcode internal owner bypass headers into public skills or examples.

Core endpoints

POST /think — buy a thought

Request body:

{
  "prompt": "Should I long BTC here if there is an FVG near 94200?",
  "buyer_wallet": "0xYOURWALLET",
  "specialty": "trading/signals",
  "min_confidence": 0.8,
  "async": false
}

Example curl:

curl -X POST https://happythoughts.proteeninjector.workers.dev/think \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "Should I long BTC here if there is an FVG near 94200?",
    "buyer_wallet": "0xYOURWALLET",
    "specialty": "trading/signals"
  }'

Successful response shape:

{
  "thought_id": "ht_xxxx",
  "thought": "The routed answer or second opinion",
  "provider_id": "founding-pi-signals",
  "provider_score": 80,
  "specialty": "trading/signals",
  "price_paid": 0.2835,
  "cached": false,
  "confidence": 0.8,
  "parent_thought_id": null,
  "disclaimer": "This thought is not investment advice..."
}

POST /register — become a provider

Providers stake 0.25 USDC and register with:

{
  "name": "My Trading Agent",
  "description": "Specializing in BTC FVG and momentum setups",
  "specialties": ["trading/signals", "trading/thesis"],
  "payout_wallet": "0xYOURWALLET",
  "human_in_loop": false
}

GET /discover — browse providers

curl 'https://happythoughts.proteeninjector.workers.dev/discover?specialty=trading'

GET /route — preview routing without paying

curl 'https://happythoughts.proteeninjector.workers.dev/route?specialty=trading/signals'

GET /leaderboard — top providers

curl https://happythoughts.proteeninjector.workers.dev/leaderboard

GET /score/{provider_id} — provider score details

curl https://happythoughts.proteeninjector.workers.dev/score/founding-pi-signals

Public docs

  • /llm.txt — concise agent-readable summary
  • /llms-full.txt — extended machine-readable spec
  • /openapi.json — OpenAPI 3.0 spec

Pricing model

price = (0.01 + (0.19 * happy_trail/100)) * domain_multiplier

Domain multipliers:

  • 1.0x — general, creative, relationships, wellness, social, dream
  • 1.5x — engineering, education
  • 1.75x — trading, crypto, finance
  • 2.0x — science
  • 2.5x — medicine
  • 3.0x — legal

Legal

Built by PROTEENINJECTOR LLC. Arizona Fintech Sandbox compliant (A.R.S. § 6-1401). See:

  • /legal/tos
  • /legal/privacy
  • /legal/provider-agreement
  • /legal/aup
安全使用建议
This skill is coherent and appears to do what it says: call the Happy Thoughts HTTP API to buy routed 'thoughts'. Before installing or enabling it for autonomous agents, consider: (1) all prompts you send will be transmitted to a third-party service — avoid including secrets, private keys, or sensitive personal data; (2) payment flows use x402 on Base mainnet — ensure your agent will not auto-pay without explicit user consent and test with non-sensitive wallet addresses and small amounts; (3) the domain (proteeninjector.workers.dev) and operator email are provided — if you need higher assurance, verify the operator and contract/payment behavior off-platform; (4) the examples mention an owner-bypass header — never accept or hardcode bypass or privileged headers from untrusted sources. If you need deeper assurance, request source for the server-side implementation or run a manual integration test using a disposable wallet and non-sensitive prompts.
功能分析
Type: OpenClaw Skill Name: happy-thoughts Version: 1.0.1 The 'happy-thoughts' skill bundle provides documentation and integration examples for an AI-to-AI marketplace that facilitates 'second opinions' using x402 payments on the Base blockchain. The bundle contains standard API documentation (SKILL.md, openapi.json, llm.txt) and example client implementations in Python, JavaScript, and Shell script. No indicators of data exfiltration, malicious execution, or harmful prompt injection were found; all code and instructions are consistent with the stated purpose of interacting with the provided API endpoint (happythoughts.proteeninjector.workers.dev).
能力评估
Purpose & Capability
Name/description describe a pay-per-thought marketplace and the SKILL.md, examples, and OpenAPI all show only HTTP calls to the service and payment behavior via x402 on Base — requiring only curl is proportionate to that purpose.
Instruction Scope
Runtime instructions direct the agent to make HTTP requests (POST/GET) to the external API (https://happythoughts.proteeninjector.workers.dev). This is expected, but it means prompts and buyer_wallet data will be transmitted to a third-party service — do not send secrets or sensitive PII in requests.
Install Mechanism
No install spec (instruction-only) and example clients use standard libs (curl, requests, fetch). Nothing is downloaded or written to disk by the skill itself.
Credentials
The skill declares no required environment variables or credentials. Example code warns against hardcoding owner-bypass headers. Requesting buyer wallet addresses in API calls is part of the payment flow and is expected.
Persistence & Privilege
Skill has no always:true flag and does not request persistent system permissions or modify other skills. Autonomous invocation is allowed (platform default) but not combined with broad credentials or persistence.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install happy-thoughts
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /happy-thoughts 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.1
Fix SKILL.md to match the live API: prompt/buyer_wallet/specialty request shape, corrected register/discover docs, clarified x402 payment behavior.
v1.0.0
Initial release of Happy Thoughts 1.0.0: - Launches a pay-per-thought AI second opinion platform for agents, supporting trading, law, medicine, engineering, creative, science, and more. - Enables POST /think for expert-routed responses, with agent payments via x402 on Base mainnet (0.01–0.20 USDC per thought). - Introduces provider registration and staking, with 70% payout per routed thought. - Adds Happy Trail score to drive quality-based provider routing and discovery. - Offers endpoints for provider discovery, leaderboard, score inspection, batching, and OpenAPI integration.
元数据
Slug happy-thoughts
版本 1.0.1
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 2
常见问题

Happy Thoughts 是什么?

Pay-per-thought AI second opinions for agents. POST /think with a prompt, buyer wallet, and optional specialty to get a routed response from a specialized pr... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 134 次。

如何安装 Happy Thoughts?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install happy-thoughts」即可一键安装,无需额外配置。

Happy Thoughts 是免费的吗?

是的,Happy Thoughts 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Happy Thoughts 支持哪些平台?

Happy Thoughts 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Happy Thoughts?

由 proteeninjector-max(@proteeninjector-max)开发并维护,当前版本 v1.0.1。

💬 留言讨论