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 mattmre/EVOKORE-MCP-PUBLIC --skill coding-referencegit clone --depth 1 https://github.com/mattmre/EVOKORE-MCP-PUBLICWrote 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/mattmre/evokore-mcp-public/coding-reference)<a href="https://agentmods.dev/skills/mattmre/evokore-mcp-public/coding-reference"><img src="https://agentmods.dev/badge/skills/mattmre/evokore-mcp-public/coding-reference.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.00013 | $0.01927 |
| Opus 5 | $0.00006 | $0.00963 |
| Sonnet 5 | $0.00003 | $0.00385 |
| Haiku 4.5 | $0.00001 | $0.00193 |
Grade A, and why
coding-reference 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 3d 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.
How it starts
The opening of the file, as written. The whole thing — 318 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Coding Reference
Quick-reference guide for coding standards and backend patterns. Use this as a checklist and reference during development and code review.
Part 1: Coding Standards
File Organization
Directory Structure Principles
- Group by feature/domain, not by type
- Keep related files close together
- Limit directory depth (prefer flat over deep)
- Use consistent naming for common directories
File Naming
- Use lowercase with separators (kebab-case or snake_case)
- Be descriptive but concise
- Include type suffix when helpful (e.g.,
.test.ts,.config.ts) - Avoid special characters except
-and_
File Size
- Prefer smaller, focused files
- Split when file exceeds ~300-500 lines
- Extract reusable components into shared modules
Naming Conventions
General Principles
- Names should reveal intent
- Avoid abbreviations (except well-known ones like
id,url,config) - Be consistent within the project
- Avoid encodings (Hungarian notation, etc.)
TypeScript/JavaScript Patterns
| Element | Pattern | Examples |
|---|---|---|
| Variables | camelCase descriptive nouns | userCount, isEnabled |
| Functions | camelCase verb + noun | getUserById, validateInput |
| Classes | PascalCase noun phrases | ProxyManager, ToolRegistry |
| Interfaces | PascalCase (no I prefix) |
ServerConfig, ToolDefinition |
| Constants | UPPER_SNAKE_CASE | MAX_RETRIES, DEFAULT_TIMEOUT |
| Booleans | is/has/can prefix | isValid, hasPermission, canEdit |
| Enums | PascalCase | ConnectionState, LogLevel |
Error Handling
Principles
- Fail fast and explicitly
- Provide actionable error messages
- Log errors with context
- Never swallow exceptions silently
Error Message Format
What happened: <description>
Why it happened: <cause if known>
What to do: <suggested action>
Exception Handling
- Catch specific exceptions, not generic
Error - Re-throw with context when wrapping
- Use custom error classes for domain errors
- Log at appropriate level (error vs. warn)
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.
- 3d ago First seen · 318 lines · 13 tokens per session scan A 4f7b67bc266a
coding-reference is a skill published in the GitHub repository mattmre/EVOKORE-MCP-PUBLIC (3 stars, last pushed 3mo ago), licensed MIT. It adds 13 tokens to every session and 1,927 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 skills, from other repositories
meta-reviewing-api-reviewing
Backend code review patterns. Use when reviewing API routes, database operations, auth middleware, and server utilities. Covers injection, boundary validation, authorization coverage, secret/PII exposure, error leakage, and query patterns.
api-design
Use this skill when designing, reviewing, or refactoring REST APIs in WrongStack. Triggers: user says "API", "endpoint", "REST", "request", "response", "JSON", "HTTP", "status code", "pagination", "query params", "request body".
reviewing-changes
Use when a review package asks you to review a plan step's change set (todo.startReview): you are the REVIEWER, not the author. How to judge an agent-written diff, file findings with addreviewcomment, and settle with exactly one reviewverdict.
hunt-auth-bypass
Hunting skill for auth bypass vulnerabilities. Built from 4 public bug bounty reports. Use when hunting auth bypass on any target.
hunt-graphql
Hunting skill for graphql vulnerabilities. Built from 3 public bug bounty reports. Use when hunting graphql on any target.
hunt-idor
Hunting skill for idor vulnerabilities. Built from 26 public bug bounty reports. Use when hunting idor on any target.