@dubeyvishal/orbital-cli 1.0.5 → 1.0.7
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
CHANGED
|
@@ -9,13 +9,13 @@ Built with **Next.js**, **Node.js**, **Express**, and **Commander.js**, with sec
|
|
|
9
9
|
## 📸 Project Screenshots
|
|
10
10
|
|
|
11
11
|
### 🔐 Orbital Login Screen
|
|
12
|
-

|
|
13
13
|
|
|
14
14
|
### 🛠️ Orbital Wakeup – Tools Loaded
|
|
15
|
-

|
|
16
16
|
|
|
17
17
|
### 🤖 Agentic Mode
|
|
18
|
-

|
|
19
19
|
|
|
20
20
|
---
|
|
21
21
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dubeyvishal/orbital-cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"description": "A fullstack CLI-based AI platform with chat mode, multi-tool agents, and agentic AI workflows. Includes GitHub login with device authorization, secure authentication, and modular client–server architecture for building intelligent automation tools.",
|
|
5
5
|
"author": "Vishal Dubey",
|
|
6
6
|
"license": "MIT",
|
|
@@ -166,7 +166,6 @@ export const loginAction = async (cmdOptions) => {
|
|
|
166
166
|
|
|
167
167
|
outro(chalk.green("Login successfull !"));
|
|
168
168
|
|
|
169
|
-
//console.log(chalk.gray(`\n Token saved to: ${TOKEN_FILE}`));
|
|
170
169
|
|
|
171
170
|
console.log(
|
|
172
171
|
chalk.gray("You can now use AI commands without logging in again. \n "),
|
|
@@ -212,10 +211,6 @@ const pollForToken = async (
|
|
|
212
211
|
});
|
|
213
212
|
|
|
214
213
|
if (data?.access_token) {
|
|
215
|
-
console.log(
|
|
216
|
-
chalk.bold.yellow(`Your access token: ${data.access_token}`),
|
|
217
|
-
);
|
|
218
|
-
|
|
219
214
|
spinner.stop();
|
|
220
215
|
resolve(data);
|
|
221
216
|
return;
|