claude-beacon 1.1.0 → 1.1.3
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 +8 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -82,8 +82,8 @@ To update to a newer version: `bun add -g claude-beacon@latest`
|
|
|
82
82
|
|
|
83
83
|
> **No global install?** You can also run directly with `bunx`:
|
|
84
84
|
> ```bash
|
|
85
|
-
> bunx claude-beacon # standalone
|
|
86
|
-
> bunx -p claude-beacon claude-beacon-mux # mux
|
|
85
|
+
> bunx claude-beacon --author YourGitHubUsername # standalone
|
|
86
|
+
> bunx -p claude-beacon claude-beacon-mux --author YourGitHubUsername # mux
|
|
87
87
|
> ```
|
|
88
88
|
|
|
89
89
|
## Setup (Option A — Webhook + Tunnel)
|
|
@@ -171,7 +171,7 @@ Replace `/home/you` with your home directory (`echo $HOME`). Bun installs global
|
|
|
171
171
|
"mcpServers": {
|
|
172
172
|
"claude-beacon": {
|
|
173
173
|
"command": "/home/you/.bun/bin/bunx",
|
|
174
|
-
"args": ["claude-beacon"],
|
|
174
|
+
"args": ["claude-beacon", "--author", "YourGitHubUsername"],
|
|
175
175
|
"env": {
|
|
176
176
|
"GITHUB_WEBHOOK_SECRET": "your-secret-from-step-2",
|
|
177
177
|
"GITHUB_TOKEN": "your-pat"
|
|
@@ -273,14 +273,14 @@ cp .env.example .env
|
|
|
273
273
|
|
|
274
274
|
```bash
|
|
275
275
|
# After global install (recommended)
|
|
276
|
-
claude-beacon-mux
|
|
277
|
-
claude-beacon-mux --config my-config.yaml # optional YAML config
|
|
276
|
+
claude-beacon-mux --author YourGitHubUsername
|
|
277
|
+
claude-beacon-mux --author YourGitHubUsername --config my-config.yaml # optional YAML config
|
|
278
278
|
|
|
279
279
|
# Or via bunx (no install)
|
|
280
|
-
bunx -p claude-beacon claude-beacon-mux
|
|
280
|
+
bunx -p claude-beacon claude-beacon-mux --author YourGitHubUsername
|
|
281
281
|
|
|
282
282
|
# Or from cloned repo
|
|
283
|
-
bun run start:mux
|
|
283
|
+
bun run start:mux --author YourGitHubUsername
|
|
284
284
|
```
|
|
285
285
|
|
|
286
286
|
**3. Register the mux in Claude Code** (run once — applies to all projects):
|
|
@@ -600,4 +600,4 @@ Biome v2 is configured in `biome.json` with strict rules. One deliberate deviati
|
|
|
600
600
|
- `.env` is gitignored — secrets stay local
|
|
601
601
|
- `GITHUB_WEBHOOK_SECRET` is **required** — omitting it causes all requests to be rejected; set `WEBHOOK_DEV_MODE=true` to bypass verification in local dev only
|
|
602
602
|
|
|
603
|
-
See [AGENTS.md](AGENTS.md) for the
|
|
603
|
+
See [AGENTS.md](AGENTS.md) for the architecture reference and contributor guide.
|
package/package.json
CHANGED