원클릭으로
agent-identity-manager
Update the agent's core name, overarching personality, use cases, or custom system directives.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Update the agent's core name, overarching personality, use cases, or custom system directives.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | agent_identity_manager |
| description | Update the agent's core name, overarching personality, use cases, or custom system directives. |
| triggers | change your name, your name is, you name is, your new name is, i want your name to be, call yourself, rename yourself, from now on act like, change your personality, update your core instructions, your primary job is |
update_agent_identity(agent_name, agent_personality, agent_use_cases_json, agent_custom_prompt) — Updates the local identity config file for this agent.update_agent_identity before responding. Do not merely say that the identity was updated."" for other fields. Completely omit them from the tool call.agent_personality should preserve the user's requested tone: Keep it concise, but do not collapse meaningful tone instructions into a single word.agent_use_cases_json must be a strictly formatted JSON array of strings, e.g., '["Code Review", "Scheduling"]'.User: "From now on, I want your name to be Kakarot."
→ update_agent_identity(agent_name="Kakarot")
User: "Stop being so professional. I want you to be highly sarcastic and witty."
→ update_agent_identity(agent_personality="sarcastic and witty")
User: "Your new primary jobs are reviewing my Python code and organizing my calendar."
→ update_agent_identity(agent_use_cases_json='["Code Review", "Calendar Management"]')
User: "I want you to always append 'Sir' to the end of your sentences from now on."
→ update_agent_identity(agent_custom_prompt="Always append 'Sir' to the end of every sentence.")