Conversation
Implement AT Protocol app passwords for client authentication. - Add app_passwords storage table with bcrypt-hashed passwords - Implement com.atproto.server.createAppPassword endpoint - Implement com.atproto.server.listAppPasswords endpoint - Implement com.atproto.server.revokeAppPassword endpoint - Support app password login via createSession - Add CLI commands: app-password create/list/revoke - Generate passwords in xxxx-xxxx-xxxx-xxxx format - Non-privileged only (single-user PDS) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Deploying with
|
| Status | Name | Latest Commit | Updated (UTC) |
|---|---|---|---|
| ✅ Deployment successful! View logs |
atproto-pds | 204de19 | Mar 29 2026, 03:35 PM |
commit: |
18 tests covering CRUD endpoints, authentication flow, revocation, and the full create→list→auth→revoke→reject lifecycle. README updated with CLI reference and API endpoint table entries. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Knip flagged isAppPassword as an unused export — it's only used internally in the same file. Removed the export keyword. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
After displaying the generated password, prompts the user to confirm they've saved it, then overwrites the display with a masked version so the password doesn't linger in terminal scrollback. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <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
com.atproto.server.createAppPassword,listAppPasswords,revokeAppPassword)createSession— passwords hashed with bcrypt, same as the account passwordpds app-password create <name>,pds app-password list,pds app-password revoke <name>Test plan
pds app-password create "test"generates password inxxxx-xxxx-xxxx-xxxxformatpds app-password listshows created passwords with name and datecreateSessionreturns valid JWTpds app-password revoke "test"removes the password🤖 Generated with Claude Code