@rubytech/taskmaster 1.0.7 → 1.0.8
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/dist/build-info.json
CHANGED
|
@@ -21,7 +21,6 @@ export function buildSeedConfig() {
|
|
|
21
21
|
mode: "local",
|
|
22
22
|
bind: "lan",
|
|
23
23
|
controlUi: { allowInsecureAuth: true },
|
|
24
|
-
auth: { mode: "token" },
|
|
25
24
|
},
|
|
26
25
|
agents: {
|
|
27
26
|
defaults: {
|
|
@@ -87,11 +86,7 @@ export function buildDefaultAgentList(workspaceRoot) {
|
|
|
87
86
|
],
|
|
88
87
|
},
|
|
89
88
|
write: {
|
|
90
|
-
include: [
|
|
91
|
-
"memory/users/{peer}/**",
|
|
92
|
-
"memory/groups/{peer}/**",
|
|
93
|
-
"memory/shared/events/**",
|
|
94
|
-
],
|
|
89
|
+
include: ["memory/users/{peer}/**", "memory/groups/{peer}/**", "memory/shared/events/**"],
|
|
95
90
|
},
|
|
96
91
|
},
|
|
97
92
|
},
|
package/package.json
CHANGED
package/scripts/install.sh
CHANGED
|
@@ -140,6 +140,11 @@ if [ "$(id -u)" = "0" ] && [ "$REAL_USER" != "root" ]; then
|
|
|
140
140
|
&& echo " hostname set to 'taskmaster'" \
|
|
141
141
|
|| echo " hostname set failed (continuing)"
|
|
142
142
|
|
|
143
|
+
# Ensure /etc/hosts resolves the new hostname (sudo warns otherwise)
|
|
144
|
+
if ! grep -q "taskmaster" /etc/hosts 2>/dev/null; then
|
|
145
|
+
echo "127.0.0.1 taskmaster" >> /etc/hosts
|
|
146
|
+
fi
|
|
147
|
+
|
|
143
148
|
# mDNS service file
|
|
144
149
|
mkdir -p /etc/avahi/services
|
|
145
150
|
cat > /etc/avahi/services/taskmaster.service << XMLEOF
|
|
@@ -43,9 +43,7 @@ curl -fsSL https://taskmaster.bot/install.sh | sudo bash
|
|
|
43
43
|
```
|
|
44
44
|
|
|
45
45
|
3. Wait for it to finish (a few minutes — it installs Node.js if needed)
|
|
46
|
-
4. Open the
|
|
47
|
-
|
|
48
|
-
You can also access the setup page from any other device on the same network at **http://taskmaster.local:18789/setup**.
|
|
46
|
+
4. Open a browser on any device on the same Wi-Fi network and go to: **http://taskmaster.local:18789/setup**
|
|
49
47
|
|
|
50
48
|
> After installation, Taskmaster runs in the background and starts automatically when the Pi restarts. You can disconnect the monitor and keyboard.
|
|
51
49
|
|
|
@@ -57,7 +55,7 @@ Open **Terminal** (search for "Terminal" in Spotlight) and run:
|
|
|
57
55
|
curl -fsSL https://taskmaster.bot/install.sh | sudo bash
|
|
58
56
|
```
|
|
59
57
|
|
|
60
|
-
This installs Node.js (if needed), Taskmaster, and sets up the background service. Once finished, open your browser and go to: **http://
|
|
58
|
+
This installs Node.js (if needed), Taskmaster, and sets up the background service. Once finished, open your browser and go to: **http://taskmaster.local:18789/setup**
|
|
61
59
|
|
|
62
60
|
**Custom port:** If you're running multiple Taskmaster instances (e.g., one on a Pi and one on a Mac), give each a different port:
|
|
63
61
|
|
|
@@ -77,9 +75,9 @@ npm install -g ~/Downloads/rubytech-taskmaster-2026.2.14.tgz
|
|
|
77
75
|
taskmaster provision
|
|
78
76
|
```
|
|
79
77
|
|
|
80
|
-
4. Open your browser and go to: **http://
|
|
78
|
+
4. Open your browser and go to: **http://taskmaster.local:18789/setup**
|
|
81
79
|
|
|
82
|
-
> Taskmaster runs in the background and starts automatically when your
|
|
80
|
+
> Taskmaster runs in the background and starts automatically when your device restarts. You can close the terminal after installation.
|
|
83
81
|
|
|
84
82
|
---
|
|
85
83
|
|