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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to the [ibl.ai API skills](https://github.com/iblai/api).

## [Unreleased]

### Documentation

- document `enable_computational_runtime` on agent settings — it is now returned by the
settings GET as well as accepted by the PUT.

## [0.2.4] - 2026-08-26

### Documentation
Expand Down
3 changes: 3 additions & 0 deletions skills/iblai-api-agent-setting/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ when configuring an agent's basic identity and capabilities.
"enable_claw": "boolean",
"enable_memory_component": "boolean",
"enable_multi_query_rag": "boolean",
"enable_computational_runtime": "boolean",
"forkable": "boolean"
}
```
Expand Down Expand Up @@ -76,6 +77,8 @@ curl -X PUT \
## Notes

- A field left out of the PUT is left unchanged — never resend the whole object.
- `enable_computational_runtime` (the in-process code interpreter) is now returned by
the settings **GET** as well as accepted by the PUT; it was previously write-only.
- `categories` expects numeric category ids from the categories endpoint, not names.
- Deletion and forking are scoped to `{username}`; settings reads/writes use the
`users/{username}/mentors/{mentor}/` path.