Changelog
All notable changes to this project will be documented in this file.
[0.6.0] - 2026-04-03
Changed
- Rebrand — package renamed from
@scottwalker/claude-connectorto@scottwalker/kraube-konnektor. CLI binary, error classes (KraubeKonnektorError), all docs and examples updated. A backwards-compatible wrapper package is available atcompat/for the old name. - Init without probe message — replaced the
"."probe message withinitializationResult()SDK method. No more phantom sessions created during warm-up. - Landing page font — heading font changed from Bangers to Underdog.
Added
- 9 new typed StreamEvent types for full SDK message coverage:
StreamToolProgressEvent— tool execution progress (toolName, elapsedTimeSeconds)StreamToolUseSummaryEvent— AI-generated summary of tool usageStreamAuthStatusEvent— MCP authentication statusStreamHookStartedEvent/StreamHookProgressEvent/StreamHookResponseEvent— hook lifecycleStreamFilesPersistedEvent— file checkpoint eventsStreamCompactBoundaryEvent— context compaction eventsStreamLocalCommandOutputEvent— output from slash commands (/voice, /cost, etc.)
- 9 new EVENT_ constants* —
EVENT_TOOL_PROGRESS,EVENT_TOOL_USE_SUMMARY,EVENT_AUTH_STATUS,EVENT_HOOK_STARTED,EVENT_HOOK_PROGRESS,EVENT_HOOK_RESPONSE,EVENT_FILES_PERSISTED,EVENT_COMPACT_BOUNDARY,EVENT_LOCAL_COMMAND_OUTPUT
[0.5.4] - 2026-03-29
Fixed
- Quick Start output — CLI setup now shows per-instance
envconfig insidenew Claude({...})instead of globalexportvariables, enabling multiple isolated instances on one machine - Documentation — added CLI Setup section to README, wiki getting-started guide, and landing page with usage examples and per-instance isolation patterns
- Release command —
/releasenow includes mandatory documentation update step
[0.5.3] - 2026-03-29
Added
- Proxy support in CLI setup — interactive prompt or
--proxyflag to route Claude Code requests through an HTTP proxy (HTTP_PROXY/HTTPS_PROXY)
[0.5.2] - 2026-03-29
Added
- Quick Start preview — CLI
setupnow prints syntax-highlighted code examples after successful installation (query, streaming, sessions, parallel)
Changed
- Config directory prompt — always asks for config path on each run instead of caching, enabling multiple Claude Code instances on one machine
[0.5.1] - 2026-03-29
Fixed
binentry point — fixed invalid script path format that caused npm to strip thekraube-konnektorbinary during publish
[0.5.0] - 2026-03-29
Added
- CLI
setupcommand — one-command bootstrap for fresh servers: checks Node.js version, installs Claude Code globally, runsclaude loginfor authentication, and verifies the result binentry point — package now provideskraube-konnektorexecutable vianpx @scottwalker/kraube-konnektor setup/releasedev command — Claude Code slash command that automates the full release process (version bump, changelogs, build, publish, GitHub release)
Changed
- New runtime dependencies:
commander,ora,chalk(for CLI interface)
[0.4.7] - 2026-03-18
Fixed
- Synced version across landing page, wiki config, and CHANGELOG
- Added missing CHANGELOG entries for 0.4.1–0.4.6
- Fixed JSDoc examples in index.ts (
tool→sdkTool)
[0.4.6] - 2026-03-18
Fixed
- README examples — fixed 7 incorrect code examples (canUseTool, hookCallbacks, createSdkMcpServer, plugins, spawnClaudeCodeProcess, session utilities, mcpConfig)
- API docs — added per-query option mode support column (CLI only vs Both)
- Wiki — fixed
event.agentNameandevent.messagereferences in task event examples - Landing page — updated version, test count, and package size
[0.4.5] - 2026-03-18
Added
- Rate limit events — new
StreamRateLimitEventwith status, utilization, and reset time EVENT_RATE_LIMITconstant andStreamHandle.on('rate_limit', cb)support- Unknown SDK event forwarding — forwarded as generic system events instead of being silently dropped
[0.4.4] - 2026-03-18
Fixed
- Structured output —
result.structurednow correctly populated from SDKstructured_outputfield (was alwaysnull) - Error result distinction —
StreamResultEventnow includessubtype,isError,stopReason,numTurns - Init retry —
initPromiseresets on failure soinit()can be retried - Init timeout — new
initTimeoutMsoption (default 2 minutes) prevents infinite hangs - mcpConfig validation — throws error when used in SDK mode (not supported)
- ChatHandle crash handling — pending
send()promises reject when CLI process exits - Safe dispatch — callback errors no longer break the stream for other callbacks
- Buffer limit — 100MB stdout limit in CliExecutor to prevent OOM
[0.4.3] - 2026-03-18
Fixed
- Added missing
schemafield toClientOptionsfor SDK mode structured output
[0.4.2] - 2026-03-17
Added
- Open Graph meta tags for link previews in Telegram and messengers
[0.4.1] - 2026-03-17
Changed
- Updated npm README
[0.4.0] - 2026-03-16
Added
- SDK near-parity — 95% coverage of
@anthropic-ai/claude-agent-sdkOptions and Query API - SdkExecutor V1 migration — stable V1
query()API with full control methods (was unstable V2) canUseToolcallback — programmatic permission control with access to tool name, arguments, and abort signal- In-process MCP tools —
createSdkMcpServer()andsdkTool()for custom tools without external processes - JS hook callbacks —
hookCallbacksoption with all 21 event types - Thinking config —
{ type: 'adaptive' },{ type: 'enabled', budgetTokens },{ type: 'disabled' } - 13 runtime control methods —
setModel(),setPermissionMode(),rewindFiles(),stopTask(),setMcpServers(),reconnectMcpServer(),toggleMcpServer(),accountInfo(),supportedModels(),supportedCommands(),supportedAgents(),mcpServerStatus(),interrupt() - Per-query abort —
signal: AbortSignalonQueryOptions - Task stream events —
task_started,task_progress,task_notification - New options —
settingSources,settings,plugins,spawnClaudeCodeProcess,stderr,allowDangerouslySkipPermissions,betas,onElicitation,enableFileCheckpointing - Session utilities —
listSessions(),getSessionMessages() - 200 tests (was 122), now 214 as of v0.4.7
Changed
- SdkExecutor uses V1
query()API instead of V2unstable_v2_createSession() - Manual
.next()iteration viareadUntilResult()to prevent generator closure StreamEventunion expanded with task event types- Landing page moved from
docs/tolanding/
[0.3.0] - 2026-03-15
Added
- StreamHandle — fluent streaming API returned by
stream():.on(EVENT_TEXT, cb)— typed event callbacks with chaining.done()— consume stream, fire callbacks, return result.text()— collect all text into a string.pipe(writable)— pipe text to any writable, return result.toReadable()— Node.js Readable forpipeline(), HTTP responses, file writes[Symbol.asyncIterator]— backward-compatiblefor await
- ChatHandle — bidirectional streaming via
--input-format stream-json:claude.chat()— persistent CLI process for multi-turn conversation.send(prompt)— returnsPromise<StreamResultEvent>.toDuplex()— Node.js Duplex (write prompts, read text).toReadable(),.pipe(),.end(),.abort()
- Constants — all 180+ string literals extracted to named constants, exported for client use
- Streaming guide with 27 integration patterns
- 122 tests
Changed
stream()returnsStreamHandleinstead ofAsyncIterable<StreamEvent>(backward compatible)- Zero magic strings in source code
[0.2.0] - 2026-03-15
Fixed
- CLI streaming (
--verboseflag forstream-json) systemPromptin SDK modemcpServersandhooksdead code in CLI modeeffortLevelvia--effortflag instead of env variable
Added
- Permission mode
auto, effort levelmax --agent,--tools,--name,--strict-mcp-configflags- Comprehensive examples document
[0.1.0] - 2026-03-10
Added
- Initial release:
Claude,Session,ScheduledJob,CliExecutor,SdkExecutor - Full
ClientOptionscovering 45+ CLI flags - Streaming, structured output, MCP, agents, hooks, worktrees
- Typed error hierarchy
- 82 unit tests
