omnigent-knowledge
FeaturedDeep reference on Omnigent config format, executor types, skill/tool structure, and conventions. Load when you need to look up how the platform works.
AI & Automation 9,848 stars
1535 forks Updated today Apache-2.0
Install
Quality Score: 89/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# 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.
```yaml
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....
Details
- Author
- omnigent-ai
- Repository
- omnigent-ai/omnigent
- Created
- 3 months ago
- Last Updated
- today
- Language
- Python
- License
- Apache-2.0
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Listed
omnigent-knowledge
Deep reference on Doppl config format, executor types, skill/tool structure, and conventions. Load when you need to look up how the platform works.
0 Updated 1 months ago
sarptandoven AI & Automation Featured
build-omnigent
Patterns and templates for generating valid Omnigent agent directories. Load when ready to create files.
9,848 Updated today
omnigent-ai AI & Automation Listed
build-omnigent
Patterns and templates for generating valid Doppl agent directories. Load when ready to create files.
0 Updated 1 months ago
sarptandoven