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.
- package/README.md +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
|
|
603
|
+
See [AGENTS.md](AGENTS.md) for the architecture reference and contributor guide.
|
package/package.json
CHANGED