sakuraai 0.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 +15 -0
- package/dist/index.js +1996 -0
- package/package.json +59 -0
package/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# sakuraai
|
|
2
|
+
|
|
3
|
+
CLI + local runtime for the [Sakura](https://sakura.mom) app. Manage your local
|
|
4
|
+
AI coding sessions (Claude Code, Codex, OpenCode) and reach them from your phone
|
|
5
|
+
over Tailscale.
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm i -g sakuraai
|
|
9
|
+
|
|
10
|
+
sakuraai login # prints a token to paste into the app
|
|
11
|
+
sakuraai daemon start # start the runtime
|
|
12
|
+
sakuraai session list # list sessions across all agents
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Run `sakuraai --help` for all commands. More at **https://sakura.mom**.
|