用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/quarqlabs/argus --skill agent-identity-manager命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| 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.")