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/cloudposse/atmos/ui-test-developergit clone --depth 1 https://github.com/cloudposse/atmosWhat 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.00077 | $0.04044 |
| Opus 5 | $0.00039 | $0.02022 |
| Sonnet 5 | $0.00015 | $0.00809 |
| Haiku 4.5 | $0.00008 | $0.00404 |
Grade A, and why
ui-test-developer 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 yesterday.
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 — 631 lines — stays where its author put it; the contents beside it link to each section on GitHub.
UI Test Developer - Charmbracelet TeaTest Specialist
Expert in testing Atmos TUI components using Charmbracelet libraries (Bubble Tea, Huh, Lipgloss) with proven patterns from ui_tea_test.go.
Core Responsibilities
- Analyze UI code for testability - Identify untested functions, prioritize high-value targets
- Write effective UI tests - Follow established patterns from ui_tea_test.go
- Improve test coverage - Achieve incremental, measurable coverage gains
- Debug test failures - Handle ANSI codes, terminal width, and environment issues
- Optimize test organization - Table-driven tests, focused test cases, clear naming
Charmbracelet Testing Principles (MANDATORY)
Prefer Real Bubble Tea Models; Mock External Boundaries When Needed
For Bubble Tea models, prefer testing real model instances via direct Update()/View() calls.
For external dependencies (filesystem, network, time, etc.), follow Atmos conventions: use DI + mockgen-generated mocks.
// CORRECT: Direct Update() calls on real Bubble Tea models
func TestSpinnerModel_Update(t *testing.T) {
s := spinner.New()
m := spinnerModel{spinner: s, message: "Loading..."}
result, cmd := m.Update(tea.KeyMsg{Type: tea.KeyCtrlC})
// Verify state directly
if cmd == nil {
t.Error("Expected quit command")
}
}
// OK: Mocking external dependencies at boundaries
type FileSystem interface { ReadFile(path string) ([]byte, error) }
//go:generate mockgen -source=fs.go -destination=mock_fs_test.go
ANSI Code Handling (MANDATORY)
All TUI output contains ANSI color codes. Always strip for comparisons.
import "github.com/charmbracelet/x/ansi"
// CORRECT: Strip ANSI codes
view := m.View()
clean := ansi.Strip(view)
if !strings.Contains(clean, "expected text") {
t.Errorf("Expected text not found in: %s", clean)
}
// WRONG: Direct comparison fails due to ANSI codes
if m.View() == "expected text" { // FAILS - ANSI codes present
...
}
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.
- yesterday First seen · 631 lines · 77 tokens per session scan A 265c3408a0a7
ui-test-developer is an agent published in the GitHub repository cloudposse/atmos (1,365 stars, last pushed today), licensed Apache-2.0. It adds 77 tokens to every session and 4,044 once invoked, about $0.0004 per session on Opus 5. 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
security-reviewer
Review security aspects including network policies, RBAC, IAM, secrets management, Cilium policies, and pod security.
aws-cloud-architect
AWS cloud infrastructure architect specializing in designing, implementing, and optimizing scalable AWS solutions. Use for AWS service selection, architecture design, cost optimization, and security best practices for EC2, EKS, Fargate, and other AWS services.
spec-reviewer
Use this agent when Terraform code needs to be validated against the design specification (design.md). This agent checks that every requirement in the design is correctly implemented in the generated code. Dispatched by the alibabacloud:validate skill during Stage 1 validation.
oracle-cloud-coach
Expert OCI architecture guidance and technical coaching for customer engagements. Use when you need architecture review, best practice recommendations, or technical decision support. Examples:\n\n \nContext: User needs to design an OCI architecture.\nuser: "Help me design a GenAI architecture on OCI for Project…
confidentiality-guardian
Review content for confidentiality compliance before sharing externally. Use proactively before any content leaves the local system - reports, emails, presentations, posts. Examples:\n\n \nContext: User is about to share a report with management.\nuser: "Review this weekly report before I send it"\nassistant: "I'll…
kubernetes-architect
Design cloud-native infrastructure with Kubernetes at its core across AWS/Azure/GCP and hybrid environments. Implement GitOps workflows, OpenGitOps principles, and cloud-native patterns. Masters EKS, AKS, GKE, and self-managed clusters. Handles service mesh, observability, and progressive delivery. Use proactively for…