codmir 0.3.2 → 0.4.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/LICENSE +55 -0
- package/README.md +219 -14
- package/dist/analyze-LULBI4ZC.mjs +7 -0
- package/dist/chunk-ASGAT3Z5.mjs +756 -0
- package/dist/chunk-EBO3CZXG.mjs +15 -0
- package/dist/{chunk-7HVQNURM.mjs → chunk-GU32P57R.mjs} +70 -0
- package/dist/cli/index.js +2018 -146
- package/dist/cli/index.mjs +1166 -139
- package/dist/index.d.mts +76 -1
- package/dist/index.d.ts +76 -1
- package/dist/index.js +70 -0
- package/dist/index.mjs +2 -1
- package/dist/voice-agent/index.d.mts +134 -0
- package/dist/voice-agent/index.d.ts +134 -0
- package/dist/voice-agent/index.js +220 -0
- package/dist/voice-agent/index.mjs +187 -0
- package/dist/voice-daemon/index.d.mts +354 -0
- package/dist/voice-daemon/index.d.ts +354 -0
- package/dist/voice-daemon/index.js +1089 -0
- package/dist/voice-daemon/index.mjs +1046 -0
- package/package.json +49 -12
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codmir",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.4.0",
|
|
4
|
+
"description": "Official codmir SDK - AI that prevents wasted engineering time. CLI, SDK, voice assistant, codebase analysis, and intelligent automation.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -13,6 +13,16 @@
|
|
|
13
13
|
"types": "./dist/index.d.ts",
|
|
14
14
|
"require": "./dist/index.js",
|
|
15
15
|
"import": "./dist/index.mjs"
|
|
16
|
+
},
|
|
17
|
+
"./voice-agent": {
|
|
18
|
+
"types": "./dist/voice-agent/index.d.ts",
|
|
19
|
+
"require": "./dist/voice-agent/index.js",
|
|
20
|
+
"import": "./dist/voice-agent/index.mjs"
|
|
21
|
+
},
|
|
22
|
+
"./voice-daemon": {
|
|
23
|
+
"types": "./dist/voice-daemon/index.d.ts",
|
|
24
|
+
"require": "./dist/voice-daemon/index.js",
|
|
25
|
+
"import": "./dist/voice-daemon/index.mjs"
|
|
16
26
|
}
|
|
17
27
|
},
|
|
18
28
|
"files": [
|
|
@@ -22,29 +32,47 @@
|
|
|
22
32
|
"runkit-example.js"
|
|
23
33
|
],
|
|
24
34
|
"scripts": {
|
|
25
|
-
"build": "tsup src/index.ts src/cli/index.ts --format cjs,esm --dts --clean",
|
|
35
|
+
"build": "tsup src/index.ts src/cli/index.ts src/voice-agent/index.ts src/voice-daemon/index.ts --format cjs,esm --dts --clean",
|
|
26
36
|
"dev": "tsup src/index.ts src/cli/index.ts --format cjs,esm --dts --watch",
|
|
27
37
|
"prepublishOnly": "pnpm build",
|
|
28
|
-
"test": "jest"
|
|
38
|
+
"test": "jest",
|
|
39
|
+
"test:login": "node scripts/test/login.mjs",
|
|
40
|
+
"test:link": "node scripts/test/link.mjs",
|
|
41
|
+
"test:projects": "node scripts/test/projects.mjs",
|
|
42
|
+
"test:whoami": "node scripts/test/whoami.mjs",
|
|
43
|
+
"test:logout": "node scripts/test/logout.mjs",
|
|
44
|
+
"test:all": "npm run test:logout && npm run test:login && npm run test:whoami && npm run test:projects"
|
|
29
45
|
},
|
|
30
46
|
"keywords": [
|
|
31
47
|
"codmir",
|
|
32
|
-
"api-client",
|
|
33
|
-
"typescript",
|
|
34
48
|
"sdk",
|
|
35
|
-
"
|
|
49
|
+
"cli",
|
|
50
|
+
"ai",
|
|
51
|
+
"codebase-analysis",
|
|
52
|
+
"knowledge-base",
|
|
53
|
+
"task-replication",
|
|
54
|
+
"usage-tracking",
|
|
55
|
+
"observability",
|
|
36
56
|
"project-management",
|
|
37
|
-
"
|
|
57
|
+
"tickets",
|
|
58
|
+
"tasks",
|
|
59
|
+
"automation",
|
|
60
|
+
"multi-agent",
|
|
61
|
+
"ai-assistant",
|
|
62
|
+
"voice-assistant",
|
|
63
|
+
"speech-recognition",
|
|
64
|
+
"voice-daemon",
|
|
65
|
+
"wake-word"
|
|
38
66
|
],
|
|
39
67
|
"author": "codmir",
|
|
40
68
|
"license": "MIT",
|
|
41
69
|
"repository": {
|
|
42
70
|
"type": "git",
|
|
43
|
-
"url": "https://github.com/
|
|
44
|
-
"directory": "packages/codmir-
|
|
71
|
+
"url": "https://github.com/codmir/codmir.git",
|
|
72
|
+
"directory": "apps/web/packages/codmir-client"
|
|
45
73
|
},
|
|
46
74
|
"bugs": {
|
|
47
|
-
"url": "https://github.com/
|
|
75
|
+
"url": "https://github.com/codmir/codmir/issues"
|
|
48
76
|
},
|
|
49
77
|
"homepage": "https://codmir.com",
|
|
50
78
|
"runkit": {
|
|
@@ -59,16 +87,25 @@
|
|
|
59
87
|
"@semantic-release/release-notes-generator": "^14.0.0",
|
|
60
88
|
"@types/node": "^20.10.0",
|
|
61
89
|
"@types/prompts": "^2.4.9",
|
|
90
|
+
"@types/ws": "^8.18.1",
|
|
91
|
+
"@types/blessed": "^0.1.25",
|
|
62
92
|
"conventional-changelog-conventionalcommits": "^8.0.0",
|
|
63
93
|
"semantic-release": "^24.0.0",
|
|
64
94
|
"tsup": "^8.0.1",
|
|
65
95
|
"typescript": "^5.8.3"
|
|
66
96
|
},
|
|
67
97
|
"dependencies": {
|
|
98
|
+
"blessed": "^0.1.81",
|
|
99
|
+
"blessed-contrib": "^4.11.0",
|
|
68
100
|
"chalk": "^5.3.0",
|
|
101
|
+
"clipboardy": "^5.0.1",
|
|
69
102
|
"commander": "^12.0.0",
|
|
103
|
+
"form-data": "^4.0.5",
|
|
104
|
+
"glob": "^10.3.10",
|
|
70
105
|
"open": "^10.0.0",
|
|
71
|
-
"
|
|
106
|
+
"ora": "^9.0.0",
|
|
107
|
+
"prompts": "^2.4.2",
|
|
108
|
+
"ws": "^8.18.3"
|
|
72
109
|
},
|
|
73
110
|
"engines": {
|
|
74
111
|
"node": ">=18.0.0"
|