Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions skills/base44-cli/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -258,8 +258,8 @@ Agents are conversational AI assistants that can interact with users, access you
**Naming rules:** Agent names must be lowercase alphanumeric with underscores only (e.g., `support_agent`, `order_bot`)

**Tool config types:**
- **Entity tools**: `entity_name` + `allowed_operations` (array of: `read`, `create`, `update`, `delete`)
- **Backend function tools**: `function_name` + `description`
- **Entity tools**: `entity_name` (MUST reference an existing `name` field of an entity configuration defined in `base44/entities/`) + `allowed_operations` (array of: `read`, `create`, `update`, `delete`)
- **Backend function tools**: `function_name` (MUST reference an existing `name` of a backend function configuration defined in `base44/functions/`) + `description`

### Site Deployment

Expand Down
5 changes: 5 additions & 0 deletions skills/base44-cli/references/agents-push.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,11 @@ Each agent file should be a `.jsonc` file in `base44/agents/` with this structur
- Valid: `support_agent`, `order_bot`, `task_helper`
- Invalid: `Support-Agent`, `OrderBot`, `task helper`

**Tool configuration validation:**
- **Entity tools**: The `entity_name` MUST reference an existing `name` field of an entity configuration defined in `base44/entities/`
- **Backend function tools**: The `function_name` MUST reference an existing `name` of a backend function configuration defined in `base44/functions/`
- **Allowed operations**: Must be one or more of: `read`, `create`, `update`, `delete`

## Use Cases

- After defining new agents in your project
Expand Down
Loading