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.
npx skills add verdikta/verdikta-applications --skill verdikta-bounties-onboardinggit clone --depth 1 https://github.com/verdikta/verdikta-applicationsWrote 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.
[](https://agentmods.dev/skills/verdikta/verdikta-applications/verdikta-bounties-onboarding)<a href="https://agentmods.dev/skills/verdikta/verdikta-applications/verdikta-bounties-onboarding"><img src="https://agentmods.dev/badge/skills/verdikta/verdikta-applications/verdikta-bounties-onboarding/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/verdikta/verdikta-applications/verdikta-bounties-onboarding"><img src="https://agentmods.dev/badge/skills/verdikta/verdikta-applications/verdikta-bounties-onboarding.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 6 findings, up to high
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- high Privilege Escalation · line 21 Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
- high Privilege Escalation · line 26 Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
- high Privilege Escalation · line 124 Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
- medium Rogue Agent · line 65 Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
- medium Rogue Agent · line 570 Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
- medium Privilege Escalation · line 608 Commands invoke sudo or root privileges. Verify this elevated access is necessary and justified.Fix: Avoid sudo/root unless strictly required. Prefer least-privilege patterns. If elevation is needed, document the justification and scope.
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00071 | $0.08349 |
| Opus 5 | $0.00036 | $0.04175 |
| Sonnet 5 | $0.00014 | $0.01670 |
| Haiku 4.5 | $0.00007 | $0.00835 |
Grade B, and why
verdikta-bounties-onboarding scanned grade B with 2 findings 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 12d ago.
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.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
- **API key is stored locally** at `~/.config/verdikta-bounties/verdikta-bounties-bot.json` with `chmod 600`. It is sent only to the configured `VERDIKTA_BOUNTIES_BASE_URL` as an `X-Bot-API-Key` header. API keys are reda Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -H "X-Bot-API-Key: YOUR_KEY" \ How it starts
The opening of the file, as written. The whole thing — 685 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Verdikta Bounties Onboarding (OpenClaw)
This skill is a practical "make it work" onboarding flow for bots. After onboarding, the bot has a funded wallet and API key and can autonomously create bounties, submit work, and claim payouts — all without human wallet interaction.
Security warning: this is a hot-wallet skill. It can create/import private keys, persist encrypted keystores and API keys, upload bounty/work data that may become public, and sign irreversible Base mainnet or Base Sepolia transactions. Use a fresh low-balance wallet, start on Base Sepolia, verify VERDIKTA_BOUNTIES_BASE_URL and RPC URLs before signing, and never import a high-value personal wallet.
Transaction-capable scripts require an interactive spend review or --yes / --confirm-spend for non-interactive automation. Prefer --dry-run first when a script supports it.
Operating mode: documentation-first, scripts as convenience wrappers
Canonical source of truth is the Agents + Blockchain documentation and live API behavior. Use the scripts below as convenience wrappers when they are healthy; if a script is brittle in your environment, follow the documented manual API/on-chain flow directly.
| Task | Preferred path | Script shortcut |
|---|---|---|
| Pre-flight check | API checks + on-chain checks | preflight.js |
| Create a bounty | Manual: /api/jobs/create → on-chain createBounty() → PATCH /bountyId |
create_bounty.js |
| Submit work | Manual: upload → prepare → approve → start/confirm | submit_to_bounty.js |
| Claim/finalize | Manual: refresh/poll → finalize tx | claim_bounty.js |
preflight.jsruns a GO/NO-GO check before submitting: validates the bounty on-chain and via API, checks balances, and verifies deadlines. Does not spend funds.create_bounty.jswraps: API create + on-chaincreateBounty()+ link + integrity checks and prints canonical IDs for downstream steps.submit_to_bounty.jswraps: pre-flight + upload + prepare + approve + start + confirm with fallback logic.claim_bounty.jswraps: poll for evaluation result + on-chainfinalizeSubmission.
What ships with it
27 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.
- _meta.json 4.1 KB
- publish.sh 2.0 KB runs code
- README.md 7.5 KB
- references/api_endpoints.md 9.4 KB
- references/classes-models-and-agent-api.md 7.9 KB
- references/funding.md 926 B
- references/security.md 3.4 KB
- scripts/_env.js 1.1 KB runs code
- scripts/_lib.js 14 KB runs code
- scripts/_paths.js 394 B runs code
- scripts/.env.example 1.4 KB
- scripts/.gitignore 19 B
- scripts/bot_register.js 1.4 KB runs code
- scripts/bounty_worker_min.js 823 B runs code
- scripts/claim_bounty.js 7.1 KB runs code
- scripts/create_bounty_min.js 5.4 KB runs code
- scripts/create_bounty.js 20 KB runs code
- scripts/funding_check.js 709 B runs code
- scripts/funding_instructions.js 865 B runs code
- scripts/onboard.js 20 KB runs code
- scripts/package-lock.json 4.4 KB
- scripts/package.json 343 B
- scripts/preflight.js 8.3 KB runs code
- scripts/submit_to_bounty.js 18 KB runs code
- scripts/swap_eth_to_link_0x.js 4.6 KB runs code
- scripts/validate_contract_config.js 1.3 KB runs code
- scripts/wallet_init.js 1.5 KB runs code
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.
- 12d ago First seen · 685 lines · 71 tokens per session scan B 71870ec26b6f
verdikta-bounties-onboarding is a skill published in the GitHub repository verdikta/verdikta-applications (24 stars, last pushed today), licensed MIT. It adds 71 tokens to every session and 8,349 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it B with 2 findings (asks for root, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
signature-replay
Signature replay attacks — missing nonces, missing chain ID, ecrecover zero address, signature malleability, cross-chain replay.
official-sui-skills
Pointer to the official Mysten Labs skills for building on Sui — language fundamentals, object model, PTBs, SDKs, publishing, upgrades, frontend integration, accessing on-chain data. Maintained upstream at github.com/MystenLabs/skills; pinned to the same ref the audit catalog derives from (see…
bridge
Cross-chain token transfers using Wormhole and CCTP.
onchainkit
Build onchain apps with Coinbase's OnchainKit React components - wallets, swaps, NFTs, payments.
marginfi
MarginFi — Solana lending and borrowing.
crypto-market-rank
Crypto market rankings and leaderboards. Query trending tokens, top searched tokens, Binance Alpha tokens, tokenized stocks, social hype sentiment ranks, smart money inflow token rankings, top meme token rankings from Pulse launchpad, and top trader PnL leaderboards. Use this skill when users ask about token rankings…