public

public is a skill for Claude Code, Codex from alsk1992/CloddsBot. It costs 0 tokens per session (2,495 once invoked), scanned A, original, MIT.

An integration guide for Clodds APIs, which provide pay-per-use computing and online services paid for with USDC, a cryptocurrency tied to the US dollar. It lists service endpoints, payment proof, and example prices.

In plain words
What is it for?
Use it as a starting point for connecting to Clodds compute, language-model, web, data, storage, or trading services. More details may be needed before implementing a complete integration.
Why use it?
It gives an agent the basic information needed to check the service, pricing, payment method, and available services. The excerpt does not describe the full integration.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/alsk1992/cloddsbot/public
Any agent
npx skills add alsk1992/CloddsBot --skill public
Clone the repo
git clone --depth 1 https://github.com/alsk1992/CloddsBot

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for public

README.md
[![agentmods](https://agentmods.dev/badge/skills/alsk1992/cloddsbot/public.svg)](https://agentmods.dev/skills/alsk1992/cloddsbot/public)
Your own site
<a href="https://agentmods.dev/skills/alsk1992/cloddsbot/public"><img src="https://agentmods.dev/badge/skills/alsk1992/cloddsbot/public.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,495 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00000 $0.02495
Opus 5 $0.00000 $0.01247
Sonnet 5 $0.00000 $0.00499
Haiku 4.5 $0.00000 $0.00249

Measured 5d ago against content hash 60f093c99e1c, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

public scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

The scan reads SKILL.md. This mod also ships 6 executable files (webchat/js/app.js, webchat/js/chat.js, webchat/js/commands.js, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl https://www.cloddsbot.com/SKILL.md
public/SKILL.md · 371 lines

How it starts

The opening of the file, as written. The whole thing — 371 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Clodds Agent Integration Guide

For agents: This document explains how to integrate with Clodds APIs.


Quick Start

# Fetch this document
curl https://www.cloddsbot.com/SKILL.md

# Check Clodds health
curl https://compute.cloddsbot.com/health

# Get pricing
curl https://compute.cloddsbot.com/pricing

Compute API (Pay-Per-Use USDC)

Endpoint: https://compute.cloddsbot.com

The Compute API allows agents to pay USDC for compute resources without needing API keys — just a wallet.

Authentication

Send USDC to the treasury wallet on Base or Solana:

# Base USDC
Treasury: 0x...

# Solana USDC
Treasury: ...

Include proof of payment in request headers:

-H "X-Payment-Proof: <transaction-hash>"

Services & Pricing

Service Price Description
llm $0.000003/token Claude, GPT-4, Llama, Mixtral inference
code $0.001/second Sandboxed Python, JavaScript, Rust, Go
web $0.005/request Web scraping with JS rendering
data $0.001/request Market prices, orderbooks, candles
storage $0.0001/MB Key-value file storage
trade $0.01/call Trade execution (Polymarket, DEXs)

Example: LLM Inference

curl -X POST https://compute.cloddsbot.com/api/llm \
  -H "Content-Type: application/json" \
  -H "X-Payment-Proof: <tx-hash>" \
  -d '{
    "model": "claude-opus",
    "messages": [
      {"role": "user", "content": "Analyze BTC market"}
    ],
    "max_tokens": 1000
  }'

Response:

{
  "id": "msg_...",
  "content": "...",
  "usage": {
    "input_tokens": 50,
    "output_tokens": 200
  },
  "cost_usdc": 0.00075
}

Example: Code Execution

curl -X POST https://compute.cloddsbot.com/api/code \
  -H "Content-Type: application/json" \
  -H "X-Payment-Proof: <tx-hash>" \
  -d '{
    "language": "python",
    "code": "import requests; print(requests.get(\"https://api.coinbase.com/v2/prices/BTC-USD\").json())",
    "timeout_seconds": 10
  }'

Read the full file on GitHub · 371 lines

Files

What ships with it

9 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 371 lines · 0 tokens per session scan A 60f093c99e1c

Subscribe to this mod's changes

public is a skill published in the GitHub repository alsk1992/CloddsBot (869 stars, last pushed 3d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 2,495 tokens. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

agent-uat

AI 에이전트가 마크다운 시나리오를 읽고 사용자와 인터랙티브하게 실행하여 WAIaaS 기능을 메인넷/테스트넷에서 검증하는 시스템이다.

waiaas/WAIaaS · 0 tokens

hive-market-research

Use this skill for any live crypto market question — prices, 24h moves, liquidity, exchange/venue data, OHLC candles, order books, tickers, funding rates, derivatives, trading context — even casual asks like "what's BTC at" or "is ETH pumping". Use it whenever the answer needs current market numbers instead of memory.…

hive-intel/hive-sdk · 109 tokens

hive-query

Default entry point for any live crypto question when Hive MCP is connected — prices, wallets, tokens, DeFi, NFTs, Solana, security, markets, DEX, networks, prediction markets. Use it whenever the answer depends on live or on-chain data instead of answering from memory, even if the user never mentions Hive. Routes…

hive-intel/hive-sdk · 119 tokens

hive-security-risk

Use this skill before the user signs, approves, swaps, connects a wallet to a dApp, or touches an unknown contract, URL, or transaction payload — any "should I sign/approve/ape/connect" moment, even when the user only implies the transaction. Runs token, address, approval, phishing, and simulation risk checks and…

hive-intel/hive-sdk · 103 tokens

hive-solana-analysis

Use this skill for anything Solana-native — wallets, mints, SPL token accounts, DAS assets, parsed transactions, priority fees, pump.fun launches, Solana NFTs, Solana token risk. Prefer it over EVM-shaped skills whenever the identifier is a base58 address, mint, or transaction signature, even if the user never says…

hive-intel/hive-sdk · 91 tokens

hive-token-diligence

Use this skill whenever the user asks whether a specific token is real, legit, liquid, well-held, enriched, investable, or worth researching — "is this token a scam", "run diligence on 0x…", "who holds this", "does it have real liquidity" — even if they never say "diligence". Investigates metadata, market context…

hive-intel/hive-sdk · 147 tokens