claude-beacon 1.1.0 → 1.1.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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -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"
@@ -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 full security analysis and architecture reference.
603
+ See [AGENTS.md](AGENTS.md) for the architecture reference and contributor guide.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-beacon",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
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",