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 kivo360/OmoiOS --skill error-diagnosisgit clone --depth 1 https://github.com/kivo360/OmoiOSWrote 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/kivo360/omoios/error-diagnosis)<a href="https://agentmods.dev/skills/kivo360/omoios/error-diagnosis"><img src="https://agentmods.dev/badge/skills/kivo360/omoios/error-diagnosis/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/kivo360/omoios/error-diagnosis"><img src="https://agentmods.dev/badge/skills/kivo360/omoios/error-diagnosis.svg" alt="Reviewed on agentmods" width="80" 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.01351 |
| Opus 5 | $0.00006 | $0.00675 |
| Sonnet 5 | $0.00003 | $0.00270 |
| Haiku 4.5 | $0.00001 | $0.00135 |
Grade A, and why
error-diagnosis 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 9d 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 — 224 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Error Diagnosis
Systematic approach to debugging errors and identifying root causes.
Diagnosis Workflow
1. Reproduce → 2. Isolate → 3. Identify → 4. Fix → 5. Verify
1. Reproduce the Error
- Get exact steps to reproduce
- Note environment (OS, versions, config)
- Check if error is consistent or intermittent
- Capture full error message and stack trace
2. Isolate the Problem
- Identify which component is failing
- Check recent changes (git log, deployments)
- Narrow down to smallest reproducible case
- Check if issue is in your code or dependencies
3. Identify Root Cause
- Read the actual error message carefully
- Follow the stack trace top-to-bottom
- Check logs at the time of failure
- Add temporary logging if needed
4. Fix the Issue
- Address the root cause, not symptoms
- Consider side effects of the fix
- Add tests to prevent regression
5. Verify the Fix
- Reproduce original steps - should work now
- Run full test suite
- Check for unintended side effects
Common Error Patterns
Python Exceptions
| Exception | Common Cause | Investigation |
|---|---|---|
KeyError |
Missing dict key | Check if key exists before access |
AttributeError |
None object access | Check for None before method call |
TypeError |
Wrong argument type | Check function signature and input |
ImportError |
Missing/circular import | Check import paths and dependencies |
ConnectionError |
Network/DB issues | Check connectivity and credentials |
Stack Trace Analysis
# Example stack trace:
# Traceback (most recent call last):
# File "app.py", line 42, in handle_request ← Entry point
# result = process_data(data)
# File "processor.py", line 15, in process_data ← Intermediate
# return transform(data['key'])
# File "processor.py", line 8, in transform ← Root cause
# return value.upper()
# AttributeError: 'NoneType' object has no attribute 'upper'
# The error is at line 8, but the fix might be:
# - Line 15: Check if 'key' exists in data
# - Line 8: Check if value is None before .upper()
# - Caller: Ensure data is properly validated
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.
- 9d ago First seen · 224 lines · 13 tokens per session scan A ab4042b127b2
error-diagnosis is a skill published in the GitHub repository kivo360/OmoiOS (77 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 13 tokens to every session and 1,351 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-30.
Other skills, from other repositories
browser-edge-cases
SOP for debugging browser automation failures on complex websites. Use when browser tools fail on specific sites like LinkedIn, Twitter/X, SPAs, or sites with Shadow DOM.
triage-issue
Analyze a GitHub issue, verify claims against the codebase, and close invalid issues with a technical response.
hive.error-recovery
Follow a structured recovery decision tree when tool calls fail instead of blindly retrying or giving up.
skill-repair
Diagnose and fix failing or degraded skills automatically - systemic-first triage, per-category playbooks, and a verification plan.
self-improve
Improve the agent itself, or audit its recent performance - better skills, prompts, workflows, and config, plus a quality/reliability/memory-hygiene review of what it did and what failed.
systematic-debugging
Systematic approach to diagnosing and fixing errors.