New Gene
Command Palette
Search for a command to run...
Create New Gene
Define a new skill, tool, or soul for your AI agents.
New Gene
- •
- •
- •
Gene Basics
Structured Definition
- •
- •
- •
| Name | Type | Required | Description | |
|---|---|---|---|---|
Implementation Notes
Live Preview
Gene Name Skill
Purpose
User requests information from the web.
Usage Conditions
- User requests information from the web.
- Specific external data needed.
- User requests information in agent.
Parameter Schema
| Name | Type | Required | Description |
|---|---|---|---|
| query | string | The search term | |
| max_results | integer | Limit for results |
Generated JSON Schema
{ "type": "object", "properties": { "skill": "skill_name", "parameters": { "type": "object", "properties": { "query": { "type": "string", "description": "The search term" }, "max_results": { "type": "integer", "description": "Limit for results" } }, "required": [ "query" ] } }}