@rubytech/taskmaster 1.0.1 → 1.0.2

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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.1",
3
- "commit": "68e929bd6889026dcdd294fee61a7e4e4f352ecc",
4
- "builtAt": "2026-02-14T19:20:49.238Z"
2
+ "version": "1.0.2",
3
+ "commit": "fc53cc63bedc649c4e3747011091ef4c440f7509",
4
+ "builtAt": "2026-02-14T19:45:02.186Z"
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rubytech/taskmaster",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "AI-powered business assistant for small businesses",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -49,13 +49,14 @@ You can also access the setup page from any other device on the same network at
49
49
 
50
50
  **If you're connecting remotely (SSH):**
51
51
 
52
- 1. Find your Pi's IP address (see "Finding Your Pi's IP Address" below)
53
- 2. From your Mac or PC, open a terminal and run:
52
+ 1. From your Mac or PC, open a terminal and connect to the Pi. A fresh Pi advertises itself as `raspberrypi.local`:
54
53
 
55
54
  ```
56
- ssh pi@<your-pi-ip>
55
+ ssh pi@raspberrypi.local
57
56
  ```
58
57
 
58
+ If that doesn't work, find the IP address instead (see "Finding Your Pi's IP Address" below) and use `ssh pi@<your-pi-ip>`.
59
+
59
60
  3. Once connected, run:
60
61
 
61
62
  ```
@@ -823,9 +824,9 @@ You need the IP address to connect from another device on your network (e.g., SS
823
824
 
824
825
  **From your Mac or PC** (without a monitor on the Pi):
825
826
 
826
- - **Mac:** Open Terminal and run `ping taskmaster.local` — the IP appears in the response
827
- - **Mac/PC:** Check your router's admin page (usually `192.168.1.1`)look for a device called "taskmaster" or "raspberrypi" in the connected devices list
828
- - **Mac:** Run `arp -a | grep raspberry` or `dns-sd -B _http._tcp` to find devices broadcasting on the network
827
+ - **Before install:** Run `ping -c 1 raspberrypi.local` — a fresh Pi advertises this hostname by default
828
+ - **After install:** Run `ping -c 1 taskmaster.local` — the install changes the hostname to `taskmaster`
829
+ - **Router:** Check your router's admin page (usually `192.168.1.1`) look for a device called "taskmaster" or "raspberrypi" in the connected devices list
829
830
 
830
831
  Once you have the IP, you can access the setup page at `http://<your-pi-ip>:18789/setup` or connect via SSH with `ssh pi@<your-pi-ip>`.
831
832