@dubeyvishal/orbital-cli 1.0.5 → 1.0.6

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.
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dubeyvishal/orbital-cli",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
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",
@@ -12,7 +12,8 @@
12
12
  "files": [
13
13
  "server/src",
14
14
  "server/prisma",
15
- "README.md"
15
+ "README.md",
16
+ "images"
16
17
  ],
17
18
  "publishConfig": {
18
19
  "access": "public"
@@ -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;