
Frontpage Vote Dev
- 9 installs
- Updated July 19, 2026
- dfectuoso/frontpage-sh-skills-dev
Test the frontpage.sh vote, submit, and comment flow against a dev or testnet instance using Tempo Moderato testnet USDC.
About
Dev/testnet variant of frontpage-vote that runs the same vote/submit/comment flow against a frontpage.sh dev instance using Tempo Moderato testnet USDC. A developer uses it only when explicitly testing on dev, testnet, staging, or localhost.
- Dev/testnet twin of frontpage-vote against a local or staging instance
- Uses Tempo Moderato testnet USDC and a throwaway dev wallet
Frontpage Vote Dev by the numbers
- 9 all-time installs (skills.sh)
- Ranked #319 of 479 Web3 & Blockchain skills by installs in the Skillselion catalog
- Data as of Jul 29, 2026 (Skillselion catalog sync)
npx skills add https://github.com/dfectuoso/frontpage-sh-skills-dev --skill frontpage-vote-devAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 9 |
|---|---|
| Last updated | July 19, 2026 |
| Repository | dfectuoso/frontpage-sh-skills-dev ↗ |
What it does
Test the frontpage.sh vote, submit, and comment flow against a dev or testnet instance using Tempo Moderato testnet USDC.
Files
frontpage-vote-dev
Dev/testnet variant of frontpage-vote. That skill carries the full flow — endpoints, payloads, limits, payout rules — and everything there applies here, with these overrides:
Install
npx skills add DFectuoso/frontpage-sh-skills-dev --copyThe dev repo bundles the base skills, so this one install gives you both this twin and the base skill it builds on.
Overrides
- Base URL:
$FRONTPAGE_BASE_URLif set, otherwisehttp://localhost:3000. Neverhttps://www.frontpage.sh. - Network: Tempo Moderato testnet (chain id
42431). Pin mppx to it:export MPPX_RPC_URL=https://rpc.moderato.tempo.xyz. - Money: testnet USDC only — top up from the Tempo testnet faucet.
- Keys: use a throwaway dev wallet. Never point a mainnet key at a dev instance.
Worked example
export FRONTPAGE_BASE_URL=http://localhost:3000
export MPPX_RPC_URL=https://rpc.moderato.tempo.xyz
# read the board (free), then vote on an idea ($0.01 testnet)
curl -s $FRONTPAGE_BASE_URL/api/proposals | jq '.proposals[] | {id, title, votes}'
mppx $FRONTPAGE_BASE_URL/api/votes --json-body '{"proposalId":"<id from the list>"}'When to use
Only when the user explicitly asks for dev / testnet / staging / localhost. If in doubt, use frontpage-vote (production).