@locusai/cli 0.4.16 → 0.5.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 (3) hide show
  1. package/bin/agent/worker.js +17547 -11732
  2. package/bin/locus.js +14817 -8997
  3. package/package.json +7 -6
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@locusai/cli",
3
- "version": "0.4.16",
4
- "description": "Local-first AI development platform & engineering workspace",
3
+ "version": "0.5.0",
4
+ "description": "CLI for Locus - AI-native project management platform",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "locus": "./bin/locus.js"
@@ -12,7 +12,8 @@
12
12
  "lint": "biome lint .",
13
13
  "format": "biome format --write .",
14
14
  "test:local": "bun run build && node ./bin/locus.js",
15
- "pack:test": "npm pack && tar -xzf locusai-cli-*.tgz && cd package && npm link"
15
+ "pack:test": "npm pack && tar -xzf locusai-cli-*.tgz && cd package && npm link",
16
+ "clean": "rm -rf node_modules"
16
17
  },
17
18
  "files": [
18
19
  "bin",
@@ -22,16 +23,16 @@
22
23
  "keywords": [
23
24
  "locus",
24
25
  "project-management",
25
- "monorepo",
26
+ "ai-agents",
26
27
  "cli",
27
- "scaffold",
28
+ "engineering-teams",
28
29
  "agent",
29
30
  "agentic"
30
31
  ],
31
32
  "author": "",
32
33
  "license": "MIT",
33
34
  "dependencies": {
34
- "@locusai/sdk": "^0.4.16"
35
+ "@locusai/sdk": "^0.5.0"
35
36
  },
36
37
  "devDependencies": {}
37
38
  }