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
27 lines
927 B
YAML
27 lines
927 B
YAML
title: Atlas Daily Brief
|
||
description: |
|
||
每天早上 7:30(老板本地时间)扫一遍增量邮件,更新项目/人员/客户状态,
|
||
生成"今日老板 Brief"并通过邮件投递到老板收件箱。
|
||
agent: atlas
|
||
mode: scheduled
|
||
schedule:
|
||
cron: "30 7 * * *"
|
||
timezone: Asia/Shanghai
|
||
entry_point: B # AGENTS.md 中定义的 entry mode B = daily_brief
|
||
payload:
|
||
skills_invoked:
|
||
- claw-email-parser # incremental fetch + extract
|
||
- claw-project-tracker # state diff
|
||
- claw-people-observer # signal updates
|
||
- claw-customer-radar # CHS recompute, andon check
|
||
- claw-report-writer # render daily brief
|
||
delivery:
|
||
channel: email
|
||
to: ${BOSS_EMAIL}
|
||
subject_template: "【今日老板 Brief - {{ date }}】"
|
||
format: html_inline_with_pdf_attachment
|
||
guardrails:
|
||
- never_send_to_anyone_other_than_boss
|
||
- max_runtime_minutes: 5
|
||
- skip_if_no_state_change: log_only_no_email
|