@phartmann80/klaw 0.1.0 → 0.1.1

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/index.js CHANGED
@@ -72,4 +72,4 @@ program
72
72
  console.log(chalk.green('[KLAW][SYSTEM] Memory system active'));
73
73
  });
74
74
 
75
- program.parse();
75
+ program.parse(process.argv);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@phartmann80/klaw",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Local AI runtime for running agents with your own models and APIs",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -9,6 +9,11 @@
9
9
  "scripts": {
10
10
  "test": "echo 'No test suite yet' && exit 0"
11
11
  },
12
+ "dependencies": {
13
+ "chalk": "^4.1.2",
14
+ "commander": "^2.20.3",
15
+ "inquirer": "^8.2.7"
16
+ },
12
17
  "keywords": [
13
18
  "ai",
14
19
  "runtime",
Binary file
@@ -2,7 +2,7 @@ const ArchitectAgent = require('./architect');
2
2
  const FileWriterAgent = require('./writer');
3
3
  const ShellAgent = require('./shell');
4
4
  const FixerAgent = require('./fixer');
5
- const { appendMemory, appendMemoryBlock } = require('./memory');
5
+ const { appendMemory, appendMemoryBlock } = require('../memory');
6
6
  const fs = require('fs');
7
7
  const path = require('path');
8
8