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
2.1 KiB
2.1 KiB
总助 Claw (Atlas) — Plan & Scaffold
Boss-perspective project execution radar. Built on the OpenClaw agent framework (mirrors zero-cca/ structure).
Quick Map
| Layer | Files |
|---|---|
| Identity (8 OpenClaw core files) | IDENTITY.md SOUL.md USER.md AGENTS.md TOOLS.md MEMORY.md BOOTSTRAP.md HEARTBEAT.md (+ CLAUDE.md symlink) |
| Skills (6 sub-skills) | skills/{claw-email-parser, claw-project-tracker, claw-people-observer, claw-customer-radar, claw-boss-distiller, claw-report-writer}/SKILL.md |
| MCP tools | mcp-tools/email-extractor.md (the deep-dive 7-stage extraction pipeline) + mcp-tools/README.md |
| State (runtime) | created at deployment under state/ per-client |
| Memory (runtime) | created at deployment under memory/ |
Counts
- 1 Agent (Atlas / 总助)
- 6 Skills (1 master would re-enter via entry points A/B/C/D/E)
- 6 MCP tools (email-fetch, email-extractor, state-io, report-render, email-send, rule-audit)
- 5 Autopilot schedules (daily / weekly / monthly / quarterly + event-triggered)
- 3 State entity types (project / person / customer) + audit + runs + extracted
- 5 Report modes (daily / weekly / monthly / inventory / ad-hoc)
- 5 Layers in
boss_skill.md(Expression DNA / Mental Models / Decision Heuristics / Anti-Patterns / Honest Boundaries) - 1 Open-source dependency (
nuwa-skillMIT, vendored intoclaw-boss-distiller)
Read Order for a New Atlas Operator
BOOTSTRAP.md(first run only)SOUL.md(boundaries — read once, internalize)IDENTITY.md(role)USER.md(boss profile, filled at deployment)AGENTS.md(entry points + skill roster + tool roster + autopilot)mcp-tools/email-extractor.md(the unsexy but critical extraction layer)skills/README.mdthen individualSKILL.mds
Status
Scaffold v0.4 — generated 2026-05-09 from PRD v0.3 + nuwa-skill review + OpenClaw framework adoption.
Next: write state-schemas/{project,person,customer}.md formal JSON schemas, write the boss_skill.md seed template, and begin the W1 implementation sprint.