ワンクリックで
rollback-behavior
Rollback behavioral rules for an agent to a previous version. Creates a new version (never deletes history).
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Rollback behavioral rules for an agent to a previous version. Creates a new version (never deletes history).
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Interactive first-run wizard walking the user through 8 configuration prompts and optionally bootstrapping the project. Use on first launch or when reconfiguring archon-cli.
Meta-skill that helps users author new SKILL.md skills with proper structure, progressive disclosure, and bundled resources. Use when user wants to create, write, or build a new skill for archon-cli.
Adjust behavioral rules for a custom agent or globally. Uses LLM-mediated merging with diff validation to prevent hallucinated rule changes.
Create a custom agent from a natural language description. Generates agent definition files (agent.md, context.md, tools.md, behavior.md, memory-keys.json, meta.json) in .claude/agents/custom/{name}/.
Review and apply evolution suggestions for a custom agent. Supports FIX (in-place repair), DERIVED (create variant), and CAPTURED (extract from success).
Invoke a custom agent with a task description. Assembles the Context Envelope from agent definition files, memory, and LEANN, then spawns a Task tool subagent.
| name | rollback-behavior |
| description | Rollback behavioral rules for an agent to a previous version. Creates a new version (never deletes history). |
| triggers | ["/rollback-behavior","rollback behavior"] |
| arguments | [{"name":"agent_name","description":"Name of the agent, or 'global' for global rules","required":true},{"name":"version","description":"Version number to rollback to (optional — shows history if omitted)","required":false}] |
You are reverting behavioral rules to a previous version. Follow these steps EXACTLY.
Validate:
.claude/agents/custom/{agent_scope}/ existsSearch MemoryGraph for all behavior rules (active AND inactive) for this scope:
memory_recall with tags ["behavior-rule", "{agent_scope}"]rule_group_idversion DESC## Behavior Rule History: {agent_scope}
### Rule Group: {rule_group_id}
Current: v{version} [{category}] P{priority}: {rule_text} (active={active})
v{version-1}: {rule_text} (superseded {modified_at})
v{version-2}: {rule_text} (superseded {modified_at})
### Rule Group: {rule_group_id}
...
To rollback: `/rollback-behavior {agent_scope} {version}`
Where {version} is the target version of a specific rule group.
Or: `/rollback-behavior {agent_scope} all:{timestamp}` to rollback ALL rules to their state at a specific time.
STOP and wait for user to choose a version.
Important: Rollback creates a NEW version with old content. It NEVER deletes history. The SUPERSEDES chain grows.
If agent_scope != "global":
.claude/agents/custom/{agent_scope}/behavior.md with current active rulesIf agent_scope == "global": skip (no agent directory for global rules)
"Rolled back rule group '{rule_group_id}' to v{target_version} content (stored as v{new_version}). behavior.md updated."