Fix stale "Messenger Access" name in discovery files#8
Conversation
The app UI calls this "Agent Access" (Settings > Data > Agent Access); "Messenger Access" was the old name. Update the MCP server card and the SKILL.md setup step, and regenerate the SKILL.md digest in the skills index. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Greptile SummaryThis PR replaces the stale UI label "Messenger Access" with the current "Agent Access" across the three discovery files that user-facing agents and tools read. The SHA256 digest in
Confidence Score: 5/5Safe to merge — all three discovery files are consistent, and the regenerated digest has been independently verified against the committed SKILL.md. The change is a targeted label rename across three tightly coupled files. The SHA256 digest in index.json was verified to match the actual SKILL.md contents (f7b9f3f69cf7831f8b9155eb756a198f3d9dd0850586f1938736cadcb32e74f8), and no other content was modified. No files require special attention. The CLAUDE.md note about keeping this repo in sync with the app repo is addressed by the companion PRs referenced in the description. Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[User sets up getbased MCP] --> B[Settings > Data > **Agent Access**
✅ Updated in all 3 files]
B --> C[Copy read-only token]
C --> D[Set GETBASED_TOKEN env var]
D --> E[Agent discovers skill via
.well-known/agent-skills/index.json
digest: sha256:f7b9f3f6…]
E --> F[Agent reads SKILL.md
via URL in index.json]
F --> G[Agent reads auth config
from .well-known/mcp.json]
G --> H[MCP tools available
to agent]
Reviews (1): Last reviewed commit: "Fix stale "Messenger Access" name in dis..." | Re-trigger Greptile |
Summary
The app UI calls this feature "Agent Access" (Settings → Data → Agent Access). "Messenger Access" was the old name — it only survives in app code comments. Our discovery files inherited the stale name from the (now also fixed)
getbased-mcpREADME, so they pointed users at a toggle that doesn't exist by that name..well-known/mcp.json— auth description.well-known/agent-skills/getbased-health-data/SKILL.md— setup step.well-known/agent-skills/index.json— regenerated SKILL.mdsha256digestCompanion fixes: getbased-agents#15 (README + dashboard), and the matching change in the app repo.
Test plan
grep -r "Messenger Access" .well-known/returns nothingsha256sumofSKILL.mdmatches thedigestinindex.json🤖 Generated with Claude Code