build-omnigent
FeaturedPatterns and templates for generating valid Omnigent agent directories. Load when ready to create files.
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
# Agent Generation
Use these patterns to generate a valid agent directory. Always generate
the minimal set of files needed — don't over-engineer.
Every template below has been validated with the same parser/validator
that `omnigent server` uses. If your environment exposes the
`validate_agent` tool (the dedicated agent-authoring environment does),
run it after generating files to confirm the spec loads. Load the
**`omnigent-knowledge`** skill if you need the deeper field reference
(executor types, os_env, guardrails, sandboxing).
## Step 1: Choose a directory name
Use the agent name in kebab-case: `my-research-agent/`
## Step 2: Generate config.yaml
Always include:
- `spec_version: 1`
- `name` (lowercase, hyphens OK)
- `description` (one sentence)
- `instructions` — path to a file (default `AGENTS.md`) or inline text.
(`prompt:` is an accepted alias; `instructions:` wins if both are set.)
- `executor` — how the agent runs. See Step 2a.
Include if needed:
- `tools.builtins` — built-in tools. The current set is `download_file`,
`export_agent`, `list_files`, `search_conversations`, `upload_file`,
`web_fetch`, `web_search`. If the `list_builtin_tools` tool is available,
call it for the authoritative live set rather than trusting this list.
- `tools.agents` — sub-agents, by the `name` each declares under `agents/`
(a sub-agent's directory name may differ from its name).
- `os_env` — filesystem/shell access for harness agents (see the
shell-capable template).
- `...
Details
- Author
- omnigent-ai
- Repository
- omnigent-ai/omnigent
- Created
- 3 months ago
- Last Updated
- today
- Language
- Python
- License
- Apache-2.0
Similar Skills
Semantically similar based on skill content — not just same category
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 AI & Automation Featured
omnigent-knowledge
Deep reference on Omnigent config format, executor types, skill/tool structure, and conventions. Load when you need to look up how the platform works.
9,848 Updated today
omnigent-ai AI & Automation Listed
create-agent
Use when you want to create a new sub-agent that Claude can delegate tasks to. Generates an agents/<name>.md definition.
0 Updated today
fxmartin