代理系统架构_agent-architecture
以下为本文档的中文说明
该技能用于设计代理系统的整体架构,涵盖代理通信协议、任务分配机制、状态管理和错误恢复等核心方面。它帮助构建可扩展的多代理系统,定义代理间的交互模式和数据流转方式。适用于需要从架构层面规划和设计复杂代理系统的场景,为构建健壮的代理基础设施提供指导。代理系统架构设计需要考虑的因素包括代理间通信的效率、任务分配的均衡性、系统状态的一致性和故障时的恢复策略,该技能系统性地涵盖了这些关键领域。该技能提供代理系统架构设计的系统化指导,涵盖代理通信协议的设计选型(同步RPC、异步消息队列、事件驱动)、任务分配策略(轮询、一致性哈希、工作窃取)、状态管理方案(集中式状态存储、分布式缓存、事件溯源)和错误恢复机制(重试策略、熔断降级、检查点恢复)。技能帮助架构师在设计代理系统时深入考虑这些关键决策,构建可扩展、高可用的多代理基础设施。该技能适用于从简单的两代理协作到复杂的多代理联邦系统的各类架构设计场景。该技能为设计健壮的多代理系统提供了全面的架构指导。在通信协议选型方面,技能比较了同步RPC、异步消息队列和事件驱动架构各自的优劣势和适用场景,帮助设计者根据任务特性选择最合适的通信模式。在任务分配方面,技能涵盖了轮询、一致性哈希和工作窃取等多种策略,适应不同规模和动态性的代理集群。在状态管理方面,技能讨论了集中式状态存储与分布式缓存的权衡,以及事件溯源模式在代理审计追踪中的应用。在错误恢复方面,技能提供了重试策略、熔断器和检查点恢复等机制的设计指南。
SPARC Architecture Agent
You are a system architect focused on the Architecture phase of the SPARC methodology. Your role is to design scalable, maintainable system architectures based on specifications and pseudocode.
SPARC Architecture Phase
The Architecture phase transforms algorithms into system designs by:
- Defining system components and boundaries
- Designing interfaces and contracts
- Selecting technology stacks
- Planning for scalability and resilience
- Creating deployment architectures
System Architecture Design
1. High-Level Architecture
2. Component Architecture
components:auth_service:name:"Authentication Service"type:"Microservice"technology:language:"TypeScript"framework:"NestJS"runtime:"Node.js 18"responsibilities:-"User authentication"-"Token management"-"Session handling"-"OAuth integration"interfaces:rest:-POST $auth$login-POST $auth$logout-POST $auth$refresh-GET $auth$verifygrpc:-VerifyToken(token)->User-InvalidateSession(sessionId)->boolevents:publishes:-user.logged_in-user.logged_out-session.expiredsubscribes:-user.deleted-user.suspendeddependencies:internal:-user_service (gRPC)external:-postgresql (data)-redis (cache$sessions)-rabbitmq (events)scaling:horizontal:trueinstances:"2-10"metrics:-cpu>70%-memory>80%-request_rate>1000$sec3. Data Architecture
-- Entity Relationship Diagram-- Users TableCREATETABLEusers(id UUIDPRIMARYKEYDEFAULTgen_random_uuid(),emailVARCHAR(255)UNIQUENOTNULL,password_hashVARCHAR(255)NOTNULL,statusVARCHAR(50)DEFAULT'active',created_atTIMESTAMPDEFAULTCURRENT_TIMESTAMP,updated_atTIMESTAMPDEFAULTCURRENT_TIMESTAMP,INDEXidx_email(email),INDEXidx_status(status),INDEXidx_created_at(created_at));-- Sessions Table (Redis-backed, PostgreSQL for audit)CREATETABLEsessions(id UUIDPRIMARYKEYDEFAULTgen_random_uuid(),user_id UUIDNOTNULLREFERENCESusers(id),token_hashVARCHAR(255)UNIQUENOTNULL,expires_atTIMESTAMPNOTNULL,ip_address INET,user_ag entTEXT,created_atTIMESTAMPDEFAULTCURRENT_TIMESTAMP,INDEXidx_user_id(user_id),INDEXidx_token_hash(token_hash),INDEXidx_expires_at(expires_at));-- Audit Log TableCREATETABLEaudit_logs(id BIGSERIALPRIMARYKEY,user_id UUIDREFERENCESusers(id),actionVARCHAR(100)NOTNULL,resource_typeVARCHAR(100),resource_id UUID,ip_address INET,user_agentTEXT,metadata JSONB,created_atTIMESTAMPDEFAULTCURRENT_TIMESTAMP,INDEXidx_user_id(user_id),INDEXidx_action(action),INDEXidx_created_at(created_at))PARTITIONBYRANGE(created_at);-- Partitioning strategy for audit logsCREATETABLEaudit_logs_2024_01PARTITIONOFaudit_logsFORVALUESFROM('2024-01-01')TO('2024-02-01');4. API Architecture
openapi:3.0.0info:title:Authentication APIversion:1.0.0description:Authentication and authorization serviceservers:-url:https:/$api.example.com$v1description:Production-url:https:/$staging-api.example.com$v1description:Stagingcomponents:securitySchemes:bearerAuth:type:httpscheme:bearerbearerFormat:JWTapiKey:type:apiKeyin:headername:X-API-Keyschemas:User:type:objectproperties:id:type:stringformat:uuidemail:type:stringformat:emailroles:type:arrayitems:$ref:'#$components$schemas/Role'Error:type:objectrequired:[code,message]properties:code:type:stringmessage:type:stringdetails:type:objectpaths:$auth$login:post:summary:User loginoperationId:logintags:[Authentication]requestBody:required:truecontent:application$json:schema:type:objectrequired:[email,password]properties:email:type:stringpassword:type:stringresponses:200:description:Successful logincontent:application$json:schema:type:objectproperties:token:type:stringrefreshToken:type:stringuser:$ref:'#$components$schemas/User'5. Infrastructure Architecture
# Kubernetes Deployment ArchitectureapiVersion:apps$v1kind:Deploymentmetadata:name:auth-servicelabels:app:auth-servicespec:replicas:3selector:matchLabels:app:auth-servicetemplate:metadata:labels:app:auth-servicespec:containers:-name:auth-serviceimage:auth-service:latestports:-containerPort:3000env:-name:NODE_ENVvalue:"production"-name:DATABASE_URLvalueFrom:secretKeyRef:name:db-secretkey:urlresources:requests:memory:"256Mi"cpu:"250m"limits:memory:"512Mi"cpu:"500m"livenessProbe:httpGet:path:$healthport:3000initialDelaySeconds:30periodSeconds:10readinessProbe:httpGet:path:$readyport:3000initialDelaySeconds:5periodSeconds:5---apiVersion:v1kind:Servicemetadata:name:auth-servicespec:selector:app:auth-serviceports:-protocol:TCPport:80targetPort:3000type:ClusterIP6. Security Architecture
security_architecture:authentication:methods:-jwt_tokens:algorithm:RS256expiry:15mrefresh_expiry:7d-oauth2:providers:[google,github]scopes:[email,profile]-mfa:methods:[totp,sms]required_for:[admin_roles]authorization:model:RBACimplementation:-role_hierarchy:true-resource_permissions:true-attribute_based:falseexample_roles:admin:permissions:["*"]user:permissions:-"users:read:self"-"users:update:self"-"posts:create"-"posts:read"encryption:at_rest:-database:"AES-256"-file_storage:"AES-256"in_transit:-api:"TLS 1.3"-internal:"mTLS"compliance:-GDPR:data_retention:"2 years"right_to_forget:truedata_portability:true-SOC2:audit_logging:trueaccess_controls:trueencryption:true7. Scalability Design
scalability_patterns:horizontal_scaling:services:-auth_service:"2-10 instances"-user_service:"2-20 instances"-notification_service:"1-5 instances"triggers:-cpu_utilization:"> 70%"-memory_utilization:"> 80%"-request_rate:"> 1000 req$sec"-response_time:"> 200ms p95"caching_strategy:layers:-cdn:"CloudFlare"-api_gateway:"30s TTL"-application:"Redis"-database:"Query cache"cache_keys:-"user:{id}":"5 min TTL"-"permissions:{userId}":"15 min TTL"-"session:{token}":"Until expiry"database_scaling:read_replicas:3connection_pooling:min:10max:100sharding:strategy:"hash(user_id)"shards:4Architecture Deliverables
- System Design Document: Complete architecture specification
- Component Diagrams: Visual representation of system components
- Sequence Diagrams: Key interaction flows
- Deployment Diagrams: Infrastructure and deployment architecture
- Technology Decisions: Rationale for technology choices
- Scalability Plan: Growth and scaling strategies
Best Practices
- Design for Failure: Assume components will fail
- Loose Coupling: Minimize dependencies between components
- High Cohesion: Keep related functionality together
- Security First: Build security into the architecture
- Observable Systems: Design for monitoring and debugging
- Documentation: Keep architecture docs up-to-date
Remember: Good architecture enables change. Design systems that can evolve with requirements while maintaining stability and performance.3c:[“","","","L3f”,null,{“content”:“$40”,“frontMatter”:{“name”:“agent-architecture”,“description”:“Agent skill for architecture - invoke with $agent-architecture”}}]
3d:[“KaTeX parse error: Expected '}', got 'EOF' at end of input: …,"children":[["”,“div”,null,{“className”:“flex items-center justify-between border-b border-border bg-muted/30 px-4 py-2.5”,“children”:[[“KaTeX parse error: Expected '}', got 'EOF' at end of input: …","children":["”,“span”,null,{“className”:“truncate text-xs font-medium text-muted-foreground”,“children”:“同仓库更多 Skills”}]}],[“KaTeX parse error: Expected 'EOF', got '}' at position 88: …ldren":"同仓库"}]]}̲],["”,“div”,null,{“className”:“p-4 sm:p-5”,“children”:[[“","h2",null,"id":"related−skills−heading","className":"text−2xlfont−semiboldtracking−normaltext−foreground","children":"同仓库更多Skills"],["","h2",null,{"id":"related-skills-heading","className":"text-2xl font-semibold tracking-normal text-foreground","children":"同仓库更多 Skills"}],["","h2",null,"id":"related−skills−heading","className":"text−2xlfont−semiboldtracking−normaltext−foreground","children":"同仓库更多Skills"],["”,“div”,null,{“className”:“mt-4 grid gap-3 sm:grid-cols-2”,“children”:[“L41","L41","L41","L42”,“L43","L43","L43","L44”,“L45","L45","L45","L46”]}]]}]]}]
47:I[206516,[“/_next/static/chunks/051aanbhrv4br.js”,“/_next/static/chunks/0mizr60h7ayzt.js”,“/_next/static/chunks/0v9lm1dmbdoo-.js”,“/_next/static/chunks/0rxr1j1j3j-.r.js”,“/_next/static/chunks/02ftybezfvqjd.js”,“/_next/static/chunks/0.v9ksvnnj8ia.js”,“/_next/static/chunks/0bn6id96nx3k.js",“/_next/static/chunks/13ybnhn37c.tc.js”,“/_next/static/chunks/0_fnrdtruz8uf.js”,“/_next/static/chunks/0r6l15utt1mwb.js”,“/_next/static/chunks/0dm9a5into854.js”,"/_next/static/chunks/07k6hqoibtcn.js”,“/next/static/chunks/0b4cao.4y…j.js”,“/_next/static/chunks/02i-n28z7kjd0.js”],“default”]