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
24 lines
910 B
YAML
24 lines
910 B
YAML
title: Atlas Andon Real-time Alert
|
|
description: |
|
|
事件触发型——非定时。任意客户健康度跌档(绿→黄/黄→红)、
|
|
项目首次转 Stalled、强负向 VoC 出现,立即推送告警。
|
|
agent: atlas
|
|
mode: event_triggered
|
|
triggers:
|
|
- event: customer_chs_tier_drop
|
|
condition: "previous_tier in [Green, Yellow] AND current_tier in [Yellow, Red]"
|
|
- event: project_first_stall_transition
|
|
condition: "from_state == Active AND to_state == Stalled"
|
|
- event: strong_negative_voc_detected
|
|
condition: "voc.性质 == '强负向'"
|
|
payload:
|
|
skills_invoked:
|
|
- claw-report-writer # mode: andon_alert (single-line)
|
|
delivery:
|
|
channel: email
|
|
to: ${BOSS_EMAIL}
|
|
subject_template: "🔴 Atlas Andon: {{ trigger_label }}"
|
|
format: html_inline_one_line
|
|
guardrails:
|
|
- suppression_window_hours: 24 # same (entity, trigger_type) won't re-fire within 24h of ack
|