@adhdev/daemon-standalone 0.1.0
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 +36 -0
- package/dist/index.js +685 -0
- package/dist/index.js.map +1 -0
- package/package.json +49 -0
- package/public/assets/index-BkM6DpoZ.js +186 -0
- package/public/assets/index-CAdAUHJD.js +186 -0
- package/public/assets/index-DaTd7tHO.css +32 -0
- package/public/index.html +16 -0
- package/public/otter-logo.png +0 -0
package/README.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# @adhdev/daemon-standalone
|
|
2
|
+
|
|
3
|
+
ADHDev standalone daemon — run a local AI agent dashboard without any cloud server.
|
|
4
|
+
|
|
5
|
+
## Quick Start
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npx @adhdev/daemon-standalone
|
|
9
|
+
# → http://localhost:3847
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
## Features
|
|
13
|
+
|
|
14
|
+
- 🔍 **Auto-detects IDEs** — VS Code, Cursor, Windsurf, and more
|
|
15
|
+
- 💬 **Live agent chat** — read & send messages to AI agents (Cline, Roo Code, etc.)
|
|
16
|
+
- 🖥️ **Local dashboard** — bundled web UI, no internet required
|
|
17
|
+
- 🔒 **Privacy-first** — everything runs on your machine
|
|
18
|
+
|
|
19
|
+
## Options
|
|
20
|
+
|
|
21
|
+
```
|
|
22
|
+
--port, -p <port> Port to listen on (default: 3847)
|
|
23
|
+
--host, -H Listen on all interfaces (LAN access)
|
|
24
|
+
--no-open Don't open browser automatically
|
|
25
|
+
--token <secret> Enable token auth for API/WS
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Links
|
|
29
|
+
|
|
30
|
+
- [ADHDev Cloud](https://adhf.dev) — Cloud version with remote access & P2P
|
|
31
|
+
- [GitHub](https://github.com/vilmire/adhdev) — Open source core
|
|
32
|
+
- [CONTRIBUTING.md](https://github.com/vilmire/adhdev/blob/main/CONTRIBUTING.md)
|
|
33
|
+
|
|
34
|
+
## License
|
|
35
|
+
|
|
36
|
+
AGPL-3.0-or-later
|