Atlas Framework
/install atlas-framework
ATLAS Framework
A structured methodology for AI-assisted development built on the GOTCHA 6-layer architecture.
When to Use This Skill
Use this skill when:
- Building full-stack applications
- Creating agentic workflows
- Setting up AI assistant frameworks
- Designing data systems or databases
- Planning integrations with external services
The GOTCHA Framework (6 Layers)
GOT (The Engine):
- Goals (
goals/) — What needs to happen (process definitions) - Orchestration — The AI manager that coordinates execution
- Tools (
tools/) — Deterministic scripts that do the actual work
CHA (The Context):
- Context (
context/) — Reference material and domain knowledge - Hard prompts (
hardprompts/) — Reusable instruction templates - Args (
args/) — Behavior settings that shape how the system acts
Why GOTCHA?
LLMs are probabilistic (educated guesses). Business logic is deterministic (must work the same way every time). This structure bridges that gap through separation of concerns:
- Push reliability into deterministic code (tools)
- Push flexibility and reasoning into the LLM (orchestration)
- Push process clarity into goals
- Push behavior settings into args files
- Push domain knowledge into context layer
ATLAS Workflow (5 Steps)
Use this when building applications:
| Step | Phase | What You Do |
|---|---|---|
| A | Architect | Define problem, users, success metrics |
| T | Trace | Data schema, integrations map, stack proposal |
| L | Link | Validate ALL connections before building |
| A | Assemble | Build with layered architecture |
| S | Stress-test | Test functionality, error handling |
For production builds, also add:
- V — Validate (security, input sanitization, edge cases, unit tests)
- M — Monitor (logging, observability, alerts)
A — Architect
Purpose: Know exactly what you're building before touching code.
Answer these questions:
- What problem does this solve? (One sentence)
- Who is this for? (Specific user, not "everyone")
- What does success look like? (Measurable outcome)
- What are the constraints? (Budget, time, technical requirements)
T — Trace
Purpose: Design before building.
- Data Schema — Define source of truth BEFORE building
- Integrations Map — List every external connection (service, purpose, auth type, MCP available?)
- Technology Stack — Propose database, backend, frontend
- Edge Cases — Document what could break (rate limits, token expiry, timeouts)
L — Link
Purpose: Validate ALL connections BEFORE building.
[ ] Database connection tested
[ ] All API keys verified
[ ] MCP servers responding
[ ] OAuth flows working
[ ] Environment variables set
[ ] Rate limits understood
A — Assemble
Purpose: Build with proper architecture.
Build order:
- Database schema first
- Backend API routes second
- Frontend UI last
Follow GOTCHA separation:
- Frontend — UI components, user interactions
- Backend — API routes, business logic, validation
- Database — Schema, migrations, indexes
S — Stress-test
Purpose: Test before shipping.
- Functional Testing — All buttons work, data saves/retrieves, navigation works
- Integration Testing — API calls succeed, MCP operations work, auth persists
- Edge Case Testing — Invalid input handled, empty states display, network errors show feedback
File Structure
project/
├── goals/ — Process definitions (what to achieve)
├── tools/ — Execution scripts (organized by workflow)
├── args/ — Behavior settings (YAML/JSON)
├── context/ — Domain knowledge and references
├── hardprompts/ — Reusable instruction templates
├── memory/ — Persistent memory system
├── .tmp/ — Temporary work (disposable)
├── .env — API keys + environment variables
└── CLAUDE.md — System instruction file
Memory System
The framework includes a persistent memory system for cross-session continuity.
Loading Memory
At session start, load memory context:
- Read
memory/MEMORY.mdfor curated long-term facts - Read today's log:
memory/logs/YYYY-MM-DD.md - Read yesterday's log for continuity
Memory Types
fact— Objective informationpreference— User preferencesevent— Something that happenedinsight— Learned patterntask— Something to dorelationship— Connection between entities
Search Capabilities
- Keyword search
- Semantic search
- Hybrid search (best results)
Anti-Patterns (What NOT To Do)
- Building before designing — End up rewriting everything
- Skipping connection validation — Hours wasted on broken integrations
- No data modeling — Schema changes cascade into UI rewrites
- No testing — Ship broken code, lose trust
- Hardcoding everything — No flexibility for changes
Guardrails
- Always check
tools/manifest.mdbefore writing new scripts - Verify tool output format before chaining into another tool
- Don't assume APIs support batch operations — check first
- When a workflow fails mid-execution, preserve intermediate outputs before retrying
- Read the full goal before starting a task — don't skim
First Run Initialization
On first session in a new environment:
- Check if
memory/MEMORY.mdexists - If missing, create the folder structure:
memory/logs/data/
- Create
MEMORY.mdwith template - Initialize SQLite databases for memory and activity tracking
Continuous Improvement Loop
Every failure strengthens the system:
- Identify what broke and why
- Fix the tool script
- Test until it works reliably
- Update the goal with new knowledge
- Next time → automatic success
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install atlas-framework - 安装完成后,直接呼叫该 Skill 的名称或使用
/atlas-framework触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Atlas Framework 是什么?
ATLAS Framework - Structured AI-assisted development methodology with GOTCHA 6-layer architecture and 5-step app building workflow. Use when building applica... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 115 次。
如何安装 Atlas Framework?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install atlas-framework」即可一键安装,无需额外配置。
Atlas Framework 是免费的吗?
是的,Atlas Framework 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Atlas Framework 支持哪些平台?
Atlas Framework 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Atlas Framework?
由 marlowne12(@marlowne12)开发并维护,当前版本 v1.0.0。