claude-beacon 1.1.2 → 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.
Files changed (2) hide show
  1. package/README.md +6 -6
  2. 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)
@@ -273,14 +273,14 @@ cp .env.example .env
273
273
 
274
274
  ```bash
275
275
  # After global install (recommended)
276
- claude-beacon-mux # reads .env from current directory
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):
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-beacon",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "description": "Claude Code MCP channel plugin — pushes GitHub Actions CI/CD results into running Claude Code sessions",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",