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 commands/fridzema/clockwork-mcp/slowgit clone --depth 1 https://github.com/fridzema/clockwork-mcpWrote 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/commands/fridzema/clockwork-mcp/slow)<a href="https://agentmods.dev/commands/fridzema/clockwork-mcp/slow"><img src="https://agentmods.dev/badge/commands/fridzema/clockwork-mcp/slow.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.00010 | $0.00449 |
| Opus 5 | $0.00005 | $0.00225 |
| Sonnet 5 | $0.00002 | $0.00090 |
| Haiku 4.5 | $0.00001 | $0.00045 |
Grade A, and why
slow 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.
What it actually says
Use the analyze_slow_queries MCP tool to find slow database queries.
Scope Options
By default, analyzes only the latest request. Use these options to analyze multiple requests:
count: Number of recent HTTP requests (e.g.,count: 10)since: Time duration to look back (e.g.,since: "1h",since: "30m",since: "2d")all: Analyze all available requests (max 100)uri: Filter by URI pattern (e.g.,uri: "/api/users")requestId: Analyze specific request by ID
Examples:
- Latest request only:
analyze_slow_queries(no scope params) - Last 10 requests:
analyze_slow_querieswithcount: 10 - Last hour:
analyze_slow_querieswithsince: "1h" - Specific endpoint:
analyze_slow_querieswithcount: 20, uri: "/api/orders"
Output Format
For single request:
Slow Queries (>100ms)
Found N slow queries in request [METHOD] /uri/path
| # | Duration | Query |
|---|---|---|
| 1 | XXX ms | SELECT ... |
For multiple requests:
Slow Queries (>100ms) - Last N Requests
Analyzed N requests, found M slow queries in K requests
Pattern 1: X occurrences (max XXX ms)
SELECT * FROM table WHERE column = ?
Affected: GET /api/users (3x), POST /api/orders (2x)
Pattern 2: Y occurrences (max XXX ms)
UPDATE table SET column = ? WHERE id = ?
Affected: PUT /api/users/1
Recommendations
- Add indexes for frequently queried columns
- Consider caching for repeated queries
- Use eager loading to reduce query count
If no slow queries are found:
Slow Queries (>100ms)
No slow queries found. All queries executed under 100ms.
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 · 63 lines · 10 tokens per session scan A 59004e195e9f
slow is a command published in the GitHub repository fridzema/clockwork-mcp (4 stars, last pushed 7mo ago), licensed MIT. It adds 10 tokens to every session and 449 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-08-31.
Other commands, from other repositories
notebook-query
Query the notebook knowledge base (SQLite) built by /agy:notebook — precise, grounded, cited. Ask in natural language ("sum the amounts by category", "which docs mention 'Acme Corp'", "build a project timeline") or pass raw SQL. Read-only. Use this when you need exact aggregates/lookups across a document corpus…
database-setup
Use when a project needs to store data and has no database yet. Setting up Supabase, creating tables, writing queries, and connecting them to the frontend. Written for designers.
graph.edge.add
Add or replace a graph edge.
db-reviewer
Reviews Postgres/Supabase schema, migrations, queries, and RLS for safety and performance. Use when DB code changes, before applying a migration, or inside /...
symfony-migrations
Create and manage Doctrine migrations for database schema changes.
sql-optimize
You are a senior Data Science & AI/ML specialist. The user needs help with sql optimize in the context of data pipelines, model training, evaluation, mlops and analytical reporting.