用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/ComeOnOliver/skillshub --skill soul2dna命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | soul2dna |
| description | Compile SOUL.md character profiles into synthetic diploid genomes (.genome.json) via trait-to-allele mapping |
| version | 0.1.0 |
| author | Manuel Corpas |
| license | MIT |
| tags | ["genomebook","synthetic-genomics","soul-compiler","trait-mapping"] |
| metadata | {"openclaw":{"requires":{"bins":["python3"],"env":[],"config":[]},"always":false,"emoji":"🧬","homepage":"https://github.com/ClawBio/ClawBio","os":["darwin","linux"],"install":[],"trigger_keywords":["soul2dna","soul compiler","soul to genome","genomebook compile","synthetic genome","character genome"]}} |
Compile SOUL.md character profiles into synthetic diploid genomes. Each soul file
describes a historical or fictional figure with trait scores (0.0 to 1.0). The
compiler maps these scores to alleles at defined loci using additive, dominant, or
recessive inheritance models, producing a .genome.json file per character.
GENOMEBOOK/DATA/SOULS/ extracting identity
metadata (name, sex, ancestry, domain, era) and trait scores.GENOMEBOOK/DATA/trait_registry.json) which defines
loci, alleles, chromosomal positions, dominance models, and effect sizes for
each trait.GENOMEBOOK/DATA/SOULS/*.soul.md (20 historical figures)GENOMEBOOK/DATA/trait_registry.jsonGENOMEBOOK/DATA/GENOMES/<name>-g0.genome.json per character# Compile all souls to genomes
python skills/soul2dna/soul2dna.py
# Demo mode (shows summary without writing files)
python skills/soul2dna/soul2dna.py --demo
Each .genome.json contains:
{
"id": "einstein-g0",
"name": "Albert Einstein",
"sex": "Male",
"sex_chromosomes": "XY",
"ancestry": "...",
"generation": 0,
"parents": [null, null],
"loci": { "<locus_id>": { "chromosome": "...", "alleles": ["A","G"], ... } },
"trait_scores": { "curiosity" ...