ATlast — you'll never need to find your favorites on another platform again. Find your favs in the ATmosphere.
atproto
1# Project Subagents Configuration 2# Domain-specific agents for working on different parts of the codebase. 3# 4# When working on a specific domain, spawn a Task with subagent_type="Explore" or 5# "general-purpose" and include the relevant agent's context in the prompt. 6# 7# Customize this file for YOUR project's structure. The domains below are examples. 8 9# Example: Backend/Core agent 10# [agents.backend] 11# name = "Backend Agent" 12# description = "API routes, database models, business logic" 13# file_patterns = [ 14# "src/**/*.rs", 15# "src/**/*.py", 16# "app/**/*.py" 17# ] 18# focus_areas = [ 19# "Database operations", 20# "API endpoints", 21# "Business logic" 22# ] 23# instructions = """ 24# When working on backend: 25# - Run tests before and after changes 26# - Follow existing patterns for new endpoints 27# - Maintain backwards compatibility 28# """ 29 30# Example: Frontend agent 31# [agents.frontend] 32# name = "Frontend Agent" 33# description = "UI components, state management, styling" 34# file_patterns = [ 35# "web/src/**/*.ts", 36# "web/src/**/*.tsx", 37# "src/components/**" 38# ] 39# focus_areas = [ 40# "React components", 41# "State management", 42# "Styling and layout" 43# ] 44# instructions = """ 45# When working on frontend: 46# - Test in browser after changes 47# - Follow component patterns 48# - Keep accessibility in mind 49# """ 50 51# Example: Infrastructure agent 52# [agents.infra] 53# name = "Infrastructure Agent" 54# description = "CI/CD, deployment, configuration" 55# file_patterns = [ 56# ".github/workflows/**", 57# "Dockerfile", 58# "docker-compose.yml", 59# "scripts/**" 60# ] 61# focus_areas = [ 62# "GitHub Actions", 63# "Docker configuration", 64# "Deployment scripts" 65# ] 66# instructions = """ 67# When working on infrastructure: 68# - Test workflows locally when possible 69# - Keep builds fast with caching 70# - Document any manual steps 71# """