You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Add octomind workflow CLI command for TOML files
- Move workflow definitions from main config to separate files
- Add auto_capabilities configuration setting
- Document GIT_TREE and HOME template variables
- Update builtin server tool mappings for core and runtime
- Update default compression model to gpt-5-mini
- Rename default tap to muvon/tap
- Add capability command to session reference
- Refine MCP server and compression documentation
- Remove /workflow slash command from editor integrations
- Update session command counts and architecture docs
|`core`|`plan`, `tap`| High-level planning and agent management |
126
+
|`runtime`|`mcp`, `agent`, `skill`, `schedule`, `capability`| Harness reconfiguration and scheduling |
128
127
|`agent`|`agent_<name>` per `[[agents]]` entry | ACP sub-agent dispatch |
129
128
130
129
`filesystem` is no longer a builtin — it's an external `stdio` server backed by `octofs`. See [MCP Tools](../usage/07-mcp-tools.md) for the tool surface.
@@ -450,6 +449,8 @@ Available in `system` and `welcome` fields:
450
449
|`{{OS}}`| Operating system |
451
450
|`{{BINARIES}}`| Available binary tools |
452
451
|`{{GIT_STATUS}}`| Git repository status |
452
+
|`{{GIT_TREE}}`| Project file tree |
453
453
|`{{README}}`| Contents of README.md in project root |
454
+
|`{{HOME}}`| User's home directory path |
454
455
|`{{CONTEXT}}`| Session context (for layers) |
455
456
|`{{SYSTEM}}`| Parent system prompt (for layers) |
Copy file name to clipboardExpand all lines: doc/troubleshooting/02-migration-guide.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -125,14 +125,14 @@ The `core` builtin server was split into two: high-level tools stay in `core`, l
125
125
| Tool | Old server | New server |
126
126
|------|------------|------------|
127
127
|`plan`|`core`|`core`|
128
-
|`schedule`|`core`|`core`|
129
-
|`capability`|`core`|`core`|
130
128
|`tap`*(new)*| -- |`core`|
131
129
|`mcp`|`core`|**`runtime`**|
132
130
|`agent`|`core`|**`runtime`**|
133
131
|`skill`|`core`|**`runtime`**|
132
+
|`schedule`|`core`|**`runtime`**|
133
+
|`capability`|`core`|**`runtime`**|
134
134
135
-
If your config or tap manifest has `server_refs = ["core", ...]` and the role calls any of `mcp`, `agent`, or `skill`, add `"runtime"` to the list:
135
+
If your config or tap manifest has `server_refs = ["core", ...]` and the role calls any of `mcp`, `agent`, `skill`, `schedule`, or `capability`, add `"runtime"` to the list:
136
136
137
137
```diff
138
138
[roles.mcp]
@@ -154,7 +154,7 @@ tools = []
154
154
155
155
If you have a hand-rolled config without it, add the block.
156
156
157
-
Roles that don't call `mcp`/`agent`/`skill` (most roles) don't need `"runtime"` at all — drop it from `server_refs` to keep the tool surface tighter.
157
+
Roles that don't call `mcp`/`agent`/`skill`/`schedule`/`capability` (most roles) don't need `"runtime"` at all — drop it from `server_refs` to keep the tool surface tighter.
0 commit comments