fix(docs): remove dead Discord invite link (footer + integration guides)#207
Merged
Conversation
The docs footer and the Hermes / OpenClaw integration pages linked https://discord.gg/patter, which is not a valid invite (Discord API returns Unknown Invite) -- clicking the footer icon did nothing (GH #193). No Patter Discord server currently exists, so remove the footer icon and point the integration-guide community links at GitHub Discussions instead. The Discord entry can be restored once a real server + vanity or permanent invite exists.
|
Preview deployment for your docs. Learn more about Mintlify Previews.
💡 Tip: Enable Workflows to automatically generate PRs for you. |
nicolotognoni
added a commit
that referenced
this pull request
Jul 3, 2026
MDX v3 parses `{...}` as a JS expression; `{far-field + tuned server_vad}`
(space-separated identifiers) is invalid JS, so acorn failed at openclaw.mdx
818:24 and the whole Mintlify docs deploy errored on every docs PR. Wrap the
two set-notation snippets in backticks (consistent with the doc's inline-code
style for config terms) so they render literally. Pre-existing issue on main
(introduced with #207); `mint broken-links` now reports no errors.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01D52f6rBsvzicXg45C6MKVM
nicolotognoni
added a commit
that referenced
this pull request
Jul 3, 2026
…all tool (#206) * feat(security): opt-in destination policy for the built-in transfer_call tool The transfer destination is chosen by the LLM, which is steerable by caller speech, and the only gate was E.164 format -- a successful prompt injection could direct a billable outbound leg to any attacker-chosen (premium-rate) number (GH #205). New opt-in Agent options transfer_allowed_numbers / transfer_allowed_prefixes (Py) -- transferAllowedNumbers / transferAllowedPrefixes (TS): exact-number allowlist and/or E.164 prefix allowlist (union), enforced at every guard site BEFORE the carrier REST call (OpenAI Realtime function_call, Pipeline built-in handler, ElevenLabs ConvAI client tool) with the standard rejection envelope so the agent keeps the call. Unset (default) preserves current behaviour; an empty list denies all transfers. Entries validated at agent() construction. 17 new tests per SDK. * fix(docs): escape MDX braces in openclaw.mdx to unblock Mintlify deploy MDX v3 parses `{...}` as a JS expression; `{far-field + tuned server_vad}` (space-separated identifiers) is invalid JS, so acorn failed at openclaw.mdx 818:24 and the whole Mintlify docs deploy errored on every docs PR. Wrap the two set-notation snippets in backticks (consistent with the doc's inline-code style for config terms) so they render literally. Pre-existing issue on main (introduced with #207); `mint broken-links` now reports no errors. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01D52f6rBsvzicXg45C6MKVM --------- Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
https://discord.gg/patter, which is not a valid invite: the Discord API returns{"message": "Unknown Invite", "code": 10006}, so clicking the footer icon led nowhere.Implementation
docs/docs.json— removed thediscordentry fromfooter.socials(X, GitHub, LinkedIn remain).docs/integrations/hermes.mdx/docs/integrations/openclaw.mdx— "Patter Discord" resource link → "Patter community (GitHub Discussions)".Breaking change?
No — docs-site only.
Test plan
docs.jsonstays valid JSON and no otherdiscord.ggreferences remain indocs/Docs updates
docs/docs.json,docs/integrations/hermes.mdx,docs/integrations/openclaw.mdx(this PR is docs-only; CHANGELOG exempt)