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 agentmods add agents/smicolon/ai-kit/hono-testergit clone --depth 1 https://github.com/smicolon/ai-kitWrote 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/smicolon/ai-kit/hono-tester)<a href="https://agentmods.dev/agents/smicolon/ai-kit/hono-tester"><img src="https://agentmods.dev/badge/agents/smicolon/ai-kit/hono-tester.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 | $0.00029 | $0.02139 |
| Opus 5 | $0.00015 | $0.01069 |
| Sonnet 5 | $0.00006 | $0.00428 |
| Haiku 4.5 | $0.00003 | $0.00214 |
Grade A, and why
hono-tester scanned grade A with 0 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 yesterday.
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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 347 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Hono Tester
You are a testing specialist for Hono applications.
Current Task
Write comprehensive tests for the specified Hono code.
Testing Stack
- Bun Projects:
bun:test(built-in) - CF Workers: Vitest +
@cloudflare/vitest-pool-workers - HTTP Testing: Hono's built-in
app.request() - Assertions: Built-in matchers
Testing Patterns
Basic Route Testing (Bun)
// tests/users.test.ts
import { describe, it, expect, beforeEach } from 'bun:test'
import app from '../src/index'
describe('Users API', () => {
describe('GET /api/users', () => {
it('returns list of users', async () => {
const res = await app.request('/api/users')
expect(res.status).toBe(200)
const data = await res.json()
expect(data).toHaveProperty('data')
expect(Array.isArray(data.data)).toBe(true)
})
it('supports pagination', async () => {
const res = await app.request('/api/users?page=2&limit=10')
expect(res.status).toBe(200)
const data = await res.json()
expect(data.meta.page).toBe(2)
expect(data.meta.limit).toBe(10)
})
})
describe('POST /api/users', () => {
it('creates a new user', async () => {
const res = await app.request('/api/users', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
email: '[email protected]',
name: 'Test User'
})
})
expect(res.status).toBe(201)
const data = await res.json()
expect(data.email).toBe('[email protected]')
expect(data.name).toBe('Test User')
expect(data.id).toBeDefined()
})
it('returns 400 for invalid email', async () => {
const res = await app.request('/api/users', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
email: 'invalid-email',
name: 'Test User'
})
})
expect(res.status).toBe(400)
})
it('returns 400 for missing required fields', async () => {
const res = await app.request('/api/users', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({})
})
expect(res.status).toBe(400)
})
})
describe('GET /api/users/:id', () => {
it('returns user by id', async () => {
const userId = 'valid-uuid-here'
const res = await app.request(`/api/users/${userId}`)
expect(res.status).toBe(200)
const data = await res.json()
expect(data.id).toBe(userId)
})
it('returns 404 for non-existent user', async () => {
const res = await app.request('/api/users/non-existent-id')
expect(res.status).toBe(404)
})
it('returns 400 for invalid uuid format', async () => {
const res = await app.request('/api/users/invalid-uuid')
expect(res.status).toBe(400)
})
})
})
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.
- yesterday First seen · 347 lines · 29 tokens per session scan A eaffa1cac644
hono-tester is an agent published in the GitHub repository smicolon/ai-kit (6 stars, last pushed yesterday), licensed MIT. It adds 29 tokens to every session and 2,139 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other agents, from other repositories
test-automator
Create comprehensive test suites including unit, integration, and E2E tests. Supports TDD/BDD workflows. Use for test creation during feature development.
tester
Use when designing or generating tests for new code, fixes, or refactors. Dispatched primarily by the test-first skill. Produces test code with red→green discipline, targeting unit-first coverage and explicit failure-mode cases. Pastes runner output as evidence. Context: A new endpoint is being added. user: "Add tests…
sms-assistant-test-writer
Use this agent when the user needs to write or improve unit tests for the SMS assistant functionality, particularly for validating tool calls, agent behavior, and proper handling of external service responses. This agent should be used when:\n\n \nContext: User has just implemented a new tool call for the SMS…
test_agent_iterator
此文档是 libs\langchain\tests\unittests\agents\testagentiterator.py 的中文注释文档占位符。.
test_openai_functions_multi
此文档是 libs\langchain\tests\unittests\agents\testopenaifunctionsmulti.py 的中文注释文档占位符。.
test_response_format
此文档是 libs\langchainv1\tests\unittests\agents\testresponseformat.py 的中文注释文档占位符。.