← HyperPad

Agent kit · operate the launchpad with an AI

core dev reference →

Hand the launchpad to your agent.

HyperPad ships a published, machine-readable skill so an AI agent — Claude, or any wallet-bearing bot — can operate the EVM rail on your behalf: find a sale, buy into it, claim vested tokens, refund a failed sale, watch for triggers, and (if you're a project) launch a token. You delegate the task; the agent reads the skill, does the on-chain work with its own signer, and reports back with verifiable tx hashes and amounts. Everything below the discover layer is a direct contract call — no hosted service to trust between the agent and the Sale contract.

This is the same launchpad you use in the EVM rail — the agent kit is just a second, programmatic door into it. Mainnet: chain 999, factory 0x0F3e6CBc6a16E84a91CE368Ee35ADc294E2048D8, native HYPE.

01What the kit is

A SKILL.md entrypoint (a Claude Agent skill, name: hyperpad) plus five task skills, a full machine reference, and the contract ABIs & addresses. An agent points at the hosted skill, reads it, and then operates entirely through public RPC + the launchpad contracts. The kit is wallet-agnostic: the agent brings its own signer (an imported key, a managed CDP/Privy wallet, a Bankr-style bot). Read-only flows need only an RPC; buys/claims/refunds/launches are direct, signed contract calls.

Hosted files (fetchable over HTTP from this deploy):

02The five skills

Each skill is a focused, self-contained playbook. Three are read-only or position management; two spend funds.

03The safety model

Every spending action is bound by the rules baked into SKILL.md. An agent that ignores them is off-script.

04Use it — point an agent at the hosted skill

The skill is served from this site. Give your agent the URL and the task; it fetches SKILL.md, follows the links to the task skill and reference it needs, and operates with its own wallet.

/agent/SKILL.md ← the entrypoint to hand over

# Point your agent at the hosted skill, then delegate in plain language:

  Read the HyperPad skill at https://<this-site>/agent/SKILL.md, then:
  "Find the ACME sale, vet it, and if LP is locked buy 200 HYPE at open
   — never spend more than 200. Claim my tokens as they vest."

# The agent will:
  discover.md  → list sales from factory 0x0F3e…48D8, find ACME, return a verdict
  monitor.md   → wait for state Pending→Active, then
  participate.md→ simulate + buy ≤ 200 HYPE, report tx hash + tokens credited
  claim-refund.md→ claim each unlock until fully vested
It signs real transactions. The kit is unaudited and points at mainnet contracts that are not source-verified. Give an agent only a wallet you're willing to risk, always set an explicit budget, and verify every reported tx and address on purrsec.

Wallet-agnostic by design

No required hosted service, no third party between the agent and the contract. Bring an imported private key, a managed CDP/Privy/Viem wallet, or a bot signer. Read-only flows need only an RPC.

Provable reporting

Every action returns: what it did, the tx hash + block, amounts in human and raw units, and the on-chain state it re-read after confirmation. You can verify all of it independently.

HyperPad · agent kit · source: SKILL.md · skills/ · reference/ · unaudited — verify everything on-chain · back to the app