This adds the full Atlas (总助 Claw / 老板视角项目执行雷达) scaffolding as a sibling profile to the existing Vega general-purpose assistant. All Atlas content lives under atlas/ to keep the existing top-level skeleton intact. What's included: - atlas/IDENTITY.md, SOUL.md, USER.md, AGENTS.md, MEMORY.md, BOOTSTRAP.md, HEARTBEAT.md, TOOLS.md (+ zh-CN mirrors) — full OpenClaw 8-piece set matching the zero-cca convention - atlas/skills/ — 6 sub-skills with frontmatter: claw-email-parser / claw-project-tracker / claw-people-observer / claw-customer-radar / claw-boss-distiller / claw-report-writer - atlas/skills/claw-boss-distiller/ — adapter notes for nuwa-skill, 5-layer boss_skill seed template (23 rules across Expression DNA / Mental Models / Decision Heuristics / Anti-Patterns / Honest Boundaries), and a complete synthetic distillation demo (10 input emails -> validated 5-layer output) - atlas/mcp-tools/email-extractor/ — Python implementation of stages 1-3 (fetch + decode + dequote), 7 pytest tests passing, CLI: atlas-extract - atlas/state-schemas/ — formal JSON schemas for project / person / customer cards with the no-employee-rating hard constraint baked in - atlas/client-deck/ — 2-page client-facing pitch document - autopilots/atlas-*.yaml — 5 autopilot configs (daily / weekly / monthly / quarterly + andon event-triggered) for a future Multica-side scheduler Notes: - nuwa-skill (MIT, https://github.com/alchaincyf/nuwa-skill) NOT vendored; fetch at deploy time via instructions in atlas/skills/claw-boss-distiller/upstream/README.md - Vega-side prompts/skills/tools/autopilots/docs scaffold left untouched - Top-level README.md updated with a brief Atlas pointer; rest preserved
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.
|