Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@
"test": "vitest run"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.77",
"@effect/platform-bun": "catalog:",
"@effect/platform-node": "catalog:",
"@effect/sql-sqlite-bun": "catalog:",
"@pierre/diffs": "^1.1.0-beta.16",
"effect": "catalog:",
"node-pty": "^1.1.0",
"open": "^10.1.0"
"open": "^10.1.0",
"the-coding-sdk": "0.3.0"
},
"devDependencies": {
"@effect/language-service": "catalog:",
Expand Down
2 changes: 1 addition & 1 deletion apps/server/src/provider/Layers/ClaudeAdapter.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import type {
PermissionResult,
SDKMessage,
SDKUserMessage,
} from "@anthropic-ai/claude-agent-sdk";
} from "the-coding-sdk";
import {
ApprovalRequestId,
ProviderItemId,
Expand Down
4 changes: 2 additions & 2 deletions apps/server/src/provider/Layers/ClaudeAdapter.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* ClaudeAdapterLive - Scoped live implementation for the Claude Agent provider adapter.
*
* Wraps `@anthropic-ai/claude-agent-sdk` query sessions behind the generic
* Wraps `the-coding-sdk` query sessions behind the generic
* provider adapter contract and emits canonical runtime events.
*
* @module ClaudeAdapterLive
Expand All @@ -17,7 +17,7 @@ import {
type SDKResultMessage,
type SettingSource,
type SDKUserMessage,
} from "@anthropic-ai/claude-agent-sdk";
} from "the-coding-sdk";
import {
ApprovalRequestId,
type CanonicalItemType,
Expand Down
2 changes: 1 addition & 1 deletion apps/server/src/provider/Layers/ClaudeProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import type {
import { Cache, Duration, Effect, Equal, Layer, Option, Result, Schema, Stream } from "effect";
import { ChildProcess, ChildProcessSpawner } from "effect/unstable/process";
import { decodeJsonResult } from "@t3tools/shared/schemaJson";
import { query as claudeQuery } from "@anthropic-ai/claude-agent-sdk";
import { query as claudeQuery } from "the-coding-sdk";

import {
buildServerProvider,
Expand Down
Loading
Loading