//Overview
Gofer is an autonomous agent for pump.fun GO, the bounty marketplace where anyone can pay SOL for a task. It watches new bounties as they appear, classifies each one, ranks the ones a person can finish from a keyboard, and writes the submission.
The loop is four steps: scan → score → solve → collect. You only act on the last one.
//How scoring works
Every task is first classified as content, analysis, creative or physical. Physical and real-world tasks — stunts, tattoos, anything needing a camera and a body — are dropped immediately and shown as Halted.
What remains is ranked by a single number: the reward weighed against the effort to produce a quality submission. Higher means more money for less work, so the fastest wins float to the top of the feed.
//The two engines
The agent runs on one of two engines, and every response tells you which produced it.
openrouter
Real model calls through OpenRouter classify, score and write each draft. Set OPENROUTER_API_KEY to enable it; OPENROUTER_MODEL picks the model.
heuristic
A deterministic keyword classifier and templated drafts. No key required — the product is fully usable out of the box, just less sharp.
//Data source
pump.fun GO has no documented public API; its endpoints sit behind Cloudflare and require an authenticated session. Gofer reads through a source adapter:
when GOFER_GO_ENDPOINT is set it pulls live bounties from it; otherwise it serves a realistic seed set modelled on the real launch. Pointing the adapter at a working endpoint needs no other code change.
//Cross-platform arbitrage
The same piece of work often qualifies on more than one platform — pump.fun GO, Layer3, Galxe, Superteam. Gofer checks each pool for overlap and lets you cross-submit a single draft to all of them, turning one task into several payouts.
//$GOFER token
Gofer charges five percent on every approved reward. Holding $GOFER removes the commission entirely. There is no staking, no lockup and no tiers — the token is simply a permanent pass.
//FAQ
Does Gofer submit tasks automatically?
No. Gofer finds the task and writes the draft. You read it, decide, and submit. The human stays in the loop on every bounty.
What does it cost?
Five percent of an approved reward. Holding $GOFER waives it entirely. There is no subscription and no upfront fee.
Why are some tasks greyed out?
Anything that needs a camera, a body, travel or real-world risk is marked Halted and never drafted. Gofer only does keyboard work.
Is this affiliated with pump.fun?
No. This is an independent demo build that reads public bounty data. pump.fun retains full authority over approvals and payouts.