원클릭으로
preferences
update user preferences in USER.md (name, language, style, context)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
update user preferences in USER.md (name, language, style, context)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
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 |