companion-cli 1.0.0 → 1.1.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.
Potentially problematic release.
This version of companion-cli might be problematic. Click here for more details.
- package/README.md +171 -1
- package/dist/index.js +1 -9974
- package/package.json +5 -5
- package/agents/example.json +0 -9
- package/agents/fontendengineer.json +0 -9
- package/dist/index.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "companion-cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "A model-agnostic AI CLI assistant for your terminal — OpenAI, Anthropic, Google, with tools, smart home, desktop automation, and more",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -8,7 +8,6 @@
|
|
|
8
8
|
},
|
|
9
9
|
"files": [
|
|
10
10
|
"dist",
|
|
11
|
-
"agents",
|
|
12
11
|
"README.md"
|
|
13
12
|
],
|
|
14
13
|
"scripts": {
|
|
@@ -38,11 +37,11 @@
|
|
|
38
37
|
"license": "MIT",
|
|
39
38
|
"repository": {
|
|
40
39
|
"type": "git",
|
|
41
|
-
"url": "https://github.com/anmarht/
|
|
40
|
+
"url": "https://github.com/anmarht/companion-cli.git"
|
|
42
41
|
},
|
|
43
|
-
"homepage": "https://github.com/anmarht/
|
|
42
|
+
"homepage": "https://github.com/anmarht/companion-cli#readme",
|
|
44
43
|
"bugs": {
|
|
45
|
-
"url": "https://github.com/anmarht/
|
|
44
|
+
"url": "https://github.com/anmarht/companion-cli/issues"
|
|
46
45
|
},
|
|
47
46
|
"engines": {
|
|
48
47
|
"node": ">=20.0.0"
|
|
@@ -81,6 +80,7 @@
|
|
|
81
80
|
},
|
|
82
81
|
"devDependencies": {
|
|
83
82
|
"@types/node": "^22.13.0",
|
|
83
|
+
"terser": "^5.46.1",
|
|
84
84
|
"tsup": "^8.4.0",
|
|
85
85
|
"tsx": "^4.19.3",
|
|
86
86
|
"typescript": "^5.7.3"
|
package/agents/example.json
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "example",
|
|
3
|
-
"description": "A helpful general-purpose assistant",
|
|
4
|
-
"systemPrompt": "You are a helpful, concise assistant. Answer questions clearly and directly. When appropriate, use markdown formatting for better readability.",
|
|
5
|
-
"provider": "openai",
|
|
6
|
-
"model": "gpt-4o",
|
|
7
|
-
"temperature": 0.7,
|
|
8
|
-
"tools": []
|
|
9
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "fontendengineer",
|
|
3
|
-
"description": "proficient in nodejs, javascript, react, typescript, has knowledge level of a senior software engineer of 25 years experience, expert in design patterns, expert in software design architectures.",
|
|
4
|
-
"systemPrompt": "proficient in nodejs, javascript, react, typescript, has knowledge level of a senior software engineer of 25 years experience, expert in design patterns, expert in software design architectures.",
|
|
5
|
-
"provider": "openai",
|
|
6
|
-
"model": "gpt-4.1",
|
|
7
|
-
"temperature": 0.7,
|
|
8
|
-
"tools": []
|
|
9
|
-
}
|