vinuscli 0.0.1

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.
Files changed (3) hide show
  1. package/README.md +9 -0
  2. package/cli.js +10 -0
  3. package/package.json +26 -0
package/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # Vinus CLI
2
+
3
+ The autonomous AI coding agent in your terminal — one key, every model.
4
+
5
+ **Coming soon.** This package name is reserved for the upcoming Vinus CLI release.
6
+
7
+ ## License
8
+
9
+ Proprietary. All rights reserved. This software is not open source.
package/cli.js ADDED
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env node
2
+
3
+ console.log(`
4
+ Vinus CLI — the autonomous AI coding agent in your terminal.
5
+
6
+ This package is reserved for the upcoming Vinus CLI release.
7
+ Follow the launch and get early access at: https://github.com/vinus
8
+
9
+ One key, every model. Coming soon.
10
+ `);
package/package.json ADDED
@@ -0,0 +1,26 @@
1
+ {
2
+ "name": "vinuscli",
3
+ "version": "0.0.1",
4
+ "description": "The autonomous AI coding agent in your terminal — one key, every model. Coming soon.",
5
+ "type": "module",
6
+ "bin": {
7
+ "vinus": "cli.js"
8
+ },
9
+ "files": [
10
+ "cli.js",
11
+ "README.md"
12
+ ],
13
+ "engines": {
14
+ "node": ">=18.0.0"
15
+ },
16
+ "keywords": [
17
+ "cli",
18
+ "ai",
19
+ "coding-agent",
20
+ "coding-assistant",
21
+ "terminal",
22
+ "llm",
23
+ "mcp"
24
+ ],
25
+ "license": "UNLICENSED"
26
+ }