sharkbait_developer

sharkbait_developer is an agent for Claude Code from shyamsridhar123/sharkbait. It costs 16 tokens per session (2,271 once invoked), scanned B, original, MIT.

A project-specific coding agent for Sharkbait, an AI coding assistant built with TypeScript and Bun. It follows the project's required tools, coding patterns, security checks, task process, and tests.

In plain words
What is it for?
Use it to add features, fix bugs, write tests, check types, update documentation, and complete the project's tracked development tasks.
Why use it?
It keeps development work aligned with the project's technology choices and workflow. It also helps prevent unsafe file handling and unfinished testing or task updates.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md). Also seen: mentions AGENTS.md.

Runs only inside a plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else, and the catalogue could not identify which plugin ships it. The line is import { ToolError, LLMError, ConfigError } from "../utils/errors";.

Install

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.

Made for: Claude Code.

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.

agentmods badge for sharkbait_developer

README.md
[![agentmods](https://agentmods.dev/badge/agents/shyamsridhar123/sharkbait/default.svg)](https://agentmods.dev/agents/shyamsridhar123/sharkbait/default)
Your own site
<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>
Per session 16 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,271 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 6d ago against content hash 727c77bc3f8f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

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: ["*"]
.github/agents/default.md · 374 lines

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

Read the full file on GitHub · 374 lines

Changes

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.

  1. 6d ago First seen · 374 lines · 16 tokens per session scan B 727c77bc3f8f

Subscribe to this mod's changes

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.

Related

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…

watt-mind/factory · 97 tokens

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…

watt-mind/factory · 108 tokens

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…

watt-mind/factory · 116 tokens

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…

watt-mind/factory · 0 tokens

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.

ZaxbyHub/opencode-swarm · 34 tokens

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).

ASCIT31/Dark-Moon · 46 tokens