Skip to content

Commit f7e9919

Browse files
author
StackMemory Bot (CLI)
committed
fix(codex-sm): correct danger flag name, bump version to 1.2.6
- Fix --dangerously-skip-permissions → --dangerously-bypass-approvals-and-sandbox - Bump version 1.2.5 → 1.2.6
1 parent d9045ed commit f7e9919

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stackmemoryai/stackmemory",
3-
"version": "1.2.5",
3+
"version": "1.2.6",
44
"description": "Project-scoped memory for AI coding tools. Durable context across sessions with 32 MCP tools, FTS5 search, Claude/Codex/OpenCode wrappers, Linear sync, automatic hooks, and log analysis.",
55
"engines": {
66
"node": ">=20.0.0",

src/cli/codex-sm-danger.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@ import * as path from 'path';
1414
const codexSmPath = path.join(__dirname, 'codex-sm.js');
1515

1616
// Prepend the danger flag to all args
17-
const args = ['--dangerously-skip-permissions', ...process.argv.slice(2)];
17+
const args = [
18+
'--dangerously-bypass-approvals-and-sandbox',
19+
...process.argv.slice(2),
20+
];
1821

1922
// Spawn codex-sm with the danger flag
2023
const child = spawn('node', [codexSmPath, ...args], {

0 commit comments

Comments
 (0)