Skip to content
Open
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
18 changes: 18 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,33 @@
"@ant/computer-use-input": "file:./shims/ant-computer-use-input",
"@ant/computer-use-mcp": "file:./shims/ant-computer-use-mcp",
"@ant/computer-use-swift": "file:./shims/ant-computer-use-swift",
"@anthropic-ai/bedrock-sdk": "^0.29.2",
"@anthropic-ai/claude-agent-sdk": "*",
"@anthropic-ai/foundry-sdk": "^0.2.4",
"@anthropic-ai/mcpb": "*",
"@anthropic-ai/sandbox-runtime": "*",
"@anthropic-ai/sdk": "*",
"@anthropic-ai/vertex-sdk": "^0.16.1",
"@aws-sdk/client-bedrock": "^3.1056.0",
"@aws-sdk/client-bedrock-runtime": "*",
"@aws-sdk/client-sts": "^3.1056.0",
"@azure/identity": "^4.13.1",
"@commander-js/extra-typings": "*",
"@growthbook/growthbook": "*",
"@modelcontextprotocol/sdk": "*",
"@opentelemetry/api": "*",
"@opentelemetry/api-logs": "*",
"@opentelemetry/core": "*",
"@opentelemetry/exporter-logs-otlp-grpc": "^0.218.0",
"@opentelemetry/exporter-logs-otlp-http": "^0.218.0",
"@opentelemetry/exporter-logs-otlp-proto": "^0.218.0",
"@opentelemetry/exporter-metrics-otlp-grpc": "^0.218.0",
"@opentelemetry/exporter-metrics-otlp-http": "^0.218.0",
"@opentelemetry/exporter-metrics-otlp-proto": "^0.218.0",
"@opentelemetry/exporter-prometheus": "^0.218.0",
"@opentelemetry/exporter-trace-otlp-grpc": "^0.218.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.218.0",
"@opentelemetry/exporter-trace-otlp-proto": "^0.218.0",
"@opentelemetry/resources": "*",
"@opentelemetry/sdk-logs": "*",
"@opentelemetry/sdk-metrics": "*",
Expand Down Expand Up @@ -81,12 +97,14 @@
"react": "*",
"react-reconciler": "*",
"semver": "*",
"sharp": "^0.34.5",
"shell-quote": "*",
"signal-exit": "*",
"stack-utils": "*",
"strip-ansi": "*",
"supports-hyperlinks": "*",
"tree-kill": "*",
"turndown": "^7.2.4",
"type-fest": "*",
"undici": "*",
"url-handler-napi": "file:./shims/url-handler-napi",
Expand Down
10 changes: 10 additions & 0 deletions src/assistant/AssistantSessionChooser.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import React from 'react';
import type { AssistantSession } from './sessionDiscovery.js';

export function AssistantSessionChooser(_props: {
sessions: AssistantSession[];
onSelect: (id: string) => void;
onCancel: () => void;
}) {
return React.createElement('div', null, 'AssistantSessionChooser (stub)');
}
14 changes: 14 additions & 0 deletions src/commands/assistant/assistant.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import React from 'react';

export async function computeDefaultInstallDir(): Promise<string> {
return '';
}

export function NewInstallWizard(_props: {
defaultDir: string;
onInstalled: (dir: string) => void;
onCancel: () => void;
onError: (message: string) => void;
}) {
return React.createElement('div', null, 'NewInstallWizard (stub)');
}
11 changes: 11 additions & 0 deletions src/components/agents/SnapshotUpdateDialog.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import React from 'react';

export function SnapshotUpdateDialog(_props: {
agentType: string;
scope: unknown;
snapshotTimestamp: string;
onComplete: (value: 'merge' | 'keep' | 'replace') => void;
onCancel: () => void;
}) {
return React.createElement('div', null, 'SnapshotUpdateDialog (stub)');
}
2 changes: 2 additions & 0 deletions src/ink/devtools.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
// Stub - devtools module not available in this fork
export {};
3 changes: 3 additions & 0 deletions src/services/compact/cachedMicrocompact.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
// Stub - cached microcompact module not available in this fork
const cachedMCModule: Record<string, unknown> = {};
export default cachedMCModule;
9 changes: 9 additions & 0 deletions src/tools/REPLTool/REPLTool.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { buildTool } from '../../Tool.js';

export const REPLTool = buildTool({
name: 'repl',
description: 'REPL tool (stub)',
prompt: 'REPL tool stub',
inputSchema: { type: 'object' as const, properties: {} },
impl: async () => ({ output: '' }),
});
9 changes: 9 additions & 0 deletions src/tools/SuggestBackgroundPRTool/SuggestBackgroundPRTool.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { buildTool } from '../../Tool.js';

export const SuggestBackgroundPRTool = buildTool({
name: 'suggest_background_pr',
description: 'Suggest background PR tool (stub)',
prompt: 'Suggest background PR tool stub',
inputSchema: { type: 'object' as const, properties: {} },
impl: async () => ({ output: '' }),
});
9 changes: 9 additions & 0 deletions src/tools/VerifyPlanExecutionTool/VerifyPlanExecutionTool.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { buildTool } from '../../Tool.js';

export const VerifyPlanExecutionTool = buildTool({
name: 'verify_plan_execution',
description: 'Verify plan execution tool (stub)',
prompt: 'Verify plan execution tool stub',
inputSchema: { type: 'object' as const, properties: {} },
impl: async () => ({ output: '' }),
});
4 changes: 4 additions & 0 deletions src/utils/filePersistence/types.ts
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
export type TurnStartTime = number

export const DEFAULT_UPLOAD_CONCURRENCY = 5;
export const FILE_COUNT_LIMIT = 100;
export const OUTPUTS_SUBDIR = 'outputs';