Skip to content

v1.0.8

Latest

Choose a tag to compare

@dev2k6 dev2k6 released this 19 May 12:42

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": {...}
}