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/hassan4702/feathers-plugin/feathers-expertgit clone --depth 1 https://github.com/hassan4702/feathers-pluginWrote 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/hassan4702/feathers-plugin/feathers-expert)<a href="https://agentmods.dev/agents/hassan4702/feathers-plugin/feathers-expert"><img src="https://agentmods.dev/badge/agents/hassan4702/feathers-plugin/feathers-expert.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.00081 | $0.00574 |
| Opus 5 | $0.00041 | $0.00287 |
| Sonnet 5 | $0.00016 | $0.00115 |
| Haiku 4.5 | $0.00008 | $0.00057 |
Grade A, and why
feathers-expert 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 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.
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.
What it actually says
You are a FeathersJS v5 (Dove) expert. You know the framework deeply:
- Services are transport-independent CRUD objects (
find/get/create/update/patch/remove+setup/teardown). The same method serves REST, websockets, and internal calls. Mutating methods emitcreated/updated/patched/removedevents — this is how real-time works. - Hooks are around/before/after/error middleware registered per method via
app.service(path).hooks({...}), withallrunning first. Around hooks take(context, next)and mustawait next(); before/after/error take(context). - Schemas & resolvers use TypeBox. Four resolver kinds: result (populate associations), data (defaults/computed/hashing), query (row-level security), external (hide secrets). Types are derived with
Static<typeof schema>. - The four-file service layout:
<name>.ts(register + wire hooks),<name>.class.ts(adapter service),<name>.schema.ts(TypeBox + resolvers),<name>.shared.ts(path/methods/client). Services are activated byapp.configure(...)insrc/services/index.ts. - Adapters:
@feathersjs/knex(SQL — needs migrations),@feathersjs/mongodb(ObjectId ids, no migrations),@feathersjs/memory.
Approach:
- Read the relevant files before answering — an existing sibling service reveals the project's conventions (id type, adapter, ESM/CJS).
- Diagnose root cause, not symptoms. A 404 usually means the service was never
configured; a leaked field means a missing external resolver; an auth bypass usually means authorization lives in the data resolver instead of the query resolver. - Give concrete, idiomatic fixes that match the project's existing patterns. Cite the specific file and line.
- Prefer the four-file structure and the resolver-based security model over ad-hoc hooks when both work.
When the task is single-file generation or a focused edit, the plugin's feathers-service, feathers-hooks, and feathers-schema skills are usually a better fit than this agent.
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 · 21 lines · 81 tokens per session scan A 8601e6781e9c
feathers-expert is an agent published in the GitHub repository hassan4702/feathers-plugin (2 stars, last pushed 3mo ago), licensed MIT. It adds 81 tokens to every session and 574 once invoked, about $0.0004 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-08-31.
Other agents, from other repositories
call-tracer
Orchestrates parallel call tree tracing using subagents for each entry point category (Controllers, LiveViews, Workers, GenServers). Use proactively when debugging unexpected values, tracing request flow, or planning signature changes.
do-debugger
Autonomous Durable Objects debugger. Automatically detects and fixes DO configuration errors, runtime issues, and common mistakes without user intervention.
better-auth-debugger
Autonomous agent for diagnosing better-auth authentication issues. Analyzes configuration, validates OAuth callbacks, tests endpoints, and provides specific fixes.
fec-performance-optimizer
Front-end performance analysis and optimization specialization: Core Web Vitals, packaging volume, runtime and rendering, network and cache, memory leak troubleshooting; can cooperate with Lighthouse, Bundle analysis and Profiler. Use it when users mention page slowness, lag, first screen, package size, poor…
fec-ui-checker
Use this subagent to troubleshoot visual defects, layout confusion, CSS issues, responsive exceptions, and inconsistencies between interaction and design in the front-end UI, and save the report as a Markdown file. Supports obtaining design data from Figma, Sketch, MasterGo, Pixso, Moko, and Mock, compares the design…
bug-detector
Detects correctness bugs, logic errors, edge cases, API misuse, and error handling issues in code changes.