@dubeyvishal/orbital-cli 1.0.7 → 1.0.9

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 (2) hide show
  1. package/README.md +145 -69
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,10 +1,26 @@
1
1
  # Orbital CLI
2
2
 
3
- **Orbital CLI** is an AI-powered developer CLI that lets you **chat with AI**, run **smart tool-assisted searches**, and even enter **Agent Mode** where it can generate **mini-projects directly inside your directory** — in minutes — from just a single text prompt.
3
+ **Orbital CLI** is an **AI-powered developer assistant** that runs
4
+ directly in your terminal.\
5
+ Chat with AI, perform smart searches, generate mini-projects, and launch
6
+ developer tools --- all without leaving the command line.
4
7
 
5
- Built with **Next.js**, **Node.js**, **Express**, and **Commander.js**, with secure auth powered by **Better Auth (OAuth + Device Authorization)**.
8
+ Built with **Node.js, Express, Commander.js, Next.js**, and **Google
9
+ Gemini AI**.
6
10
 
7
- ---
11
+ ------------------------------------------------------------------------
12
+
13
+ ## ⚡ Installation
14
+
15
+ Install globally using npm:
16
+
17
+ npm install -g @dubeyvishal/orbital-cli
18
+
19
+ Start Orbital:
20
+
21
+ orbital
22
+
23
+ ------------------------------------------------------------------------
8
24
 
9
25
  ## 📸 Project Screenshots
10
26
 
@@ -17,92 +33,152 @@ Built with **Next.js**, **Node.js**, **Express**, and **Commander.js**, with sec
17
33
  ### 🤖 Agentic Mode
18
34
  ![Agentic Mode](https://res.cloudinary.com/damw21f39/image/upload/v1773569581/pic3_bvidmp.png)
19
35
 
20
- ---
36
+ ------------------------------------------------------------------------
21
37
 
22
- ## ✨ Features
23
38
 
24
- ### AI Chat Mode
25
- - Chat with AI directly in your terminal
26
- - Streaming responses (real-time)
27
- - Supports markdown rendering in terminal output
28
39
 
29
- ### 🧠 Autonomous Tool Selection
30
- Orbital intelligently selects tools when needed:
31
- - 🔍 Web Search
32
- - 🔗 URL Search / Page Summarization
33
- - 🧰 Context-based tool routing (AI decides when to use tools)
40
+ ## 🔐 Authentication
34
41
 
35
- ### 🤖 Agent Mode (Autonomous App Generator)
36
- The most powerful mode:
37
- - Generates **mini-projects** from a single prompt
38
- - Creates **folders + files automatically**
39
- - Writes production-ready code
40
- - Generates setup commands
41
- - Output saved neatly into your working directory
42
- - Designed to build a runnable project in **a few minutes**
42
+ Login once to enable AI features:
43
43
 
44
- ### 🔐 Secure Authentication
45
- - OAuth using **Better Auth**
46
- - **Device Authorization flow**
47
- - Session + token handling
44
+ orbital login
48
45
 
49
- ---
46
+ Orbital uses **secure OAuth Device Authorization**.
50
47
 
51
- ## 🧱 Tech Stack
52
- - **Next.js** (Dashboard / Web UI)
53
- - **Node.js**
54
- - **Express.js**
55
- - **Commander.js** (CLI framework)
56
- - **Better Auth** (OAuth + Device Flow)
57
- - **Prisma** (Database ORM)
58
- - **Neon PostgreSQL** (recommended)
59
- - **AI SDK (Google Gemini)**
60
48
 
61
- ---
62
49
 
63
- ## 📦 Installation
50
+ ------------------------------------------------------------------------
51
+
52
+ ## 🔑 Set Your AI API Key
53
+
54
+ To use AI features (chat, tools, agent mode), set your own API key:
55
+
56
+ orbital set-key <your_api_key>
57
+
58
+ The API key is stored securely in your **OS Credential Manager** (Windows Credential Manager / macOS Keychain / Linux Secret Service).
59
+
60
+ Orbital will **never store your key in plain text files**.
61
+
62
+ Once set, you won't need to enter it again.
63
+
64
+ ------------------------------------------------------------------------
65
+
66
+
67
+ ## 💬 AI Chat Mode
68
+
69
+ Start chatting with AI directly in your terminal:
70
+
71
+ orbital wakeup
72
+
73
+ **Features**
74
+
75
+ - Real-time streaming responses
76
+ - Markdown rendering in terminal
77
+ - Intelligent context handling
78
+
79
+ ------------------------------------------------------------------------
80
+
81
+ ## 🧠 Tool Calling
82
+
83
+ Orbital automatically selects tools when needed.
84
+
85
+ **Examples** - 🌐 Web search\
86
+ - 🔗 URL summarization\
87
+ - 📄 Content extraction\
88
+ - 🧰 Context-aware tool routing
89
+
90
+ Example prompts:
91
+
92
+ summarize https://react.dev
93
+ latest news about AI agents
94
+
95
+ Orbital decides which tool to use automatically.
96
+
97
+ ------------------------------------------------------------------------
98
+
99
+ ## 🤖 Agentic Mode (Autonomous Project Generator)
100
+
101
+ Orbital can generate **complete mini-projects from a single prompt**.
102
+
103
+ Example:
104
+
105
+ create a node express todo api
106
+
107
+ Orbital will:
108
+
109
+ - Create folders and files
110
+ - Generate working code
111
+ - Provide install and run commands
112
+ - Save everything in your current directory
113
+
114
+ Perfect for:
115
+
116
+ - Rapid prototyping
117
+ - Boilerplate generation
118
+ - Quick development setups
119
+
120
+ ------------------------------------------------------------------------
121
+
122
+ ## 🚀 Launch Developer Tools
123
+
124
+ Open commonly used developer platforms instantly.
125
+
126
+ orbital launch github
127
+ orbital launch linkedin
128
+ orbital launch leetcode
129
+ orbital launch youtube
130
+
131
+ No need to open the browser manually.
132
+
133
+ ------------------------------------------------------------------------
134
+
135
+ ## 🔎 Instant YouTube Search
136
+
137
+ Search YouTube directly from the terminal.
138
+
139
+ orbital search "react server components"
140
+
141
+ Orbital will open the results instantly.
142
+
143
+
144
+ ------------------------------------------------------------------------
145
+
146
+ ## 🧱 Tech Stack
147
+
148
+ - **Node.js**
149
+ - **Express.js**
150
+ - **Commander.js**
151
+ - **Next.js**
152
+ - **Prisma**
153
+ - **Neon PostgreSQL**
154
+ - **Google Gemini AI**
64
155
 
65
- ## Deployed URLs
156
+ ------------------------------------------------------------------------
66
157
 
67
- - Frontend (Vercel): https://smart-cli-based-agent-t7x4.vercel.app/sign-in
68
- - Backend (Render): https://smart-cli-based-agent.onrender.com
158
+ ## 🌐 Deployed Services
69
159
 
70
- Clone the repo:
160
+ **Frontend**\
161
+ https://smart-cli-based-agent-t7x4.vercel.app
71
162
 
72
- ```bash
73
- git clone https://github.com/<your-username>/orbital-cli.git
74
- cd orbital-cli
163
+ **Backend**\
164
+ https://smart-cli-based-agent.onrender.com
75
165
 
76
- ```
166
+ ------------------------------------------------------------------------
77
167
 
78
- Environment Setup
168
+ ## 📦 npm Package
79
169
 
80
- DATABASE_URL="postgresql://USER:PASSWORD@HOST:5432/DATABASE?sslmode=require"
81
- GOOGLE_GEMINI_API_KEY="your_api_key"
82
- ORBITAL_MODEL="gemini-2.5-flash"
170
+ https://www.npmjs.com/package/@dubeyvishal/orbital-cli
83
171
 
84
- # Deployed URLs
85
- BETTER_AUTH_BASE_URL="https://smart-cli-based-agent.onrender.com"
86
- FRONTEND_URL="https://smart-cli-based-agent-t7x4.vercel.app"
172
+ ------------------------------------------------------------------------
87
173
 
88
- Then generate Prisma client + sync schema:
174
+ ## 📄 License
89
175
 
90
- cd server
91
- npx prisma generate
92
- npx prisma db push
176
+ **MIT License**
93
177
 
94
- Run Orbital CLI:
95
- orbital
178
+ ------------------------------------------------------------------------
96
179
 
97
- Orbital uses secure OAuth + Device Authorization:
98
- orbital login
180
+ ## 👨‍💻 Developed and Maintained By
99
181
 
100
- Chat with AI
101
- orbital wakeup
102
- Output
103
- When agent generation succeeds, Orbital shows:
182
+ **Vishal Dubey**
104
183
 
105
- App folder name
106
- Total files created
107
- Location on disk
108
- Setup commands (install, run)
184
+ If you find Orbital CLI useful, consider giving the repository a ⭐ on GitHub.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dubeyvishal/orbital-cli",
3
- "version": "1.0.7",
3
+ "version": "1.0.9",
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",