v1.0.8
Highlights
- Deduplication of tool calls: Completely resolved duplicate tool call issues within a single assistant message where coding tools (such as Claude Code) simultaneously send tool execution information in both the
content array and the tool_calls field.
- Standardization to
tool-call: Uniformly reformatted all tool calls inside assistant (assistant) messages and their corresponding execution results (tool messages) to match the CommandCode API specification:
{
"type": "tool-call",
"toolCallId": "...",
"toolName": "...",
"input": {...}
}