Uh oh!
There was an error while loading. Please reload this page.
docs(agents): ephemeral-realm SIP credential test call workflow - #21
Merged
michaela-band merged 2 commits intoAug 4, 2026
Merged
Conversation
Adds a self-contained agent workflow for verifying SIP credentials end-to-end without disrupting existing realms or credentials. Covers the full lifecycle: create an ephemeral realm + credential, capture the generated password once, write a 600-permission temp accounts file, dial via a local SIP UA, and tear everything down. Includes a signal-to-meaning table for common SIP responses and notes on Build account number limitations. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
✅ Snyk checks have passed. No issues have been found so far.
💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse. |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
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 freeto 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
### Test SIP credentials end-to-endworkflow to AGENTS.md documenting how an agent can verify SIP auth by placing a real call through Bandwidthcredential create --plain, writes it to achmod 600temp file, and immediatelyunsets it from the environment — the password never touches a log or command line407 → re-INVITE,200 OK,403,503) so an agent can interpret what happened without guessingband number listlimitation on Bandwidth Build accounts and the DNS propagation delay on newly-created realmsWhy no
band sip callcommandThe implementation would require invoking
baresip(or another SIP UA) as a subprocess and managing a temp config file from Go. That's external tool coupling, subprocess management, and platform-specific behavior that doesn't fit the CLI's model — it's a pure API client. The AGENTS.md workflow documents the same recipe in a way that works with any SIP UA and doesn't add a fragile dependency to the binary.Test plan
band number listBuild caveat matches the existing note in the Build Registration sectionfeat/sip-provisioning, notmain🤖 Generated with Claude Code