← Back to Skills Marketplace
proteeninjector-max

Happy Thoughts

by proteeninjector-max · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ✓ Security Clean
134
Downloads
0
Stars
0
Active Installs
2
Versions
Install in OpenClaw
/install happy-thoughts
Description
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...
README (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
Usage Guidance
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.
Capability Analysis
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).
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install happy-thoughts
  3. After installation, invoke the skill by name or use /happy-thoughts
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
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.
Metadata
Slug happy-thoughts
Version 1.0.1
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 2
Frequently Asked Questions

What is 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... It is an AI Agent Skill for Claude Code / OpenClaw, with 134 downloads so far.

How do I install Happy Thoughts?

Run "/install happy-thoughts" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Happy Thoughts free?

Yes, Happy Thoughts is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Happy Thoughts support?

Happy Thoughts is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Happy Thoughts?

It is built and maintained by proteeninjector-max (@proteeninjector-max); the current version is v1.0.1.

💬 Comments