@aident-ai/cli 0.2.0-rc.0 → 0.2.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aident-ai/cli",
3
- "version": "0.2.0-rc.0",
3
+ "version": "0.2.0",
4
4
  "description": "Aident CLI — umbrella access to Loadout integrations, Playbook automation, Intern tools, and the Aident platform.",
5
5
  "homepage": "https://aident.ai",
6
6
  "repository": {
@@ -20,15 +20,27 @@
20
20
  "bin": {
21
21
  "aident": "./dist/cli.mjs"
22
22
  },
23
+ "exports": {
24
+ "./dsh": "./dist/dsh.mjs",
25
+ "./cordis.patch.yml": "./cordis.patch.yml",
26
+ "./dist/*": "./dist/*",
27
+ "./package.json": "./package.json"
28
+ },
23
29
  "files": [
24
30
  "dist",
31
+ "cordis.patch.yml",
25
32
  "README.md",
26
33
  "LICENSE"
27
34
  ],
35
+ "dsh": {
36
+ "bundle": {
37
+ "patch": "./cordis.patch.yml"
38
+ }
39
+ },
28
40
  "scripts": {
29
41
  "build": "bun run scripts/build.ts",
30
42
  "dev": "AIDENT_CLI_VERSION=$npm_package_version bun run src/cli.ts",
31
- "test": "bun test src/__tests__",
43
+ "test": "bun test --timeout=30000 src/__tests__",
32
44
  "test:e2e": "bun test integration",
33
45
  "typecheck": "tsc --noEmit",
34
46
  "format": "pnpm exec prettier . --write",
@@ -59,6 +71,8 @@
59
71
  "agent",
60
72
  "ai",
61
73
  "skill",
62
- "mcp"
74
+ "mcp",
75
+ "dsh",
76
+ "deepseek-harness"
63
77
  ]
64
78
  }