Get instructions for DPF account signup, email verification, or password reset
manage_accountReturns instructions for creating a DPF account, verifying its email, resending the verification code, or resetting a forgotten password — it never performs these itself and never asks for a password. A password typed into this chat would sit in the conversation transcript, so every action instead returns the DPF website's own form, or a curl command that reads the password from a shell variable the user sets themselves in their own terminal. Hand the command to the user to run — do not run it yourself even if you have shell access, since composing the export line would require seeing the password. action "register": requires email, firstName, lastName, and termsAccepted: true (only after the user has explicitly agreed to the DPF Terms of Service and Privacy Policy in this conversation). action "verify": confirm the 6-digit code DPF emailed after registration (requires otp). action "resend": re-send that code if it never arrived. action "forgot-password": request a password-reset code (requires email). action "reset-password": submit that code and set a new password (requires otp).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| otp | No | action "verify" and "reset-password" only. The 6-digit code from the email DPF sent. | |
| Yes | |||
| action | Yes | ||
| lastName | No | action "register" only | |
| firstName | No | action "register" only | |
| termsAccepted | No | action "register" only. Must be true. |