shiroai 2.0.0 → 2.0.1
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 +24 -17
- package/package.json +5 -19
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# ✦ ShiroAI CLI
|
|
2
2
|
|
|
3
|
-
AI coding agent for your terminal.
|
|
3
|
+
AI coding agent for your terminal. Reads, writes, edits files, runs commands — like having a senior dev beside you.
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
@@ -22,33 +22,40 @@ Get your API key at [shiroai.dev](https://shiroai.dev)
|
|
|
22
22
|
shiroai
|
|
23
23
|
```
|
|
24
24
|
|
|
25
|
-
|
|
25
|
+
## Features
|
|
26
26
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
| `shiroai config` | Show config |
|
|
27
|
+
- **Tool Use** — AI autonomously reads, writes, edits files and runs commands
|
|
28
|
+
- **Streaming** — Token-by-token output, see responses as they generate
|
|
29
|
+
- **Context Aware** — Auto-detects your project structure
|
|
30
|
+
- **Sessions** — Save/load conversations
|
|
31
|
+
- **Agents** — Switch between default, plan, or custom agents
|
|
33
32
|
|
|
34
|
-
|
|
33
|
+
## Commands
|
|
35
34
|
|
|
36
35
|
| Command | Description |
|
|
37
36
|
|---------|-------------|
|
|
38
|
-
| `/
|
|
39
|
-
| `/
|
|
40
|
-
| `/
|
|
41
|
-
| `/
|
|
42
|
-
| `/
|
|
43
|
-
| `/
|
|
44
|
-
| `/
|
|
37
|
+
| `/help` | Show all commands |
|
|
38
|
+
| `/context` | Show context info |
|
|
39
|
+
| `/context add <file>` | Add file to context |
|
|
40
|
+
| `/chat save <name>` | Save session |
|
|
41
|
+
| `/chat load <name>` | Load session |
|
|
42
|
+
| `/chat list` | List sessions |
|
|
43
|
+
| `/agent list` | List agents |
|
|
44
|
+
| `/agent <name>` | Switch agent |
|
|
45
|
+
| `/plan` | Planning mode |
|
|
45
46
|
| `/clear` | Clear conversation |
|
|
46
47
|
| `/quit` | Exit |
|
|
47
48
|
|
|
48
|
-
##
|
|
49
|
+
## Example
|
|
49
50
|
|
|
50
51
|
```bash
|
|
52
|
+
❯ shiroai
|
|
53
|
+
✦ ShiroAI v2.0.0
|
|
54
|
+
Agent: default | Model: deepseek-v4-pro
|
|
55
|
+
|
|
51
56
|
❯ buatin REST API express dengan JWT auth
|
|
57
|
+
|
|
58
|
+
─── tools ───
|
|
52
59
|
📄 Created: package.json
|
|
53
60
|
📄 Created: server.js
|
|
54
61
|
📄 Created: routes/auth.js
|
package/package.json
CHANGED
|
@@ -1,32 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shiroai",
|
|
3
|
-
"version": "2.0.
|
|
4
|
-
"description": "AI coding agent for your terminal —
|
|
3
|
+
"version": "2.0.1",
|
|
4
|
+
"description": "AI coding agent for your terminal — reads, writes, edits files, runs commands",
|
|
5
5
|
"bin": {
|
|
6
6
|
"shiroai": "./cli.js"
|
|
7
7
|
},
|
|
8
8
|
"files": [
|
|
9
9
|
"cli.js"
|
|
10
10
|
],
|
|
11
|
-
"keywords": [
|
|
12
|
-
"ai",
|
|
13
|
-
"cli",
|
|
14
|
-
"coding",
|
|
15
|
-
"agent",
|
|
16
|
-
"terminal",
|
|
17
|
-
"gpt",
|
|
18
|
-
"copilot",
|
|
19
|
-
"developer-tools",
|
|
20
|
-
"shiroai"
|
|
21
|
-
],
|
|
11
|
+
"keywords": ["ai", "cli", "coding", "agent", "terminal", "copilot", "developer-tools", "shiroai"],
|
|
22
12
|
"author": "ShiroAI",
|
|
23
13
|
"license": "MIT",
|
|
14
|
+
"homepage": "https://shiroai.dev",
|
|
24
15
|
"engines": {
|
|
25
16
|
"node": ">=16.0.0"
|
|
26
|
-
}
|
|
27
|
-
"repository": {
|
|
28
|
-
"type": "git",
|
|
29
|
-
"url": "https://github.com/shiroai/cli"
|
|
30
|
-
},
|
|
31
|
-
"homepage": "https://shiroai.dev"
|
|
17
|
+
}
|
|
32
18
|
}
|