You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/AGENTIC_PATTERNS_IMPLEMENTATION.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ oracle: {
32
32
}
33
33
34
34
workers: [{
35
-
model: 'claude-3-haiku-20240307',
35
+
model: 'claude-3-5-haiku-20241022',
36
36
costPerToken: 0.00025, // $0.25/1M tokens
37
37
capabilities: ['code_implementation', 'testing']
38
38
}]
@@ -244,4 +244,4 @@ npx stackmemory ralph oracle-worker "Build REST API for user management" \
244
244
245
245
These agentic patterns transform StackMemory from a traditional development tool into a self-improving, cost-effective, and highly capable software development platform. The combination of cost optimization, systematic learning, and extended capabilities enables production-ready AI-assisted development at scale.
246
246
247
-
The patterns are production-proven concepts adapted for StackMemory's unique architecture, providing immediate benefits while establishing a foundation for future AI-assisted development workflows.
247
+
The patterns are production-proven concepts adapted for StackMemory's unique architecture, providing immediate benefits while establishing a foundation for future AI-assisted development workflows.
Copy file name to clipboardExpand all lines: docs/status.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,3 +7,17 @@
7
7
- Two-tier storage: Complete
8
8
- Test Suite: 480 tests passing
9
9
10
+
## Test Mode
11
+
12
+
To run tests in constrained environments or avoid native module initialization during CLI/harness execution, enable test mode. When enabled, the CLI skips opening the local SQLite DB and avoids writing frames/anchors in helper commands.
13
+
14
+
- Env flags:
15
+
-`VITEST=true`: Detected automatically by the CLI; disables DB work in commands like `init`, `status`, and `context:test`.
16
+
-`NODE_ENV=test`: Also triggers DB‑skip behavior.
17
+
-`STACKMEMORY_TEST_SKIP_DB=1`: Explicit override to skip DB, independent of test runner.
18
+
19
+
- Typical usage:
20
+
-`VITEST=true npm run test:run`
21
+
-`STACKMEMORY_TEST_SKIP_DB=1 npm run test:run`
22
+
23
+
This keeps unit tests fast and stable across sandboxes. Regular usage (without these flags) fully initializes and uses the local `.stackmemory/context.db`.
0 commit comments