@ssm-08/relay 0.4.0 → 0.4.1

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 (2) hide show
  1. package/README.md +9 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -44,19 +44,24 @@ tail -f .relay/log
44
44
 
45
45
  ## Install
46
46
 
47
- **macOS / Linux:**
47
+ ```bash
48
+ npm install -g @ssm-08/relay
49
+ relay install
50
+ ```
48
51
 
52
+ Or via one-liner:
53
+
54
+ **macOS / Linux:**
49
55
  ```bash
50
56
  curl -fsSL https://raw.githubusercontent.com/ssm-08/relay/master/install.sh | sh
51
57
  ```
52
58
 
53
59
  **Windows (PowerShell):**
54
-
55
60
  ```powershell
56
61
  iwr -useb https://raw.githubusercontent.com/ssm-08/relay/master/install.ps1 | iex
57
62
  ```
58
63
 
59
- Clones Relay to `~/.claude/relay/`, wires the hooks, and registers `relay` on PATH via `npm link`. Idempotent — safe to re-run.
64
+ Installs via npm, creates a plugin link at `~/.claude/plugins/relay`, and patches `~/.claude/settings.json` with the three hooks. Idempotent — safe to re-run.
60
65
 
61
66
  ## Init (per repo, one teammate, once)
62
67
 
@@ -79,7 +84,7 @@ relay log [--lines N] # tail relay log (distillation + injection
79
84
  relay distill [--force] [--push] # run distillation manually
80
85
  relay broadcast-skill <file> # share a skill file with all teammates
81
86
  relay install # install hooks on a new machine (called by install.sh/ps1)
82
- relay update # pull latest Relay from GitHub
87
+ relay update # update Relay via npm + re-wire hooks
83
88
  relay uninstall # fully remove Relay from this machine
84
89
  relay doctor # verify install is working
85
90
  relay --version # print relay version
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ssm-08/relay",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "type": "module",
5
5
  "description": "Shared team memory across Claude Code sessions",
6
6
  "author": "ssm-08",