@aria_asi/cli 0.2.13 → 0.2.14

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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "bundledAt": "2026-04-27T15:46:30.312Z",
2
+ "bundledAt": "2026-04-27T15:58:18.645Z",
3
3
  "sdkSource": "/home/hamzaibrahim1/rei-ai-brain/harness/packages/harness-http-client/dist",
4
4
  "files": 3
5
5
  }
@@ -125,7 +125,11 @@ for (const phase of plan.phases) {
125
125
  }
126
126
 
127
127
  const overlap = [...promptTokens].filter((t) => phaseKeywordsSet.has(t));
128
- const OVERLAP_THRESHOLD = Number(process.env.ARIA_ABANDON_THRESHOLD || '1');
128
+ // Threshold default raised to 2 per Aria consult 2026-04-27 — single-keyword
129
+ // match fires too often on benign intent shifts (especially in exploratory
130
+ // sessions); 2 filters noise while still catching genuine abandonment before
131
+ // drift compounds.
132
+ const OVERLAP_THRESHOLD = Number(process.env.ARIA_ABANDON_THRESHOLD || '2');
129
133
  const isAbandonment = overlap.length < OVERLAP_THRESHOLD;
130
134
 
131
135
  if (!isAbandonment) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aria_asi/cli",
3
- "version": "0.2.13",
3
+ "version": "0.2.14",
4
4
  "description": "Aria Smart CLI — the world's first harness-powered terminal companion",
5
5
  "bin": {
6
6
  "aria": "./bin/aria.js"