with one click
preferences
update user preferences in USER.md (name, language, style, context)
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
update user preferences in USER.md (name, language, style, context)
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
store and retrieve long-term memories (facts, preferences, context)
Create and manage agents with isolated sessions and routing
Core behavior guidelines for agent interactions
Handle images, audio, and document files for messaging channels
Automate web browsing, scraping, and form interaction
Create and manage persistent interactive workspaces
| name | preferences |
| description | update user preferences in USER.md (name, language, style, context) |
| trigger | on-demand |
Update the user's personal preferences in configs/bootstrap/USER.md.
| Trigger | Example |
|---|---|
| User shares their name | "Meu nome é João" |
| User specifies language | "Responde em português sempre" |
| User defines style preference | "Quero respostas curtas" |
| User adds context about themselves | "Trabalho com Go e React" |
Use edit_file to modify configs/bootstrap/USER.md:
edit_file(
path="configs/bootstrap/USER.md",
old="- **Name:**",
new="- **Name:** João"
)
# USER.md — About Your Human
- **Name:** [user's name]
- **What to call them:** [how to address them]
- **Timezone:** [e.g., America/Sao_Paulo]
- **Language:** [e.g., Portuguese (pt-BR)]
## Context
[Projects they work on, what they care about, etc.]
## Preferences
[How they like responses, formatting, etc.]
edit_file(path="configs/bootstrap/USER.md",
old="- **Name:**",
new="- **Name:** João Silva")
edit_file(path="configs/bootstrap/USER.md",
old="- **Language:**",
new="- **Language:** Portuguese (pt-BR) — always respond in Portuguese")
edit_file(path="configs/bootstrap/USER.md",
old="## Context",
new="## Context\n\n- Building a Go project called DevClaw\n- Values concise responses")
edit_file(path="configs/bootstrap/USER.md",
old="## Preferences",
new="## Preferences\n\n- **Style:** Direct and concise\n- **Commits:** In English")
Confirm to the user what was saved. Example:
"Got it! I've updated your preferences. I'll always respond in Portuguese from now on."
| Rule | Reason |
|---|---|
| NEVER store secrets in USER.md | Use vault for API keys, passwords |
| Keep it concise | This file is loaded in every prompt |
| Confirm changes | Let user know what was saved |