impel-cli 0.20.7 → 0.20.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/RELEASE_NOTES.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Release notes
2
2
 
3
+ ## 0.20.8 — Claude direct-answer compatibility
4
+
5
+ - Publishes the bound direct-answer tool with Claude's supported closed object
6
+ schema while retaining the legacy `task` alias only inside the local runtime.
7
+ - Keeps the model-visible contract to one required `question`, so qualified
8
+ Claude custom agents receive the exact eager tool instead of silently losing it.
9
+
3
10
  ## 0.20.7 — Native-agent state compatibility
4
11
 
5
12
  - Keeps profile discovery aligned with the durable transport schema so
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impel-cli",
3
- "version": "0.20.7",
3
+ "version": "0.20.8",
4
4
  "description": "Prepare isolated Claude and Codex workspaces for every accessible Impel tenant",
5
5
  "type": "module",
6
6
  "bin": {
@@ -2136,13 +2136,9 @@ export function nativeAgentCompositeTools({ mode = "durable" } = {}) {
2136
2136
  inputSchema: {
2137
2137
  type: "object",
2138
2138
  additionalProperties: false,
2139
- anyOf: [
2140
- { required: ["question"], not: { required: ["task"] } },
2141
- { required: ["task"], not: { required: ["question"] } },
2142
- ],
2139
+ required: ["question"],
2143
2140
  properties: {
2144
2141
  question: { type: "string", minLength: 1, maxLength: 40_000 },
2145
- task: { type: "string", minLength: 1, maxLength: 40_000 },
2146
2142
  context: { type: "string", maxLength: 40_000 },
2147
2143
  contextKeys: {
2148
2144
  type: "array",