autodev-cli 1.4.112 → 1.4.113

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/README.md +6 -0
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -14,6 +14,12 @@ autodev start . # run the autonomous loop
14
14
  > Provider CLIs (`claude`, `grok`, `opencode`, `copilot`) are **not** bundled —
15
15
  > install the one you plan to use separately.
16
16
 
17
+ ## Links
18
+
19
+ - **npm:** <https://www.npmjs.com/package/autodev-cli> — `npm i -g autodev-cli`
20
+ - **Related:** [VS Code extension](https://marketplace.visualstudio.com/items?itemName=AutoAIDev.autoaidev) · [desktop app](https://autoaidev.com/releases/AutoAIDev-desktop-latest.AppImage) · [Pixel Office](https://app.pixeloffice.org)
21
+ - **Product sites:** [autoaidev.com](https://autoaidev.com) · [pixeloffice.org](https://pixeloffice.org)
22
+
17
23
  Part of the **AutoDev** suite for running autonomous AI coding agents that appear as
18
24
  characters in a live "office":
19
25
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "autodev-cli",
3
- "version": "1.4.112",
3
+ "version": "1.4.113",
4
4
  "description": "AutoAIDev CLI — autonomous AI task loop with VS Code / Cursor launcher",
5
5
  "license": "MIT",
6
6
  "bin": {
@@ -33,19 +33,19 @@
33
33
  "test": "node test/smoke.mjs && node test/liveNarration.smoke.mjs && node test/liveNarration.edge.smoke.mjs && node test/normalizer.parity.smoke.mjs && node test/providerConfig.smoke.mjs && node test/mcpOnlyOperator.smoke.mjs && node test/opencodeEventFilter.smoke.mjs && node test/copilotMcpIsolation.smoke.mjs && node test/grokSpawnError.smoke.mjs && node test/initTemplate.smoke.mjs && node test/settingsAliases.smoke.mjs && node test/setupWritesOfficeMcp.smoke.mjs && node test/claudePermissions.smoke.mjs && node test/presenceGuard.smoke.mjs && node test/cliExitHardFail.smoke.mjs && node test/redactSecrets.smoke.mjs && node test/claudeUsage.smoke.mjs && node test/graphStore.smoke.mjs && node test/programReminder.smoke.mjs && node test/agentBackup.smoke.mjs && node test/persona.smoke.mjs && node test/soulUpdate.smoke.mjs && node test/sessionsGlobal.smoke.mjs && node test/resumeSessionLoopDefault.smoke.mjs && node test/secureFilePerms.smoke.mjs"
34
34
  },
35
35
  "dependencies": {
36
- "commander": "^12.1.0",
37
- "node-pty": "^1.1.0",
38
36
  "@opencode-ai/sdk": "^1.14.41",
39
37
  "@raylin01/claude-client": "^0.3.3",
40
- "adm-zip": "^0.5.17",
38
+ "adm-zip": "^0.6.0",
39
+ "commander": "^12.1.0",
41
40
  "imapflow": "^1.0.171",
42
- "mailparser": "^3.7.1"
41
+ "mailparser": "^3.7.1",
42
+ "node-pty": "^1.1.0"
43
43
  },
44
44
  "devDependencies": {
45
- "@types/node": "^20.0.0",
46
- "typescript": "^5.4.0",
47
45
  "@types/adm-zip": "^0.5.7",
48
- "@types/mailparser": "^3.4.6"
46
+ "@types/mailparser": "^3.4.6",
47
+ "@types/node": "^20.0.0",
48
+ "typescript": "^5.4.0"
49
49
  },
50
50
  "exports": {
51
51
  ".": "./out/cli.js",