companion-cli 1.0.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/README.md +1 -0
- package/agents/example.json +9 -0
- package/agents/fontendengineer.json +9 -0
- package/dist/index.js +9975 -0
- package/dist/index.js.map +1 -0
- package/package.json +88 -0
package/package.json
ADDED
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "companion-cli",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "A model-agnostic AI CLI assistant for your terminal — OpenAI, Anthropic, Google, with tools, smart home, desktop automation, and more",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"companion-cli": "./dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist",
|
|
11
|
+
"agents",
|
|
12
|
+
"README.md"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"dev": "tsx src/index.ts",
|
|
16
|
+
"build": "tsup",
|
|
17
|
+
"start": "node dist/index.js",
|
|
18
|
+
"typecheck": "tsc --noEmit",
|
|
19
|
+
"prepublishOnly": "npm run build"
|
|
20
|
+
},
|
|
21
|
+
"keywords": [
|
|
22
|
+
"ai",
|
|
23
|
+
"cli",
|
|
24
|
+
"chatbot",
|
|
25
|
+
"openai",
|
|
26
|
+
"gpt",
|
|
27
|
+
"anthropic",
|
|
28
|
+
"claude",
|
|
29
|
+
"google",
|
|
30
|
+
"gemini",
|
|
31
|
+
"terminal",
|
|
32
|
+
"assistant",
|
|
33
|
+
"smart-home",
|
|
34
|
+
"google-cast",
|
|
35
|
+
"desktop-automation"
|
|
36
|
+
],
|
|
37
|
+
"author": "anmar.altameemi@coxautoinc.com",
|
|
38
|
+
"license": "MIT",
|
|
39
|
+
"repository": {
|
|
40
|
+
"type": "git",
|
|
41
|
+
"url": "https://github.com/anmarht/nm-cli.git"
|
|
42
|
+
},
|
|
43
|
+
"homepage": "https://github.com/anmarht/nm-cli#readme",
|
|
44
|
+
"bugs": {
|
|
45
|
+
"url": "https://github.com/anmarht/nm-cli/issues"
|
|
46
|
+
},
|
|
47
|
+
"engines": {
|
|
48
|
+
"node": ">=20.0.0"
|
|
49
|
+
},
|
|
50
|
+
"os": [
|
|
51
|
+
"win32",
|
|
52
|
+
"darwin",
|
|
53
|
+
"linux"
|
|
54
|
+
],
|
|
55
|
+
"dependencies": {
|
|
56
|
+
"@ai-sdk/anthropic": "^3.0.58",
|
|
57
|
+
"@ai-sdk/google": "^3.0.43",
|
|
58
|
+
"@ai-sdk/openai": "^3.0.41",
|
|
59
|
+
"ai": "^6.0.116",
|
|
60
|
+
"chalk": "^5.4.1",
|
|
61
|
+
"commander": "^13.1.0",
|
|
62
|
+
"conf": "^13.1.0",
|
|
63
|
+
"dotenv": "^17.3.1",
|
|
64
|
+
"google-auth-library": "^9.0.0",
|
|
65
|
+
"marked": "^15.0.7",
|
|
66
|
+
"marked-terminal": "^7.3.0",
|
|
67
|
+
"openai": "^6.29.0",
|
|
68
|
+
"ora": "^8.2.0",
|
|
69
|
+
"yt-search": "^2.13.1",
|
|
70
|
+
"zod": "^3.24.0"
|
|
71
|
+
},
|
|
72
|
+
"optionalDependencies": {
|
|
73
|
+
"alexa-remote2": "^8.0.4",
|
|
74
|
+
"bonjour-service": "^1.3.0",
|
|
75
|
+
"canvas": "^3.2.1",
|
|
76
|
+
"castv2-client": "^1.2.0",
|
|
77
|
+
"google-assistant": "^0.7.0",
|
|
78
|
+
"google-tts-api": "^2.0.2",
|
|
79
|
+
"koffi": "^2.15.2",
|
|
80
|
+
"youtube-dl-exec": "^3.1.3"
|
|
81
|
+
},
|
|
82
|
+
"devDependencies": {
|
|
83
|
+
"@types/node": "^22.13.0",
|
|
84
|
+
"tsup": "^8.4.0",
|
|
85
|
+
"tsx": "^4.19.3",
|
|
86
|
+
"typescript": "^5.7.3"
|
|
87
|
+
}
|
|
88
|
+
}
|