aicodeman 1.7.1 → 1.8.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.
Files changed (40) hide show
  1. package/README.md +2 -1
  2. package/dist/web/public/admin-ui.js.gz +0 -0
  3. package/dist/web/public/api-client.c9b1cddc.js.gz +0 -0
  4. package/dist/web/public/app.2e95c82d.js.gz +0 -0
  5. package/dist/web/public/constants.21a0a83e.js.gz +0 -0
  6. package/dist/web/public/cron-ui.js.gz +0 -0
  7. package/dist/web/public/i18n.4dcf1b87.js.gz +0 -0
  8. package/dist/web/public/image-input.ee16ad88.js.gz +0 -0
  9. package/dist/web/public/index.html.gz +0 -0
  10. package/dist/web/public/input-cjk.63794d0b.js.gz +0 -0
  11. package/dist/web/public/keyboard-accessory.3f91acef.js.gz +0 -0
  12. package/dist/web/public/mobile-handlers.bc2b8c1d.js.gz +0 -0
  13. package/dist/web/public/mobile.f2dcfa13.css.gz +0 -0
  14. package/dist/web/public/notification-manager.fca811fd.js.gz +0 -0
  15. package/dist/web/public/orchestrator-panel.js.gz +0 -0
  16. package/dist/web/public/panels-ui.58582d4c.js.gz +0 -0
  17. package/dist/web/public/ralph-panel.6de2d0f8.js.gz +0 -0
  18. package/dist/web/public/ralph-wizard.13a1831e.js.gz +0 -0
  19. package/dist/web/public/respawn-ui.2d249da9.js.gz +0 -0
  20. package/dist/web/public/sanitize-html.bc7078d6.js.gz +0 -0
  21. package/dist/web/public/session-ui.713c8836.js.gz +0 -0
  22. package/dist/web/public/settings-ui.0259fbe8.js.gz +0 -0
  23. package/dist/web/public/styles.d2f415e2.css.gz +0 -0
  24. package/dist/web/public/subagent-windows.69b60c35.js.gz +0 -0
  25. package/dist/web/public/sw.js.gz +0 -0
  26. package/dist/web/public/terminal-ui.9ea677e9.js.gz +0 -0
  27. package/dist/web/public/ultracode-panel.js.gz +0 -0
  28. package/dist/web/public/ultracode-windows.js.gz +0 -0
  29. package/dist/web/public/upload.html.gz +0 -0
  30. package/dist/web/public/vendor/dompurify.min.js.gz +0 -0
  31. package/dist/web/public/vendor/marked.min.js.gz +0 -0
  32. package/dist/web/public/vendor/xterm-addon-fit.min.js.gz +0 -0
  33. package/dist/web/public/vendor/xterm-addon-serialize.min.js.gz +0 -0
  34. package/dist/web/public/vendor/xterm-addon-unicode11.min.js.gz +0 -0
  35. package/dist/web/public/vendor/xterm-addon-webgl.min.js.gz +0 -0
  36. package/dist/web/public/vendor/xterm-zerolag-input.137ad9f0.js.gz +0 -0
  37. package/dist/web/public/vendor/xterm.css.gz +0 -0
  38. package/dist/web/public/vendor/xterm.min.js.gz +0 -0
  39. package/dist/web/public/voice-input.085e9e73.js.gz +0 -0
  40. package/package.json +1 -1
package/README.md CHANGED
@@ -46,6 +46,7 @@ curl -fsSL https://raw.githubusercontent.com/Ark0N/Codeman/master/install.sh | b
46
46
  This installs Node.js and tmux if missing, clones Codeman to `~/.codeman/app`, and builds it. A few things worth knowing:
47
47
 
48
48
  - **It asks first.** Every system change (package installs, AI CLI download) is prompted, and a menu at the end lets you choose: run Codeman in this terminal, install it as a background service (systemd/launchd, auto-start on boot), or don't start yet. Nothing runs in the background unless you pick it.
49
+ - **Network or local-only, your choice.** The installer asks whether the dashboard should be reachable from other devices on your network (`0.0.0.0`, the default, with a strongly recommended password prompt) or from this machine only (`127.0.0.1`, safest). Skipping the password on a network bind requires an explicit confirmation and ends with a loud warning. A bare `codeman web` started by hand still defaults to loopback.
49
50
  - **Re-run to update.** The same one-liner updates a finished install in place: local changes in `~/.codeman/app` are stashed (never discarded), and a running service is restarted and verified. If a first install was interrupted, re-running resumes the full setup instead. `install.sh update` and `install.sh uninstall` also exist.
50
51
  - **CI / headless:** without a terminal attached, steps that would change your system abort with instructions instead of running silently. Set `CODEMAN_NONINTERACTIVE=1` to approve them for automation.
51
52
 
@@ -590,7 +591,7 @@ By default Codeman launches sessions with `--dangerously-skip-permissions`, so t
590
591
 
591
592
  ### Network & access
592
593
 
593
- - **Loopback by default** — binds `127.0.0.1`, reachable only from the same machine, so the no-password default is safe out of the box. Binding a non-loopback host without `CODEMAN_PASSWORD` _starts but prints a loud warning_ with three concrete fixes (set a password, loopback + an authenticated tunnel, or explicitly acknowledge with `--allow-unauthenticated-network`)
594
+ - **Loopback by default** — the server binary binds `127.0.0.1`, reachable only from the same machine, so the no-password default is safe out of the box (the guided installer asks about network access and configures the binding + password for you). Binding a non-loopback host without `CODEMAN_PASSWORD` _starts but prints a loud warning_ with three concrete fixes (set a password, loopback + an authenticated tunnel, or explicitly acknowledge with `--allow-unauthenticated-network`)
594
595
  - **Optional auth, real sessions** — HTTP Basic via `CODEMAN_USERNAME` (default `admin`) / `CODEMAN_PASSWORD`. Success issues an opaque 256-bit `codeman_session` cookie (`randomBytes(32)`) — validated server-side, not client-signed, so it can't be forged offline (24h TTL, auto-extend, device-context audit log)
595
596
  - **Per-IP rate limiting** — 10 failed attempts → `429` with `Retry-After` (15-min decay). A valid cookie or correct password recovers _immediately_ even while an attacker hammers the same IP — important because all tunnel traffic shares one loopback IP. QR auth has its own separate limiter
596
597
  - **Configurable permission mode** - `--dangerously-skip-permissions` is only the default. **App Settings → Claude CLI → Startup Mode** can switch new sessions to Anthropic's classifier-guarded `auto` mode (low-prompt, needs Claude Code 2.1.207+), `normal` prompting, or an explicit allowed-tools list. In multi-user mode, non-granted users are forced to `auto`, and shell sessions / skip-permissions require an explicit per-user grant
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aicodeman",
3
- "version": "1.7.1",
3
+ "version": "1.8.0",
4
4
  "description": "Mission control for AI coding agents - run 20 autonomous agents with real-time monitoring and session persistence",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",