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).
32 lines
943 B
TOML
32 lines
943 B
TOML
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "atlas-extractor"
|
|
version = "0.1.0"
|
|
description = "Atlas / 总助 Claw email extraction pipeline (Stages 1-3 of mcp-tools/email-extractor.md spec)"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"imap-tools>=1.5.0", # Stage 1: IMAP fetcher
|
|
"readability-lxml>=0.8.1", # Stage 2: HTML → text
|
|
"lxml>=5.0.0", # readability dep
|
|
"html2text>=2024.2.26", # Stage 2 fallback
|
|
"chardet>=5.2.0", # Stage 2: charset sniff
|
|
"mail-parser>=3.15.0; python_version<'3.13'", # MIME helper (optional)
|
|
"click>=8.1.0", # CLI
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
test = ["pytest>=8.0", "pytest-cov>=5.0"]
|
|
|
|
[project.scripts]
|
|
atlas-extract = "atlas_extractor.cli:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["atlas_extractor*"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|