agent-clinch 0.2.0 → 0.4.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.
Files changed (2) hide show
  1. package/cli.js +2 -1
  2. package/package.json +2 -2
package/cli.js CHANGED
@@ -13,6 +13,7 @@ const readline = require('readline');
13
13
  const CONFIG_DIR = path.join(os.homedir(), '.clinch');
14
14
  const CONFIG_FILE = path.join(CONFIG_DIR, 'config.json');
15
15
  const SESSIONS_FILE = path.join(CONFIG_DIR, 'sessions.json');
16
+ const DEALS_FILE = path.join(CONFIG_DIR, 'deals.json'); // Restored
16
17
 
17
18
  // ── Persistence Helpers ───────────────────────────────────────
18
19
  function loadConfig() {
@@ -402,6 +403,6 @@ program
402
403
  program
403
404
  .name('clinch')
404
405
  .description('Clinch Protocol — Agent Negotiation CLI')
405
- .version('0.2.0');
406
+ .version('0.4.0');
406
407
 
407
408
  program.parse();
package/package.json CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
 
8
8
  "name": "agent-clinch",
9
- "version": "0.2.0",
9
+ "version": "0.4.0",
10
10
  "description": "Clinch Protocol CLI — agent negotiation from your terminal",
11
11
  "main": "cli.js",
12
12
  "bin": {
@@ -19,6 +19,6 @@
19
19
  "dependencies": {
20
20
  "commander": "^14.0.3",
21
21
  "node-llama-cpp": "^3.18.1",
22
- "clinch-core": "0.2.0"
22
+ "clinch-core": "0.4.0"
23
23
  }
24
24
  }