@wrongstack/acp 1.0.11 → 1.0.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/dist/agent.js +1 -1
- package/package.json +3 -3
package/dist/agent.js
CHANGED
|
@@ -1369,7 +1369,7 @@ var ACPSessionStore = class {
|
|
|
1369
1369
|
*/
|
|
1370
1370
|
sessionFile(sessionId) {
|
|
1371
1371
|
if (!isSafePathSegment(sessionId)) return null;
|
|
1372
|
-
if (RESERVED_SESSION_IDS.has(sessionId)) return null;
|
|
1372
|
+
if (RESERVED_SESSION_IDS.has(sessionId.toLowerCase())) return null;
|
|
1373
1373
|
return resolveContainedPath(this.dir, `${sessionId}.json`);
|
|
1374
1374
|
}
|
|
1375
1375
|
/** Ensure the store directory exists. Memoized — only mkdirs once. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wrongstack/acp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.13",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ACP (Agent Client Protocol) integration for WrongStack — client + agent support",
|
|
6
6
|
"keywords": [
|
|
@@ -52,8 +52,8 @@
|
|
|
52
52
|
],
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"@agentclientprotocol/sdk": "^1.4.0",
|
|
55
|
-
"@wrongstack/core": "1.0.
|
|
56
|
-
"@wrongstack/primitives": "1.0.
|
|
55
|
+
"@wrongstack/core": "1.0.13",
|
|
56
|
+
"@wrongstack/primitives": "1.0.13"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"@types/node": "^26.5.1",
|