원클릭으로
self-replicator
Clone the agent to new environments with all learned skills and curated memory.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Clone the agent to new environments with all learned skills and curated memory.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Argue against proposed actions to test judgment quality. Not "is the code correct" but "should we be doing this at all?" Aligned with robustness, not performance.
Orchestrate Claude Code agent teams for parallel multi-agent collaboration
Learn and integrate new APIs, creating permanent skills for external service access.
Create and update CHANGELOG.md with entries that include AI model/CLI attribution, PRD context, and task references.
Audit decisions for judgment quality, compliance bias, and manipulation vulnerability. Inspired by Anthropic's Project Vend Phase 2 finding that helpfulness training creates exploitable attack surface.
Extract visual style from reference UI screenshot and codify into reusable design system.
| name | self-replicator |
| description | Clone the agent to new environments with all learned skills and curated memory. |
| category | autonomous |
Important: Conceptual Skill This skill describes patterns for replicating agent configurations across environments. Claude Code itself runs within terminal sessions and cannot self-deploy to remote servers. The "replication" here means exporting and copying instruction templates, skills, and memory files - not autonomous self-propagation.
Create autonomous copies of the agent on new systems, preserving learned capabilities and relevant context.
Gather exportable components:
export_package/
├── skills/ # All learned skills
│ └── <skill>/SKILL.md
├── agents/ # Agent definitions
│ └── <agent>.md
├── memory/
│ └── MEMORY.md # Curated knowledge (not daily logs)
├── automation/
│ ├── HEARTBEAT.md # Heartbeat configuration
│ └── cron/ # Scheduled tasks
└── config.json # Agent configuration (no secrets)
Exclude:
Requirements for target:
Install Agent Runtime
# Example for different platforms
npm install -g agent-cli
# or
pip install agent-cli
# or
brew install agent-cli
Copy Export Package
# Copy to agent home
cp -r export_package/* ~/.agent/
Configure Credentials User must provide API keys for:
Load Configuration
Import Skills
Import Memory
Configure Automation
Run verification checks:
Inform original instance:
Clone successfully deployed to [target].
Transferred:
- [N] skills
- [N] agent definitions
- Memory context (MEMORY.md)
- Heartbeat configuration
Clone is now operating independently.
Copies everything for identical capability:
Use for: Backup, migration, redundancy
Copies specific capabilities:
Use for: Specialized deployments, team sharing
Copies skills but no memory:
Use for: New projects, clean slate with capabilities
Conceptual Patterns The following deployment patterns are conceptual examples for future autonomous agent architectures. They are not currently supported by Claude Code, which runs within terminal sessions rather than as a standalone daemon. These patterns may be relevant for custom agent implementations built on top of Claude's API.
Provision Server
Install Dependencies
curl -fsSL https://deb.nodesource.com/setup_22.x | sudo -E bash -
sudo apt-get install -y nodejs
Deploy Agent
npm install -g agent-cli
# Copy export package
# Configure credentials
Set Up Service
# Create systemd service for auto-start
sudo systemctl enable agent
sudo systemctl start agent
Configure Networking
FROM node:22-slim
WORKDIR /agent
COPY export_package/ /root/.agent/
RUN npm install -g agent-cli
# Credentials via environment variables
ENV ANTHROPIC_API_KEY=""
ENV GITHUB_TOKEN=""
CMD ["agent", "start", "--daemon"]
Before export, review MEMORY.md for:
┌─────────┐
│ Hub │
│ (Main) │
└────┬────┘
│
┌───────┼───────┐
│ │ │
┌───┴───┐ ┌─┴─┐ ┌───┴───┐
│ Clone │ │...│ │ Clone │
│ 1 │ │ │ │ N │
└───────┘ └───┘ └───────┘
┌─────────┐ ┌─────────┐
│ Agent A │◄───►│ Agent B │
└────┬────┘ └────┬────┘
│ │
└───────┬───────┘
│
┌────┴────┐
│ Agent C │
└─────────┘
AUTONOMOUS_BOOTUP_SPEC.md for architectureskill-creator for skill formatmemory-manager for memory structure