This repo IS Atlas (总助 Claw / 老板视角项目执行雷达). The earlier
two-profile framing (Atlas + Vega placeholder) was a misread — Vega is
the agent persona answering Multica issues, not the product. Vega has
no relationship to assistant-claw the product.
Changes:
- Move atlas/* to top-level (git mv preserves history)
- Remove empty Vega placeholders prompts/.gitkeep, tools/.gitkeep
- Delete atlas/ wrapper directory (now empty)
- Update path references in INTEGRATION-hermes.md, scripts/mirror-...sh,
docs/decisions/0001-mirror-nuwa-skill.md
- Rewrite README.md as Atlas-only, remove dual-profile language
After this commit:
- Top-level OpenClaw 8 files (IDENTITY/SOUL/USER/AGENTS/TOOLS/MEMORY/
BOOTSTRAP/HEARTBEAT + CLAUDE symlink + zh-CN mirrors)
- skills/{6 sub-skills + DESCRIPTION + README}
- mcp-tools/{spec + Python implementation}
- state-schemas/{project, person, customer + README}
- autopilots/{5 atlas-*.yaml}
- client-deck/, docs/decisions/, scripts/
The ~/.hermes/skills/atlas/ destination convention preserved (atlas as
a skill namespace on the operator's machine, distinct from source path).
33 lines
1.1 KiB
Markdown
33 lines
1.1 KiB
Markdown
# nuwa-skill (vendored upstream — fetched at deploy time)
|
|
|
|
Atlas's `claw-boss-distiller` adapts the methodology from
|
|
[`alchaincyf/nuwa-skill`](https://github.com/alchaincyf/nuwa-skill) (MIT).
|
|
|
|
We **don't** vendor the 49 MB upstream repo into this repo because:
|
|
- It's MIT, freely re-cloneable
|
|
- It evolves separately
|
|
- Keeps `assistant-claw` lean
|
|
|
|
## Fetch on deploy
|
|
|
|
```bash
|
|
git clone --depth 1 https://github.com/alchaincyf/nuwa-skill.git \
|
|
skills/claw-boss-distiller/upstream
|
|
```
|
|
|
|
For air-gapped client deployments, mirror nuwa-skill into your private Gitea first
|
|
(see `../ADAPTER.md` § "客户部署场景").
|
|
|
|
## What we use from upstream
|
|
|
|
- `references/extraction-framework.md` — the triple-verification methodology (kept verbatim)
|
|
- `references/skill-template.md` — adapted, with `角色扮演规则` and `身份卡` sections removed (see `../ADAPTER.md`)
|
|
|
|
## What we add (lives in this repo, not upstream)
|
|
|
|
- `../ADAPTER.md` — the nuwa→atlas conversion notes
|
|
- `../boss_skill.seed.md` — Atlas-specific 5-layer seed template
|
|
- `../demo/` — synthetic distillation demo run
|
|
|
|
After the upstream clone, the `claw-boss-distiller` skill is ready to run.
|