create-walle 0.9.12 → 0.9.13
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-walle",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.13",
|
|
4
4
|
"description": "CTM + Wall-E \u2014 AI coding dashboard and personal digital twin agent. Multi-agent terminal for Claude Code, Codex, Gemini, Aider, OpenCode, and more, plus prompt editor, task queue, and an agent that learns from Slack, email & calendar.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"create-walle": "bin/create-walle.js"
|
package/template/package.json
CHANGED
|
@@ -4,7 +4,17 @@ const fs = require('fs');
|
|
|
4
4
|
const path = require('path');
|
|
5
5
|
const { createHash } = require('crypto');
|
|
6
6
|
const { execFileSync } = require('child_process');
|
|
7
|
-
|
|
7
|
+
|
|
8
|
+
let claudeDesktopSessions = null;
|
|
9
|
+
function getClaudeDesktopSessions() {
|
|
10
|
+
if (claudeDesktopSessions) return claudeDesktopSessions;
|
|
11
|
+
try {
|
|
12
|
+
claudeDesktopSessions = require('../../claude-task-manager/lib/claude-desktop-sessions');
|
|
13
|
+
} catch {
|
|
14
|
+
return null;
|
|
15
|
+
}
|
|
16
|
+
return claudeDesktopSessions;
|
|
17
|
+
}
|
|
8
18
|
|
|
9
19
|
// --- Task type classification ---
|
|
10
20
|
|
|
@@ -90,7 +100,10 @@ async function harvestClaudeCodeSessions(since) {
|
|
|
90
100
|
// --- Claude Desktop Session Harvesting ---
|
|
91
101
|
|
|
92
102
|
async function harvestClaudeDesktopSessions(since) {
|
|
93
|
-
const
|
|
103
|
+
const reader = getClaudeDesktopSessions();
|
|
104
|
+
if (!reader) return [];
|
|
105
|
+
|
|
106
|
+
const sessions = reader.listSessions();
|
|
94
107
|
const samples = [];
|
|
95
108
|
|
|
96
109
|
for (const session of sessions) {
|
|
@@ -4,7 +4,17 @@ const fs = require('fs');
|
|
|
4
4
|
const path = require('path');
|
|
5
5
|
const { createHash } = require('crypto');
|
|
6
6
|
const { execSync } = require('child_process');
|
|
7
|
-
|
|
7
|
+
|
|
8
|
+
let claudeDesktopSessions = null;
|
|
9
|
+
function getClaudeDesktopSessions() {
|
|
10
|
+
if (claudeDesktopSessions) return claudeDesktopSessions;
|
|
11
|
+
try {
|
|
12
|
+
claudeDesktopSessions = require('../../claude-task-manager/lib/claude-desktop-sessions');
|
|
13
|
+
} catch {
|
|
14
|
+
return null;
|
|
15
|
+
}
|
|
16
|
+
return claudeDesktopSessions;
|
|
17
|
+
}
|
|
8
18
|
|
|
9
19
|
// --- Task type classification ---
|
|
10
20
|
|
|
@@ -90,7 +100,10 @@ async function harvestClaudeCodeSessions(since) {
|
|
|
90
100
|
// --- Claude Desktop Session Harvesting ---
|
|
91
101
|
|
|
92
102
|
async function harvestClaudeDesktopSessions(since) {
|
|
93
|
-
const
|
|
103
|
+
const reader = getClaudeDesktopSessions();
|
|
104
|
+
if (!reader) return [];
|
|
105
|
+
|
|
106
|
+
const sessions = reader.listSessions();
|
|
94
107
|
const samples = [];
|
|
95
108
|
|
|
96
109
|
for (const session of sessions) {
|