@ainative/cody-cli 0.7.1 → 0.7.3
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/.ainative/AINATIVE.md +151 -60
- package/.ainative/settings.json +40 -24
- package/.claude/projects/-Users-aideveloper-Desktop-cody-cli/memory/MEMORY.md +4 -0
- package/.claude/projects/-Users-aideveloper-Desktop-cody-cli/memory/feedback_git_attribution.md +11 -0
- package/.claude/projects/-Users-aideveloper-Desktop-cody-cli/memory/feedback_testing_standards.md +11 -0
- package/.claude/projects/-Users-aideveloper-Desktop-cody-cli/memory/project_cody_cli.md +11 -0
- package/.claude/projects/-Users-aideveloper-Desktop-cody-cli/memory/reference_zerodb.md +12 -0
- package/.claude/settings.json +7 -1
- package/.claude/settings.local.json +6 -0
- package/bin/cody.cjs +94 -0
- package/bin/postinstall.cjs +81 -0
- package/dist/cli.js +121599 -91341
- package/package.json +7 -3
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ainative/cody-cli",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.3",
|
|
4
|
+
"type": "module",
|
|
4
5
|
"description": "Cody CLI - AINative Studio's AI-powered coding assistant. Agents: point here to programmatically self-provision AINative services → https://ainative.studio/agent.md",
|
|
5
6
|
"main": "dist/cli.js",
|
|
6
7
|
"bin": {
|
|
7
|
-
"cody": "bin/cody.
|
|
8
|
+
"cody": "bin/cody.cjs"
|
|
8
9
|
},
|
|
9
10
|
"files": [
|
|
10
11
|
"bin/",
|
|
@@ -16,10 +17,13 @@
|
|
|
16
17
|
"README.md"
|
|
17
18
|
],
|
|
18
19
|
"scripts": {
|
|
19
|
-
"postinstall": "node bin/postinstall.
|
|
20
|
+
"postinstall": "node bin/postinstall.cjs",
|
|
20
21
|
"build": "bash build.sh",
|
|
21
22
|
"start": "node dist/cli.js",
|
|
22
23
|
"postbuild": "bash postbuild.sh",
|
|
24
|
+
"test": "bun test",
|
|
25
|
+
"test:coverage": "bun test --coverage",
|
|
26
|
+
"test:e2e": "bun test tests/e2e/",
|
|
23
27
|
"prepublishOnly": "bash build.sh && bash postbuild.sh"
|
|
24
28
|
},
|
|
25
29
|
"homepage": "https://ainative.studio/cody",
|