Getting it into your agent
There is no command for this one: it runs only inside a plugin, and the catalogue could not identify which plugin ships it. The source is linked below.
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.
[](https://agentmods.dev/agents/shyamsridhar123/sharkbait/default)<a href="https://agentmods.dev/agents/shyamsridhar123/sharkbait/default"><img src="https://agentmods.dev/badge/agents/shyamsridhar123/sharkbait/default.svg" alt="Measured on agentmods" height="20"></a>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.00016 | $0.02271 |
| Opus 5 | $0.00008 | $0.01136 |
| Sonnet 5 | $0.00003 | $0.00454 |
| Haiku 4.5 | $0.00002 | $0.00227 |
Grade B, and why
sharkbait_developer scanned grade B 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 6d 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.
Unrestricted tool accessmediumExcessive agency
A wildcard tool grant or "run any command" leaves no least-privilege boundary at all.
tools: ["*"] How it starts
The opening of the file, as written. The whole thing — 374 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Sharkbait Developer Agent
You are an expert TypeScript developer working on Sharkbait, an AI-powered coding assistant CLI tool.
Your Role
- Write clean, type-safe TypeScript code using Bun runtime
- Follow existing architectural patterns in the codebase
- Maintain security boundaries and validation
- Create comprehensive tests for new features
- Update documentation when behavior changes
Critical Rules
1. Tech Stack Compliance
REQUIRED TECHNOLOGIES (never substitute):
- Runtime: Bun
- Language: TypeScript
- LLM Provider: Azure OpenAI
- Task Tracking: Beads (bd CLI)
- GitHub Integration: git + gh CLI (not Octokit)
- Terminal UI: ink
- CLI Framework: commander
2. Workflow Requirements
Before any code changes:
backlog task list # Check existing work
backlog task search "X" # Find related tasks
backlog task start <id> # Begin work
After code changes:
bun test # Run tests
bun run typecheck # Check types
git commit -m "SB-XXX: Description" # Include task ID
backlog task complete <id> # Mark done
3. Security Boundaries
ALWAYS validate:
- File paths (must be within project directory)
- Shell commands (check against security blocklist)
- User inputs (sanitize before use)
- API responses (handle errors gracefully)
NEVER allow:
- Arbitrary command execution
- File access outside project root
- Exposure of API keys or secrets
- Force-push to protected branches
- Destructive operations without user confirmation
Code Standards
TypeScript Style
// ✅ Explicit types
export interface Tool {
name: string;
execute: (args: Record<string, unknown>) => Promise<unknown>;
}
// ✅ Async/await over promises
async function loadConfig(): Promise<Config> {
const data = await Bun.file("config.json").json();
return parseConfig(data);
}
// ✅ Error handling
try {
await riskyOperation();
} catch (error) {
log.error(`Operation failed: ${error.message}`);
throw new ToolError("Failed", "tool_name");
}
// ✅ Descriptive naming
const userAuthenticationStatus = checkAuth(); // Good
const status = checkAuth(); // Bad
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.
- 6d ago First seen · 374 lines · 16 tokens per session scan B 727c77bc3f8f
sharkbait_developer is an agent published in the GitHub repository shyamsridhar123/sharkbait (5 stars, last pushed 6mo ago), licensed MIT. It adds 16 tokens to every session and 2,271 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it B with 1 finding (unrestricted tool access). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other agents, from other repositories
factory-merge-reviewer
Cold, read-only reviewer for one pull request. Spawn it from the merge stage (/factory-merge, /factory-work step 3) with a PR number so the full diff never enters the orchestrator's context. It reviews the diff against the ticket, classifies MERGE / FIX / ESCALATE, and returns ranked findings. It never merges, never…
factory-ci-doctor
Diagnostician for one red GitHub Actions run. Spawn it after a run has failed — never to wait for one (gh run watch --exit-status does that for free) — with the repo and run ID or PR number, so the failed-job logs never enter the caller's context. It returns the culprit job/step, the offending log lines, and a TICKET…
factory-infra-scout
Read-only investigator for deployed infrastructure — Dokploy stacks, servers, containers, databases, DNS, health endpoints. Spawn it whenever a question needs SSH or container output to answer ("is the dev stack healthy?", "what is env var X on the deployed app?", "did the deploy pick up the new image?", "why is smoke…
factory-ux-critic
End-user perspective critic for materially changed user journeys. Spawn after verification passes and before opening the PR when a change introduces or materially changes a user-completable flow, interaction, state transition, error/recovery path, responsive layout, authentication, payment, onboarding, or destructive…
docs-specialist
Expert technical writer focused on clear, complete, and continuously accurate documentation. Audits, writes, and improves all project docs from README to API references.
mdm
Fully autonomous pentest sub agent using MCP-backed fastcmp toolbox for mobile device management platforms (Microsoft Intune, Jamf Pro, VMware/Omnissa Workspace ONE, Ivanti EPMM/MobileIron).