claude-ws 0.4.0-beta.2 → 0.4.0-beta.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-ws",
|
|
3
|
-
"version": "0.4.0-beta.
|
|
3
|
+
"version": "0.4.0-beta.4",
|
|
4
4
|
"private": false,
|
|
5
|
-
"description": "
|
|
5
|
+
"description": "AI-powered workspace for solo CEOs and indie builders — manage your entire business with AI agents, not just code. Kanban board, code editor, Git integration, claw agent hub, local-first SQLite.",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"claude",
|
|
8
8
|
"claudews",
|
|
@@ -6,8 +6,8 @@ import { homedir } from 'os';
|
|
|
6
6
|
|
|
7
7
|
/** Get the data directory path. Uses DATA_DIR env or {CWD}/data */
|
|
8
8
|
export function getDataDir(): string {
|
|
9
|
-
const userCwd = process.env.CLAUDE_WS_USER_CWD || process.cwd();
|
|
10
|
-
return process.env.DATA_DIR || join(userCwd, 'data');
|
|
9
|
+
const userCwd = process.env.CLAUDE_WS_USER_CWD || /* turbopackIgnore: true */ process.cwd();
|
|
10
|
+
return process.env.DATA_DIR || join(/* turbopackIgnore: true */ userCwd, 'data');
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
/** Get the Agent Factory directory path (DATA_DIR/agent-factory) */
|
|
@@ -17,5 +17,5 @@ export function getAgentFactoryDir(): string {
|
|
|
17
17
|
|
|
18
18
|
/** Get the global Claude directory path (~/.claude) */
|
|
19
19
|
export function getGlobalClaudeDir(): string {
|
|
20
|
-
return join(homedir(), '.claude');
|
|
20
|
+
return join(/* turbopackIgnore: true */ homedir(), '.claude');
|
|
21
21
|
}
|
|
@@ -7,7 +7,7 @@ import { createUploadService } from '@agentic-sdk/services/attempt/attempt-file-
|
|
|
7
7
|
import { findUploadedFile } from '@agentic-sdk/services/upload/tmp-file-processor-and-cleanup';
|
|
8
8
|
|
|
9
9
|
const uploadsDir = path.join(
|
|
10
|
-
process.env.DATA_DIR || path.join(process.env.CLAUDE_WS_USER_CWD || process.cwd(), 'data'),
|
|
10
|
+
process.env.DATA_DIR || path.join(process.env.CLAUDE_WS_USER_CWD || /* turbopackIgnore: true */ process.cwd(), 'data'),
|
|
11
11
|
'uploads'
|
|
12
12
|
);
|
|
13
13
|
const uploadService = createUploadService(db, uploadsDir);
|
|
@@ -52,7 +52,7 @@ export function useTerminalLifecycle({ terminalId, isVisible, isMobile }: UseTer
|
|
|
52
52
|
const { Terminal } = await import('@xterm/xterm');
|
|
53
53
|
const { FitAddon } = await import('@xterm/addon-fit');
|
|
54
54
|
const { WebLinksAddon } = await import('@xterm/addon-web-links');
|
|
55
|
-
// @ts-
|
|
55
|
+
// @ts-ignore -- CSS module import handled by Next.js bundler
|
|
56
56
|
await import('@xterm/xterm/css/xterm.css');
|
|
57
57
|
|
|
58
58
|
if (!container || !container.isConnected) return;
|