mikasa-cli 1.0.11 → 1.0.12
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 +194 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,20 +1,205 @@
|
|
|
1
|
-
#
|
|
1
|
+
# __ __ _ _ ____ _ ___
|
|
2
|
+
# | \/ (_) | ____ _ ___ __ _ / ___| | |_ _|
|
|
3
|
+
# | |\/| | | |/ / _` / __|/ _` | | | | | | |
|
|
4
|
+
# | | | | | < (_| \__ \ (_| | | |___| |___ | |
|
|
5
|
+
# |_| |_|_|_|\_\__,_|___/\__,_| \____|_____|___|
|
|
2
6
|
|
|
3
|
-
|
|
7
|
+
<div align="center">
|
|
8
|
+
|
|
9
|
+
# ⚡ Mikasa CLI
|
|
10
|
+
|
|
11
|
+
### 🧠 Your AI Command Line Companion for the Future
|
|
12
|
+
|
|
13
|
+
Chat with AI, authenticate securely with GitHub, and control intelligent agents — all from your terminal.
|
|
14
|
+
|
|
15
|
+
[](https://www.npmjs.com/package/mikasa-cli)
|
|
16
|
+
[]()
|
|
17
|
+
[]()
|
|
18
|
+
[]()
|
|
19
|
+
|
|
20
|
+
🌐 **Official Documentation:**
|
|
21
|
+
👉 https://official-mikasa-doc.vercel.app/
|
|
22
|
+
|
|
23
|
+
</div>
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
# 🚀 Overview
|
|
28
|
+
|
|
29
|
+
**Mikasa CLI** is a next-generation AI-powered command-line interface designed for developers who want fast, intelligent, and secure interaction with AI directly from their terminal.
|
|
30
|
+
|
|
31
|
+
It combines authentication, AI chat, persistent sessions, and agent-based workflows into a single powerful CLI tool.
|
|
32
|
+
|
|
33
|
+
No browser. No distractions. Just pure productivity.
|
|
4
34
|
|
|
5
35
|
---
|
|
6
36
|
|
|
7
|
-
|
|
37
|
+
# ✨ Core Features
|
|
38
|
+
|
|
39
|
+
## 🤖 AI Chat Engine
|
|
40
|
+
- Chat with advanced AI directly in your terminal
|
|
41
|
+
- Lightning fast responses
|
|
42
|
+
- Context-aware conversations
|
|
43
|
+
- Tool-enabled intelligent agents
|
|
44
|
+
|
|
45
|
+
## 🔐 Secure GitHub Authentication
|
|
46
|
+
- Device Authorization Flow
|
|
47
|
+
- No password required
|
|
48
|
+
- Fully secure login
|
|
49
|
+
- Persistent authenticated sessions
|
|
50
|
+
|
|
51
|
+
## 💾 Persistent Sessions
|
|
52
|
+
- Stay logged in between uses
|
|
53
|
+
- No repeated authentication
|
|
54
|
+
- Session stored securely
|
|
8
55
|
|
|
9
|
-
|
|
10
|
-
-
|
|
11
|
-
-
|
|
12
|
-
-
|
|
13
|
-
|
|
56
|
+
## ⚡ Blazing Fast Performance
|
|
57
|
+
- Built with modern architecture
|
|
58
|
+
- Optimized for speed and responsiveness
|
|
59
|
+
- Instant startup and execution
|
|
60
|
+
|
|
61
|
+
## 🧠 Agent-Based Architecture
|
|
62
|
+
- AI agents that can perform tasks
|
|
63
|
+
- Extensible architecture
|
|
64
|
+
- Future-ready design
|
|
65
|
+
|
|
66
|
+
## 🛠 Developer Friendly
|
|
67
|
+
- Clean CLI interface
|
|
68
|
+
- Easy installation
|
|
69
|
+
- Simple commands
|
|
70
|
+
- Cross-platform support
|
|
14
71
|
|
|
15
72
|
---
|
|
16
73
|
|
|
17
|
-
|
|
74
|
+
# 📦 Installation
|
|
75
|
+
|
|
76
|
+
Install globally using npm:
|
|
18
77
|
|
|
19
78
|
```bash
|
|
20
79
|
npm install -g mikasa-cli
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
Or using pnpm:
|
|
83
|
+
|
|
84
|
+
```bash
|
|
85
|
+
pnpm add -g mikasa-cli
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
Or using bun:
|
|
89
|
+
|
|
90
|
+
```bash
|
|
91
|
+
bun add -g mikasa-cli
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
---
|
|
95
|
+
|
|
96
|
+
# 🚀 Getting Started
|
|
97
|
+
|
|
98
|
+
Run Mikasa CLI:
|
|
99
|
+
|
|
100
|
+
```bash
|
|
101
|
+
mikasa
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
Login with GitHub:
|
|
105
|
+
|
|
106
|
+
```bash
|
|
107
|
+
mikasa login
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
Start chatting with AI:
|
|
111
|
+
|
|
112
|
+
```bash
|
|
113
|
+
mikasa chat
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
Logout:
|
|
117
|
+
|
|
118
|
+
```bash
|
|
119
|
+
mikasa logout
|
|
120
|
+
```
|
|
121
|
+
|
|
122
|
+
---
|
|
123
|
+
|
|
124
|
+
# 🧩 Example Usage
|
|
125
|
+
|
|
126
|
+
```bash
|
|
127
|
+
$ mikasa chat
|
|
128
|
+
|
|
129
|
+
You: create a REST API in Node.js
|
|
130
|
+
AI: Here is a complete example...
|
|
131
|
+
```
|
|
132
|
+
|
|
133
|
+
---
|
|
134
|
+
|
|
135
|
+
# 🏗 Built With
|
|
136
|
+
|
|
137
|
+
- Better Auth
|
|
138
|
+
- Prisma ORM
|
|
139
|
+
- Node.js
|
|
140
|
+
- TypeScript
|
|
141
|
+
- AI Agent Architecture
|
|
142
|
+
- GitHub Device Flow
|
|
143
|
+
|
|
144
|
+
---
|
|
145
|
+
|
|
146
|
+
# 🌐 Documentation
|
|
147
|
+
|
|
148
|
+
Full documentation available here:
|
|
149
|
+
|
|
150
|
+
👉 https://official-mikasa-doc.vercel.app/
|
|
151
|
+
|
|
152
|
+
Includes:
|
|
153
|
+
- Installation Guide
|
|
154
|
+
- Commands Reference
|
|
155
|
+
- Authentication Flow
|
|
156
|
+
- Agent System
|
|
157
|
+
- Architecture Overview
|
|
158
|
+
|
|
159
|
+
---
|
|
160
|
+
|
|
161
|
+
# 🎯 Use Cases
|
|
162
|
+
|
|
163
|
+
Perfect for:
|
|
164
|
+
|
|
165
|
+
- Developers
|
|
166
|
+
- DevOps Engineers
|
|
167
|
+
- AI Engineers
|
|
168
|
+
- Terminal Power Users
|
|
169
|
+
- Automation workflows
|
|
170
|
+
- AI-assisted development
|
|
171
|
+
|
|
172
|
+
---
|
|
173
|
+
|
|
174
|
+
# 🔮 Future Roadmap
|
|
175
|
+
|
|
176
|
+
- Custom AI agents
|
|
177
|
+
- Plugin system
|
|
178
|
+
- Local model support
|
|
179
|
+
- File system interaction
|
|
180
|
+
- Code generation tools
|
|
181
|
+
- Workflow automation
|
|
182
|
+
|
|
183
|
+
---
|
|
184
|
+
|
|
185
|
+
# 🤝 Contributing
|
|
186
|
+
|
|
187
|
+
Contributions are welcome!
|
|
188
|
+
|
|
189
|
+
```bash
|
|
190
|
+
git clone https://github.com/your-username/mikasa-cli
|
|
191
|
+
```
|
|
192
|
+
|
|
193
|
+
---
|
|
194
|
+
|
|
195
|
+
# 📄 License
|
|
196
|
+
|
|
197
|
+
MIT License © 2026
|
|
198
|
+
|
|
199
|
+
---
|
|
200
|
+
|
|
201
|
+
<div align="center">
|
|
202
|
+
|
|
203
|
+
### ⚡ Mikasa CLI — The Future of Terminal Intelligence
|
|
204
|
+
|
|
205
|
+
</div>
|