← 返回
未分类 中文

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...
为代理提供按次计费的AI二次意见。使用POST /think接口,提供提示、买方钱包及可选专业,以获取来自专门提供商的路由响应。
proteeninjector-max proteeninjector-max 来源
未分类 clawhub v1.0.1 1 版本 99729.7 Key: 无需
★ 0
Stars
📥 369
下载
💾 1
安装
1
版本
#latest

概述

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

版本历史

共 1 个版本

  • v1.0.1 当前
    2026-03-31 07:43 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ai-agent

self-improving agent

pskoett
捕获经验教训、错误及修正内容,以实现持续改进。适用于以下场景:(1)命令或操作意外失败;(2)用户纠正Claude(如“不,那不对……”“实际上……”);(3)用户请求的功能不存在;(4)外部API或工具出现故障;(5)Claude发现自身
★ 4,094 📥 820,483
ai-agent

Self-Improving + Proactive Agent

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

ontology

oswalpalash
类型化知识图谱,用于结构化智能体记忆与可组合技能。适用于以下场景:创建/查询实体(人物、项目、任务、事件、文档)、关联相关对象、强制执行约束、将多步操作规划为图谱变换,或当技能需要共享状态时。触发关键词包括"记住""我知道关于什么""将X链
★ 725 📥 245,552