@stackmemoryai/stackmemory 1.10.5 → 1.14.0
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/LICENSE +131 -64
- package/README.md +107 -24
- package/bin/claude-sm +16 -1
- package/bin/claude-smd +16 -1
- package/bin/codex-smd +16 -1
- package/bin/gemini-sm +16 -1
- package/bin/hermes-sm +21 -0
- package/bin/hermes-smd +21 -0
- package/bin/opencode-sm +16 -1
- package/dist/src/cli/claude-sm.js +266 -84
- package/dist/src/cli/codex-sm.js +225 -33
- package/dist/src/cli/commands/bench.js +209 -2
- package/dist/src/cli/commands/brain.js +206 -0
- package/dist/src/cli/commands/cache.js +126 -0
- package/dist/src/cli/commands/company-os.js +184 -0
- package/dist/src/cli/commands/context.js +5 -0
- package/dist/src/cli/commands/daemon.js +41 -0
- package/dist/src/cli/commands/handoff.js +40 -9
- package/dist/src/cli/commands/onboard.js +70 -3
- package/dist/src/cli/commands/operator.js +127 -0
- package/dist/src/cli/commands/optimize.js +117 -0
- package/dist/src/cli/commands/orchestrate.js +232 -5
- package/dist/src/cli/commands/orchestrator.js +315 -26
- package/dist/src/cli/commands/pack.js +322 -0
- package/dist/src/cli/commands/patterns.js +254 -0
- package/dist/src/cli/commands/portal.js +161 -0
- package/dist/src/cli/commands/scaffold.js +92 -0
- package/dist/src/cli/commands/search.js +40 -1
- package/dist/src/cli/commands/setup.js +178 -11
- package/dist/src/cli/commands/skills.js +10 -1
- package/dist/src/cli/commands/state.js +265 -0
- package/dist/src/cli/commands/sync.js +253 -0
- package/dist/src/cli/commands/tasks.js +130 -1
- package/dist/src/cli/commands/vision.js +221 -0
- package/dist/src/cli/gemini-sm.js +19 -29
- package/dist/src/cli/hermes-sm.js +224 -0
- package/dist/src/cli/index.js +105 -39
- package/dist/src/cli/opencode-sm.js +38 -21
- package/dist/src/cli/utils/determinism-watcher.js +66 -0
- package/dist/src/cli/utils/real-cli-bin.js +116 -0
- package/dist/src/core/brain/brain-store.js +187 -0
- package/dist/src/core/brain/brain-sync.js +193 -0
- package/dist/src/core/brain/index.js +78 -0
- package/dist/src/core/brain/types.js +10 -0
- package/dist/src/core/cache/content-cache.js +238 -0
- package/dist/src/{integrations/diffmem → core/cache}/index.js +5 -5
- package/dist/src/core/cache/token-estimator.js +39 -0
- package/dist/src/core/config/feature-flags.js +2 -6
- package/dist/src/core/context/frame-database.js +79 -27
- package/dist/src/core/context/recursive-context-manager.js +1 -1
- package/dist/src/core/context/rehydration.js +2 -1
- package/dist/src/core/cross-search/cross-project-search.js +269 -0
- package/dist/src/core/cross-search/index.js +10 -0
- package/dist/src/core/database/sqlite-adapter.js +14 -84
- package/dist/src/core/extensions/provider-adapter.js +5 -0
- package/dist/src/core/models/model-router.js +54 -2
- package/dist/src/core/models/provider-pricing.js +58 -4
- package/dist/src/core/monitoring/logger.js +2 -1
- package/dist/src/core/optimization/trace-optimizer.js +413 -0
- package/dist/src/core/patterns/index.js +22 -0
- package/dist/src/core/patterns/pattern-applier.js +39 -0
- package/dist/src/core/patterns/pattern-observer.js +157 -0
- package/dist/src/core/patterns/pattern-store.js +259 -0
- package/dist/src/core/patterns/types.js +19 -0
- package/dist/src/core/provenance/confidence-scorer.js +128 -0
- package/dist/src/core/provenance/index.js +40 -0
- package/dist/src/core/provenance/provenance-store.js +194 -0
- package/dist/src/core/provenance/types.js +82 -0
- package/dist/src/core/retrieval/llm-context-retrieval.js +5 -4
- package/dist/src/core/retrieval/unified-context-assembler.js +11 -66
- package/dist/src/core/session/project-handoff.js +64 -0
- package/dist/src/core/session/session-manager.js +28 -0
- package/dist/src/core/shared-state/canonical-store.js +564 -0
- package/dist/src/core/skill-packs/index.js +18 -0
- package/dist/src/core/skill-packs/parser.js +42 -0
- package/dist/src/core/skill-packs/registry.js +224 -0
- package/dist/src/core/skill-packs/types.js +79 -0
- package/dist/src/core/storage/cloud-sync-manager.js +116 -0
- package/dist/src/core/storage/cloud-sync.js +574 -0
- package/dist/src/core/storage/two-tier-storage.js +5 -1
- package/dist/src/core/tasks/master-tasks-template.js +43 -0
- package/dist/src/core/tasks/md-task-parser.js +138 -0
- package/dist/src/core/trace/trace-event-store.js +282 -0
- package/dist/src/core/vision/index.js +27 -0
- package/dist/src/core/vision/signals.js +79 -0
- package/dist/src/core/vision/types.js +22 -0
- package/dist/src/core/vision/vision-file.js +146 -0
- package/dist/src/core/vision/vision-loop.js +220 -0
- package/dist/src/core/wiki/wiki-compiler.js +103 -1
- package/dist/src/daemon/daemon-config.js +52 -0
- package/dist/src/daemon/services/desire-path-service.js +566 -0
- package/dist/src/daemon/services/github-service.js +126 -0
- package/dist/src/daemon/services/research-stream-service.js +320 -0
- package/dist/src/daemon/services/telemetry-service.js +192 -0
- package/dist/src/daemon/unified-daemon.js +58 -1
- package/dist/src/features/browser/cli-browser-agent.js +417 -0
- package/dist/src/features/browser/stagehand-workflows.js +578 -0
- package/dist/src/features/operator/adapter-factory.js +62 -0
- package/dist/src/features/operator/browser-adapter.js +109 -0
- package/dist/src/features/operator/desktop-adapter.js +125 -0
- package/dist/src/features/operator/index.js +39 -0
- package/dist/src/features/operator/llm-decision.js +137 -0
- package/dist/src/features/operator/operator-logger.js +92 -0
- package/dist/src/features/operator/overnight-runner.js +327 -0
- package/dist/src/features/operator/screen-adapter.js +91 -0
- package/dist/src/features/operator/session-manager.js +127 -0
- package/dist/src/features/operator/state-machine.js +227 -0
- package/dist/src/features/operator/task-queue.js +81 -0
- package/dist/src/features/portal/index.js +26 -0
- package/dist/src/features/portal/server.js +240 -0
- package/dist/src/features/portal/types.js +14 -0
- package/dist/src/features/portal/ui.js +195 -0
- package/dist/src/features/sweep/pty-wrapper.js +13 -5
- package/dist/src/features/tasks/task-aware-context.js +2 -1
- package/dist/src/features/tui/simple-monitor.js +0 -23
- package/dist/src/features/tui/swarm-monitor.js +8 -66
- package/dist/src/features/web/client/hooks/use-socket.js +12 -0
- package/dist/src/{core/merge/index.js → features/web/client/lib/utils.js} +8 -4
- package/dist/src/features/web/client/next-env.d.js +4 -0
- package/dist/src/features/web/client/stores/session-store.js +12 -0
- package/dist/src/features/web/server/gcp-billing.js +76 -0
- package/dist/src/features/web/server/index.js +10 -0
- package/dist/src/features/web/server/spend-calculator.js +228 -0
- package/dist/src/hooks/schemas.js +6 -1
- package/dist/src/integrations/anthropic/client.js +3 -2
- package/dist/src/integrations/claude-code/agent-bridge.js +0 -3
- package/dist/src/integrations/claude-code/subagent-client.js +307 -11
- package/dist/src/integrations/claude-code/task-coordinator.js +2 -1
- package/dist/src/integrations/github/pr-state.js +158 -0
- package/dist/src/integrations/linear/client.js +4 -1
- package/dist/src/integrations/linear/webhook-retry.js +196 -0
- package/dist/src/integrations/linear/webhook-server.js +18 -22
- package/dist/src/integrations/mcp/handlers/cloud-sync-handlers.js +101 -0
- package/dist/src/integrations/mcp/handlers/index.js +40 -84
- package/dist/src/integrations/mcp/server.js +542 -641
- package/dist/src/integrations/mcp/tool-alias-registry.js +297 -0
- package/dist/src/integrations/mcp/tool-definitions.js +152 -682
- package/dist/src/mcp/stackmemory-mcp-server.js +571 -231
- package/dist/src/orchestrators/multimodal/determinism.js +244 -0
- package/dist/src/orchestrators/multimodal/harness.js +149 -78
- package/dist/src/orchestrators/multimodal/providers.js +44 -3
- package/dist/src/skills/recursive-agent-orchestrator.js +2 -4
- package/dist/src/utils/hook-installer.js +0 -8
- package/dist/src/utils/process-cleanup.js +1 -7
- package/docs/README.md +42 -0
- package/docs/guides/README_INSTALL.md +208 -0
- package/package.json +27 -9
- package/packs/coding/python-fastapi/instructions.md +60 -0
- package/packs/coding/python-fastapi/pack.yaml +28 -0
- package/packs/coding/typescript-react/instructions.md +47 -0
- package/packs/coding/typescript-react/pack.yaml +28 -0
- package/packs/core/commands/capture.md +32 -0
- package/packs/core/commands/learn.md +73 -0
- package/packs/core/commands/next.md +36 -0
- package/packs/core/commands/restart.md +58 -0
- package/packs/core/commands/restore.md +29 -0
- package/packs/core/commands/start.md +57 -0
- package/packs/core/commands/stop.md +65 -0
- package/packs/core/commands/summary.md +40 -0
- package/packs/core/manifest.json +24 -0
- package/packs/ops/decision-recovery/instructions.md +65 -0
- package/packs/ops/decision-recovery/pack.yaml +89 -0
- package/scripts/claude-code-wrapper.sh +11 -0
- package/scripts/claude-sm-setup.sh +12 -1
- package/scripts/codex-wrapper.sh +11 -0
- package/scripts/git-hooks/branch-context-manager.sh +11 -0
- package/scripts/git-hooks/post-checkout-stackmemory.sh +11 -0
- package/scripts/git-hooks/post-commit-stackmemory.sh +11 -0
- package/scripts/git-hooks/pre-commit-stackmemory.sh +11 -0
- package/scripts/hooks/cleanup-shell.sh +12 -1
- package/scripts/hooks/task-complete.sh +12 -1
- package/scripts/install-code-execution-hooks.sh +12 -1
- package/scripts/install-sweep-hook.sh +12 -0
- package/scripts/install.sh +11 -0
- package/scripts/opencode-wrapper.sh +11 -0
- package/scripts/portal/cloud-init.yaml +69 -0
- package/scripts/portal/setup.sh +69 -0
- package/scripts/portal/stackmemory-portal.service +34 -0
- package/scripts/setup-claude-integration.sh +12 -1
- package/scripts/smoke-init-db.sh +23 -0
- package/scripts/stackmemory-daemon.sh +11 -0
- package/scripts/verify-dist.cjs +11 -4
- package/dist/src/cli/commands/ralph.js +0 -1053
- package/dist/src/cli/commands/team.js +0 -168
- package/dist/src/core/context/shared-context-layer.js +0 -620
- package/dist/src/core/context/stack-merge-resolver.js +0 -748
- package/dist/src/core/merge/conflict-detector.js +0 -430
- package/dist/src/core/merge/resolution-engine.js +0 -557
- package/dist/src/core/merge/stack-diff.js +0 -531
- package/dist/src/core/merge/unified-merge-resolver.js +0 -302
- package/dist/src/hooks/diffmem-hooks.js +0 -376
- package/dist/src/integrations/diffmem/client.js +0 -208
- package/dist/src/integrations/diffmem/config.js +0 -14
- package/dist/src/integrations/greptile/client.js +0 -101
- package/dist/src/integrations/greptile/config.js +0 -14
- package/dist/src/integrations/greptile/index.js +0 -11
- package/dist/src/integrations/mcp/handlers/cord-handlers.js +0 -397
- package/dist/src/integrations/mcp/handlers/diffmem-handlers.js +0 -455
- package/dist/src/integrations/mcp/handlers/greptile-handlers.js +0 -456
- package/dist/src/integrations/mcp/handlers/provider-handlers.js +0 -227
- package/dist/src/integrations/mcp/handlers/team-handlers.js +0 -211
- package/dist/src/integrations/ralph/bridge/ralph-stackmemory-bridge.js +0 -863
- package/dist/src/integrations/ralph/context/context-budget-manager.js +0 -308
- package/dist/src/integrations/ralph/context/stackmemory-context-loader.js +0 -391
- package/dist/src/integrations/ralph/index.js +0 -17
- package/dist/src/integrations/ralph/learning/pattern-learner.js +0 -435
- package/dist/src/integrations/ralph/lifecycle/iteration-lifecycle.js +0 -448
- package/dist/src/integrations/ralph/loopmax.js +0 -488
- package/dist/src/integrations/ralph/monitoring/swarm-dashboard.js +0 -293
- package/dist/src/integrations/ralph/monitoring/swarm-registry.js +0 -107
- package/dist/src/integrations/ralph/orchestration/multi-loop-orchestrator.js +0 -508
- package/dist/src/integrations/ralph/patterns/compounding-engineering-pattern.js +0 -407
- package/dist/src/integrations/ralph/patterns/extended-coherence-sessions.js +0 -495
- package/dist/src/integrations/ralph/patterns/oracle-worker-pattern.js +0 -387
- package/dist/src/integrations/ralph/performance/performance-optimizer.js +0 -357
- package/dist/src/integrations/ralph/recovery/crash-recovery.js +0 -461
- package/dist/src/integrations/ralph/state/state-reconciler.js +0 -420
- package/dist/src/integrations/ralph/swarm/git-workflow-manager.js +0 -444
- package/dist/src/integrations/ralph/swarm/swarm-coordinator.js +0 -1007
- package/dist/src/integrations/ralph/visualization/ralph-debugger.js +0 -635
- package/scripts/ralph-loop-implementation.js +0 -404
- /package/dist/src/core/{merge → cache}/types.js +0 -0
- /package/dist/src/{integrations/diffmem/types.js → core/storage/cloud-sync-types.js} +0 -0
- /package/dist/src/{integrations/greptile/types.js → core/trace/trace-event.js} +0 -0
- /package/dist/src/{integrations/ralph → features/operator}/types.js +0 -0
|
@@ -1,168 +0,0 @@
|
|
|
1
|
-
import { fileURLToPath as __fileURLToPath } from 'url';
|
|
2
|
-
import { dirname as __pathDirname } from 'path';
|
|
3
|
-
const __filename = __fileURLToPath(import.meta.url);
|
|
4
|
-
const __dirname = __pathDirname(__filename);
|
|
5
|
-
import { Command } from "commander";
|
|
6
|
-
import Database from "better-sqlite3";
|
|
7
|
-
import { join } from "path";
|
|
8
|
-
import { existsSync } from "fs";
|
|
9
|
-
import { v4 as uuidv4 } from "uuid";
|
|
10
|
-
import { FrameManager } from "../../core/context/index.js";
|
|
11
|
-
const VALID_TYPES = [
|
|
12
|
-
"FACT",
|
|
13
|
-
"DECISION",
|
|
14
|
-
"CONSTRAINT",
|
|
15
|
-
"INTERFACE_CONTRACT",
|
|
16
|
-
"TODO",
|
|
17
|
-
"RISK"
|
|
18
|
-
];
|
|
19
|
-
const MAX_CONTENT_LENGTH = 2e3;
|
|
20
|
-
function findProjectRoot(startDir) {
|
|
21
|
-
let dir = startDir;
|
|
22
|
-
for (let i = 0; i < 20; i++) {
|
|
23
|
-
if (existsSync(join(dir, ".stackmemory", "context.db"))) {
|
|
24
|
-
return dir;
|
|
25
|
-
}
|
|
26
|
-
const parent = join(dir, "..");
|
|
27
|
-
if (parent === dir) break;
|
|
28
|
-
dir = parent;
|
|
29
|
-
}
|
|
30
|
-
return null;
|
|
31
|
-
}
|
|
32
|
-
function createTeamCommands() {
|
|
33
|
-
const team = new Command("team").description(
|
|
34
|
-
"Team shared context (cross-agent memory)"
|
|
35
|
-
);
|
|
36
|
-
team.command("share").description("Share context with other agents (creates shared anchor)").requiredOption("-c, --content <text>", "Anchor text to share").option(
|
|
37
|
-
"-t, --type <type>",
|
|
38
|
-
"Anchor type (FACT|DECISION|CONSTRAINT|TODO|RISK)",
|
|
39
|
-
"FACT"
|
|
40
|
-
).option("-p, --priority <n>", "Priority 1-10", "7").option(
|
|
41
|
-
"--source <src>",
|
|
42
|
-
"Origin: subagent|teammate-idle|task-complete|manual",
|
|
43
|
-
"manual"
|
|
44
|
-
).option("--agent-id <id>", "Source agent ID").option("--task-id <id>", "Source task ID").action(async (options) => {
|
|
45
|
-
const projectRoot = findProjectRoot(process.cwd());
|
|
46
|
-
if (!projectRoot) {
|
|
47
|
-
console.error(
|
|
48
|
-
'StackMemory not initialized. Run "stackmemory init" first.'
|
|
49
|
-
);
|
|
50
|
-
process.exitCode = 1;
|
|
51
|
-
return;
|
|
52
|
-
}
|
|
53
|
-
const dbPath = join(projectRoot, ".stackmemory", "context.db");
|
|
54
|
-
const db = new Database(dbPath);
|
|
55
|
-
db.pragma("journal_mode = WAL");
|
|
56
|
-
try {
|
|
57
|
-
let projectId = "default";
|
|
58
|
-
try {
|
|
59
|
-
const row = db.prepare(`SELECT value FROM metadata WHERE key = 'project_id'`).get();
|
|
60
|
-
if (row?.value) projectId = row.value;
|
|
61
|
-
} catch {
|
|
62
|
-
}
|
|
63
|
-
const frameManager = new FrameManager(db, projectId, {
|
|
64
|
-
skipContextBridge: true
|
|
65
|
-
});
|
|
66
|
-
let frameId = frameManager.getCurrentFrameId();
|
|
67
|
-
if (!frameId) {
|
|
68
|
-
frameId = frameManager.createFrame({
|
|
69
|
-
type: "tool_scope",
|
|
70
|
-
name: "team_share"
|
|
71
|
-
});
|
|
72
|
-
}
|
|
73
|
-
const type = options.type.toUpperCase();
|
|
74
|
-
if (!VALID_TYPES.includes(type)) {
|
|
75
|
-
console.error(
|
|
76
|
-
`Invalid type "${type}". Must be one of: ${VALID_TYPES.join(", ")}`
|
|
77
|
-
);
|
|
78
|
-
process.exitCode = 1;
|
|
79
|
-
return;
|
|
80
|
-
}
|
|
81
|
-
const content = options.content.slice(0, MAX_CONTENT_LENGTH);
|
|
82
|
-
const priority = Math.max(1, Math.min(10, parseInt(options.priority)));
|
|
83
|
-
const runId = process.env["CLAUDE_INSTANCE_ID"] || process.env["STACKMEMORY_RUN_ID"] || uuidv4();
|
|
84
|
-
const metadata = {
|
|
85
|
-
shared: true,
|
|
86
|
-
sharedBy: runId,
|
|
87
|
-
sharedAt: Date.now(),
|
|
88
|
-
source: options.source
|
|
89
|
-
};
|
|
90
|
-
if (options.agentId) metadata.agentId = options.agentId;
|
|
91
|
-
if (options.taskId) metadata.taskId = options.taskId;
|
|
92
|
-
frameManager.addAnchor(type, content, priority, metadata);
|
|
93
|
-
console.log(
|
|
94
|
-
`Shared [${type}] (priority ${priority}): ${content.slice(0, 80)}${content.length > 80 ? "..." : ""}`
|
|
95
|
-
);
|
|
96
|
-
} catch (error) {
|
|
97
|
-
console.error("Failed to share context:", error.message);
|
|
98
|
-
process.exitCode = 1;
|
|
99
|
-
} finally {
|
|
100
|
-
db.close();
|
|
101
|
-
}
|
|
102
|
-
});
|
|
103
|
-
team.command("list").description("List recent shared context from all agents").option("-l, --limit <n>", "Max results", "10").option("--since <epoch>", "Filter by timestamp (ms since epoch)").action(async (options) => {
|
|
104
|
-
const projectRoot = findProjectRoot(process.cwd());
|
|
105
|
-
if (!projectRoot) {
|
|
106
|
-
console.error(
|
|
107
|
-
'StackMemory not initialized. Run "stackmemory init" first.'
|
|
108
|
-
);
|
|
109
|
-
process.exitCode = 1;
|
|
110
|
-
return;
|
|
111
|
-
}
|
|
112
|
-
const dbPath = join(projectRoot, ".stackmemory", "context.db");
|
|
113
|
-
const db = new Database(dbPath);
|
|
114
|
-
try {
|
|
115
|
-
let projectId = "default";
|
|
116
|
-
try {
|
|
117
|
-
const row = db.prepare(`SELECT value FROM metadata WHERE key = 'project_id'`).get();
|
|
118
|
-
if (row?.value) projectId = row.value;
|
|
119
|
-
} catch {
|
|
120
|
-
}
|
|
121
|
-
const limit = parseInt(options.limit) || 10;
|
|
122
|
-
const since = options.since ? parseInt(options.since) : void 0;
|
|
123
|
-
const params = [projectId];
|
|
124
|
-
let whereExtra = "";
|
|
125
|
-
if (since) {
|
|
126
|
-
whereExtra = " AND a.created_at > ?";
|
|
127
|
-
params.push(Math.floor(since / 1e3));
|
|
128
|
-
}
|
|
129
|
-
params.push(limit);
|
|
130
|
-
const rows = db.prepare(
|
|
131
|
-
`SELECT a.*, f.name as frame_name, f.run_id
|
|
132
|
-
FROM anchors a
|
|
133
|
-
JOIN frames f ON a.frame_id = f.frame_id
|
|
134
|
-
WHERE f.project_id = ?
|
|
135
|
-
AND a.metadata LIKE '%"shared":true%'${whereExtra}
|
|
136
|
-
ORDER BY a.priority DESC, a.created_at DESC
|
|
137
|
-
LIMIT ?`
|
|
138
|
-
).all(...params);
|
|
139
|
-
if (rows.length === 0) {
|
|
140
|
-
console.log("No shared context found.");
|
|
141
|
-
return;
|
|
142
|
-
}
|
|
143
|
-
console.log(`
|
|
144
|
-
Shared Context (${rows.length} anchors):
|
|
145
|
-
`);
|
|
146
|
-
for (const row of rows) {
|
|
147
|
-
const meta = JSON.parse(row.metadata || "{}");
|
|
148
|
-
const date = new Date(row.created_at * 1e3).toLocaleString();
|
|
149
|
-
const source = meta.source || "unknown";
|
|
150
|
-
const runSlice = row.run_id?.slice(0, 8) || "?";
|
|
151
|
-
console.log(
|
|
152
|
-
` [${row.type}] p${row.priority} | ${row.text.slice(0, 100)}${row.text.length > 100 ? "..." : ""}`
|
|
153
|
-
);
|
|
154
|
-
console.log(` source: ${source} | run: ${runSlice} | ${date}`);
|
|
155
|
-
}
|
|
156
|
-
console.log("");
|
|
157
|
-
} catch (error) {
|
|
158
|
-
console.error("Failed to list context:", error.message);
|
|
159
|
-
process.exitCode = 1;
|
|
160
|
-
} finally {
|
|
161
|
-
db.close();
|
|
162
|
-
}
|
|
163
|
-
});
|
|
164
|
-
return team;
|
|
165
|
-
}
|
|
166
|
-
export {
|
|
167
|
-
createTeamCommands
|
|
168
|
-
};
|