بنقرة واحدة
betterness-profile
Read and update user profile — name, contact, address, demographics.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Read and update user profile — name, contact, address, demographics.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Browse and search available lab tests with prices and included markers.
Search the Betterness knowledge library — files and videos via OpenSearch full-text search.
Install, uninstall, and manage Betterness MCP server integrations for AI clients (Claude, Cursor, Windsurf).
Manage authentication — OAuth login, API key login, logout, and verify identity.
Read, update, and explore the user's health profile questionnaire (sections, questions, answers).
Shared reference: auth, global flags, output formats, and security rules for the Betterness CLI.
| name | betterness-profile |
| version | 1.0.0 |
| description | Read and update user profile — name, contact, address, demographics. |
| metadata | {"category":"service","requires":{"bins":["betterness"]}} |
PREREQUISITE: Read
../betterness-shared/SKILL.mdfor auth, global flags, and security rules.
betterness profile <command> [flags]
profile getRetrieve the full user profile.
betterness profile get --json
Returns: firstName, lastName, email, phone, gender, birthDate, heightCm, weight, homeAddress, city, state, zipCode, country
profile updateUpdate profile fields. Only provided fields are changed.
# Preview changes
betterness profile update --first-name "Jane" --city "Austin" --dry-run --json
# Apply changes
betterness profile update --first-name "Jane" --city "Austin" --json
| Option | Description |
|---|---|
--first-name <name> | First name |
--last-name <name> | Last name |
--phone <number> | Phone number without dial code |
--phone-dial-code <code> | Phone dial code (e.g. +1, +44) |
--gender <value> | MALE, FEMALE, OTHER, or PREF_NOT |
--birth-date <YYYY-MM-DD> | Date of birth |
--address <street> | Home street address |
--city <city> | City |
--state <state> | State or province |
--zip-code <zip> | ZIP or postal code |
--country <code> | Country (e.g. US, GB) |
--dry-run | Preview changes without applying |
Agent rule: Always use --dry-run first, then confirm with the user before applying.