一键导入
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.")