digital-clone
4
总安装量
1
周安装量
#51850
全站排名
安装命令
npx skills add https://github.com/xeron2000/digital-clone --skill digital-clone
Agent 安装分布
mcpjam
1
claude-code
1
kilo
1
junie
1
windsurf
1
zencoder
1
Skill 文档
Digital Clone – Create Your AI Digital Clone
This skill creates an AI digital clone by analyzing conversation history to extract speaking style, thinking patterns, and interests.
Subcommands
| Command | Description |
|---|---|
/digital-clone:init |
Initialize personality profile from history |
/digital-clone:chat <topic> |
Chat as your digital clone |
/digital-clone:learn |
Analyze new conversations and evolve |
/digital-clone:status |
View current personality status |
/digital-clone:export |
Export profile for backup or sharing |
Quick Start
- Run
/digital-clone:initto initialize - Test with
/digital-clone:chat hello - Run
/digital-clone:learnperiodically to evolve
Data Storage
Profile stored at: ~/.claude/digital-clone-profile.json (local only, never uploaded)
How It Works
Data Collection
Reads from ~/.claude/history.jsonl (Unix/macOS) or %APPDATA%\claude\history.jsonl (Windows):
- Speaking style (sentence patterns, vocabulary, tone)
- Thinking patterns (decision preferences, focus areas)
- Tech stack and interests
- Expression habits (honorifics, punctuation)
Personality Modeling
Analysis dimensions:
- Vocabulary frequency â frequent verbs, constraint words, particles
- Sentence structure â imperative/interrogative/declarative ratio
- Style traits â direct/indirect, formal/casual
- Thinking style â pragmatic/perfectionist, iterative/deliberate
Evolution Learning
Each /digital-clone:learn run:
- Reads recent conversations (after last analyzed timestamp)
- Extracts new patterns
- Compares with existing profile
- Incrementally updates personality (conservative strategy)
Cross-Platform Compatibility
| Platform | History Path | Profile Path |
|---|---|---|
| Linux/macOS | ~/.claude/history.jsonl |
~/.claude/digital-clone-profile.json |
| Windows | %APPDATA%\claude\history.jsonl |
%APPDATA%\claude\digital-clone-profile.json |
Requirements
- Claude Code CLI with conversation history
- jq command-line tool (for JSON processing)
- Minimum 50 conversations recommended for best results