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 skills/omnigent-ai/omnigent/omnigent-knowledgenpx skills add omnigent-ai/omnigent --skill omnigent-knowledgegit clone --depth 1 https://github.com/omnigent-ai/omnigentWrote 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/omnigent-ai/omnigent/omnigent-knowledge)<a href="https://agentmods.dev/skills/omnigent-ai/omnigent/omnigent-knowledge"><img src="https://agentmods.dev/badge/skills/omnigent-ai/omnigent/omnigent-knowledge.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.00036 | $0.03341 |
| Opus 5 | $0.00018 | $0.01670 |
| Sonnet 5 | $0.00007 | $0.00668 |
| Haiku 4.5 | $0.00004 | $0.00334 |
Grade A, and why
omnigent-knowledge 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 4d 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 — 415 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Omnigent Knowledge Base
What is Omnigent?
Agent plane is a server that hosts, manages, and executes agents via an OpenResponses-compatible API. Users create agent directories (also called agent images) that contain configuration, instructions, skills, and tools. The server loads these directories and serves them via HTTP.
Agent Directory Layout
my-agent/
├── config.yaml # REQUIRED — agent spec
├── AGENTS.md # Recommended — instructions/personality
├── skills/ # Optional — load-on-demand skills
│ └── <dir>/ # Free-form; skill name comes from SKILL.md
│ └── SKILL.md
├── tools/ # Optional — packaged tools
│ ├── python/ # Local Python tools (auto-discovered *.py)
│ ├── typescript/ # Local TypeScript tools (auto-discovered *.ts)
│ └── mcp/ # MCP server declarations (*.yaml)
└── agents/ # Optional — sub-agent directories (recursive)
└── <dir>/ # Free-form; sub-agent name comes from config.yaml
├── config.yaml
└── ...
config.yaml Reference
The only required file. All fields except spec_version are optional.
spec_version: 1 # REQUIRED, must be 1
name: my-agent # Display name
description: Does X and Y. # One-line summary
# Instructions — path to a file or inline text.
# Default: looks for AGENTS.md in the agent directory.
instructions: AGENTS.md
executor:
# REQUIRED area. type must be one of: claude_sdk | agents_sdk | omnigent.
# There is NO `llm` executor type.
type: claude_sdk # Anthropic Claude SDK, in-process (simplest)
# type: agents_sdk — OpenAI Agents SDK, in-process
# type: omnigent — subprocess harness; requires config.harness below
# Only for type: omnigent — pick the harness that runs the loop.
# One of: claude-native | claude-sdk | codex-native | codex |
# openai-agents | open-responses | pi
# config:
# harness: claude-native
# permission_mode: bypassPermissions # claude-native headless
# yolo: true # codex-native headless
# Model is OPTIONAL — omit to use the configured provider's default.
# Pin one directly on the executor when needed:
# model: anthropic/claude-sonnet-4-20250514 # LiteLLM provider/model
# model: databricks-claude-opus-4-7 # or a serving-endpoint name
# connection: # provider credentials
# api_key: ${ANTHROPIC_API_KEY}
# auth: # or Databricks profile auth
# type: databricks
# profile: oss
timeout: 3600 # Task deadline in seconds (default: 3600)
max_iterations: 1000 # Max LLM calls per task (default: 1000)
# os_env — grant filesystem/shell access (harness agents). Exposes
# sys_os_read / sys_os_write / sys_os_edit / sys_os_shell.
os_env:
type: caller_process
cwd: .
sandbox:
type: none # or linux_bwrap / darwin_seatbelt to sandbox
# guardrails — runtime policy gates (optional).
guardrails:
ask_timeout: 86400 # seconds to wait on an approval prompt
policies:
blast_radius:
type: function
function:
path: omnigent.inner.nessie.policies.blast_radius
interaction:
conversational: true # Maintain turn history (default: true)
modalities:
input: [text, image, file] # default: [text]
output: [text] # default: [text]
tools:
# Sub-agents this agent can spawn (declared names of agents/ sub-agents)
agents:
- researcher
- summarizer
# Built-in tools — string name or dict with config
builtins:
- web_search # auto-detects backend based on model provider
- terminal_run # persistent bash shell scoped to the conversation
- upload_file
- search_conversations
timeout: 60 # Default tool timeout in seconds
params: # Arbitrary key-value (readable by skills/tools)
max_results: 10
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.
- 4d ago First seen · 415 lines · 36 tokens per session scan A a34b76a4d655
omnigent-knowledge is a skill published in the GitHub repository omnigent-ai/omnigent (9,658 stars, last pushed today), licensed Apache-2.0. It adds 36 tokens to every session and 3,341 once invoked, about $0.0002 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
ml-debug
Use when something is failing in ML/AI work — OOM, NaN, divergence, crashes, bad throughput, wrong outputs, dependency conflicts.
ml-plan
Use when the user wants an implementation plan, architecture design, or multi-step ML pipeline — "build X", "implement X", "design X", "set up X".
ml-research
Use when the user wants to understand an ML/AI topic, compare approaches, or survey framework capabilities — "how does X work?", "compare X vs Y".
ml-iterate
Use when the user is stuck, needs ranked next steps, or wants alternatives after initial experiments — "I tried X and got Y, what next?".
using-superml
Use when starting any conversation involving ML/AI — establishes how to use Leeroopedia KB tools and workflow skills.
ml-verify
Use when the user wants to verify code, config, or math before running — or proactively before any expensive training job or deployment.