بنقرة واحدة
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.")