nexusforge-cli 1.0.4 → 1.0.5
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 +6 -18
- package/package.json +4 -6
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# NexusForge CLI
|
|
2
2
|
|
|
3
|
-
AI-powered development companion for your terminal.
|
|
3
|
+
AI-powered development companion for your terminal.
|
|
4
4
|
|
|
5
5
|
```
|
|
6
6
|
███╗ ██╗███████╗██╗ ██╗██╗ ██╗███████╗
|
|
@@ -93,20 +93,6 @@ Sync conversations between the web UI and CLI:
|
|
|
93
93
|
3. Paste and run in your terminal: `nexusforge --session <token>`
|
|
94
94
|
4. Your web conversation continues in the CLI
|
|
95
95
|
|
|
96
|
-
## Configuration
|
|
97
|
-
|
|
98
|
-
Config is stored at `~/.nexusforge/config.json`:
|
|
99
|
-
|
|
100
|
-
```json
|
|
101
|
-
{
|
|
102
|
-
"apiUrl": "https://nexusconnectbridge.automatanexus.com/api/v1/bridge",
|
|
103
|
-
"accessToken": "...",
|
|
104
|
-
"username": "your-username",
|
|
105
|
-
"defaultModel": "NexusForge",
|
|
106
|
-
"autoExecute": true
|
|
107
|
-
}
|
|
108
|
-
```
|
|
109
|
-
|
|
110
96
|
## Requirements
|
|
111
97
|
|
|
112
98
|
- Node.js 18+
|
|
@@ -120,9 +106,11 @@ Config is stored at `~/.nexusforge/config.json`:
|
|
|
120
106
|
|
|
121
107
|
## Links
|
|
122
108
|
|
|
123
|
-
- [NexusForge
|
|
109
|
+
- [NexusForge](https://nexusforge.automatanexus.com)
|
|
124
110
|
- [AutomataNexus](https://automatanexus.com)
|
|
125
111
|
|
|
126
|
-
|
|
112
|
+
---
|
|
113
|
+
|
|
114
|
+
Copyright 2025 AutomataNexus, LLC. All rights reserved.
|
|
127
115
|
|
|
128
|
-
|
|
116
|
+
This software is proprietary and confidential. Unauthorized copying, distribution, or use is strictly prohibited.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nexusforge-cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "NexusForge CLI - AI-powered development companion for your terminal",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -23,11 +23,9 @@
|
|
|
23
23
|
"terminal"
|
|
24
24
|
],
|
|
25
25
|
"author": "AutomataNexus, LLC",
|
|
26
|
-
"license": "
|
|
27
|
-
"
|
|
28
|
-
|
|
29
|
-
"url": "https://github.com/automata-nexus/nexusforge-cli"
|
|
30
|
-
},
|
|
26
|
+
"license": "UNLICENSED",
|
|
27
|
+
"homepage": "https://nexusforge.automatanexus.com",
|
|
28
|
+
"private": false,
|
|
31
29
|
"engines": {
|
|
32
30
|
"node": ">=18.0.0"
|
|
33
31
|
},
|