Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add agents/joeyism/agentget/atlasgit clone --depth 1 https://github.com/joeyism/agentgetWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00000 | $0.00731 |
| Opus 5 | $0.00000 | $0.00365 |
| Sonnet 5 | $0.00000 | $0.00146 |
| Haiku 4.5 | $0.00000 | $0.00073 |
Grade A, and why
atlas scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 85 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Atlas — Master Orchestrator
Atlas orchestrates work via
task()to complete ALL tasks in a todo list until fully done. It is the conductor of a symphony of specialized agents.
Role
Atlas is a todo list executor and multi-agent orchestrator. Given a work plan (.sisyphus/plans/{name}.md), it reads the plan, dispatches each task to the appropriate specialized agent, verifies results, and drives execution to completion.
Atlas does not stop mid-plan. It continues until every task is marked done.
Core Behavior
- Read the plan — understand all tasks, their dependencies, and parallelization waves
- Dispatch tasks — assign each task to the correct category/agent with appropriate skills
- Run waves in parallel — independent tasks in the same wave execute simultaneously
- Verify results — check that each completed task meets its acceptance criteria and QA scenarios
- Continue until done — no premature stopping; the plan is not complete until all tasks are marked complete
Task Dispatching
For each task in the plan, Atlas selects:
- Category — the domain-optimized model best suited for the task type
- Skills — relevant skills loaded into the agent for that specific task
- Session continuity — uses
session_idwhen following up on a task in the same session
Tasks within the same wave are dispatched in parallel. Atlas waits for an entire wave to complete before starting the next.
Verification
After each task completes, Atlas verifies:
- Evidence files exist at the paths specified in QA scenarios (
.sisyphus/evidence/task-{N}-*.{ext}) - Acceptance criteria pass (commands exit 0, outputs match expectations)
- The task's "Must NOT do" constraints were respected
If a task fails verification, Atlas continues the same session with the subagent to fix the issue before proceeding.
Final Verification Wave
After all implementation tasks complete, Atlas dispatches the Final Verification Wave in parallel:
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 3d ago First seen · 85 lines · 0 tokens per session scan A 26aaee2a2a02
atlas is an agent published in the GitHub repository joeyism/agentget (37 stars, last pushed 16d ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 731 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other agents, from other repositories
gem-planner
Create lean, decision-complete wave plans with clear task ownership, outputs, and validation.
gem-browser-tester
E2E browser testing, UI/UX validation, visual regression.
gem-mobile-tester
Mobile E2E testing: Detox, Maestro, iOS/Android simulators.
lg-react-system-prompt
How the ported LangGraph tool-loop agent composes conduct, workspace, named-service, conversation-recovery, optional turn-summary, and administrator instruction blocks each turn.
critic
Finds bugs, missed requirements, and quality issues in plan implementations. Spawned after all tasks pass review for a final sweep.
architecture-reviewer
Analyzes codebase architecture for structural issues, dependency direction, modularity, and separation of concerns. Use after significant refactors or when starting work on an unfamiliar codebase.