@agentdeck/setup 1.0.13 → 1.0.15

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 ADDED
@@ -0,0 +1,60 @@
1
+ # @agentdeck/setup
2
+
3
+ One-command installer for **[AgentDeck](https://github.com/puritysb/AgentDeck)** — put your AI coding agents (Claude Code, Codex, OpenCode) on a physical control surface: Stream Deck, tablets, e-ink readers, ESP32 panels, LED matrices, or just your terminal.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npx @agentdeck/setup
9
+ ```
10
+
11
+ That is the whole install, on every platform. The wizard:
12
+
13
+ 1. Checks prerequisites (Node.js 22+, your agent CLIs, platform build tools)
14
+ 2. Installs the [`@agentdeck/bridge`](https://www.npmjs.com/package/@agentdeck/bridge) package globally — this provides the `agentdeck` CLI and the local daemon
15
+ 3. Registers Claude Code lifecycle hooks so sessions report state automatically
16
+ 4. Seeds the local data directory
17
+
18
+ Then start a session through AgentDeck:
19
+
20
+ ```bash
21
+ agentdeck claude # or: agentdeck codex / agentdeck opencode
22
+ agentdeck monitor # terminal dashboard
23
+ ```
24
+
25
+ No Stream Deck required — the daemon is the product; decks and other devices are optional ways to look at it.
26
+
27
+ ## Platform notes
28
+
29
+ **Node.js 22 or later** is required everywhere. Native modules (`node-pty`, `sharp`, `better-sqlite3`) install from prebuilt binaries first; a compiler is only needed if a prebuild is missing for your platform.
30
+
31
+ ### macOS
32
+
33
+ - Nothing else is required to install.
34
+ - Xcode Command Line Tools (`xcode-select --install`) are needed only in two cases: a native-module prebuild fails, or you use the voice features — the on-device voice/judge helper compiles on demand (macOS 26+).
35
+ - Autostart: `agentdeck daemon install` registers a LaunchAgent.
36
+
37
+ ### Windows 11
38
+
39
+ - Install Node.js with `winget install OpenJS.NodeJS`, then run `npx @agentdeck/setup` in PowerShell.
40
+ - Hooks are written as PowerShell one-liners; no bash required at runtime.
41
+ - Autostart: `agentdeck daemon install` registers a per-user Scheduled Task (`AgentDeckDaemon`) — no admin elevation.
42
+ - Details: [Windows guide](https://github.com/puritysb/AgentDeck/blob/master/docs/windows.md)
43
+
44
+ ### Linux
45
+
46
+ - The Elgato Stream Deck desktop app does not exist on Linux, so the Stream Deck plugin is skipped — the daemon, `agentdeck monitor` terminal dashboard, hardware devices, and the Android/iOS companion apps all work.
47
+ - If the prebuilt `node-pty` binary fails: Debian/Ubuntu `sudo apt install build-essential python3`, Fedora `sudo dnf install gcc-c++ make python3`, Arch `sudo pacman -S base-devel python`.
48
+ - Autostart: `agentdeck daemon install` registers a systemd `--user` unit; for headless boot run `loginctl enable-linger $USER` once.
49
+ - Details: [Linux guide](https://github.com/puritysb/AgentDeck/blob/master/docs/linux.md)
50
+
51
+ ## Links
52
+
53
+ - Project website: https://puritysb.github.io/AgentDeck/
54
+ - Repository & docs: https://github.com/puritysb/AgentDeck
55
+ - Mac App Store dashboard (standalone, no Node.js needed): https://apps.apple.com/app/id6784822497
56
+ - Issues: https://github.com/puritysb/AgentDeck/issues
57
+
58
+ ## License
59
+
60
+ MIT
package/dist/setup.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,8 +1,23 @@
1
1
  {
2
2
  "name": "@agentdeck/setup",
3
- "version": "1.0.13",
3
+ "version": "1.0.15",
4
+ "engines": {
5
+ "node": ">=22"
6
+ },
7
+ "description": "One-command installer for AgentDeck — put AI coding agents (Claude Code, Codex, OpenCode) on physical control surfaces",
4
8
  "type": "module",
5
9
  "license": "MIT",
10
+ "homepage": "https://puritysb.github.io/AgentDeck/",
11
+ "bugs": "https://github.com/puritysb/AgentDeck/issues",
12
+ "keywords": [
13
+ "agentdeck",
14
+ "claude-code",
15
+ "codex",
16
+ "opencode",
17
+ "stream-deck",
18
+ "ai-agents",
19
+ "installer"
20
+ ],
6
21
  "repository": {
7
22
  "type": "git",
8
23
  "url": "https://github.com/puritysb/AgentDeck.git",
@@ -15,13 +30,13 @@
15
30
  "files": [
16
31
  "dist"
17
32
  ],
18
- "devDependencies": {
19
- "@types/node": "^25.6.0",
20
- "typescript": "^6.0.3"
21
- },
22
33
  "scripts": {
23
34
  "build": "tsc",
24
35
  "dev": "tsc --watch",
25
36
  "clean": "rm -rf dist tsconfig.tsbuildinfo"
37
+ },
38
+ "devDependencies": {
39
+ "@types/node": "^25.6.0",
40
+ "typescript": "^6.0.3"
26
41
  }
27
- }
42
+ }
package/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2025 SerendipityBound
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.