Interactive demonstration of Open Agent Spec (OAS) with Cortex cost optimization - a command-line tool for generating AI agent projects from YAML specifications. Experience the complete workflow: define agent specs, generate code, test across multiple LLM engines, and optimize costs with intelligent routing and fallback strategies.
Generate AI agents from YAML specifications using the OAS CLI workflow
Select an agent template to generate and test
AI agent specialized in security vulnerability analysis
AI agent for data analysis and insights generation
AI agent specialized in marketing content generation
AI agent for automated code quality and best practices review
AI agent for comprehensive research and fact-checking
Configure which LLM engines to generate agents for
Complete OAS agent specification for Security Analyzer Agent
name: "SecurityAnalyzer" version: "1.0.0" description: "AI agent for security vulnerability analysis" intelligence: type: "llm" engine: "claude" model: "claude-3-5-sonnet-20241022" config: temperature: 0.3 max_tokens: 1000 task: input: code_snippet: "string" language: "string" output: risk_level: "high|medium|low" vulnerabilities: "array" recommendations: "array" confidence: "number" behavioral_contract: version: "0.1.2" description: "Security-focused contract with strict validation" behavioral_flags: conservatism: "high" temperature_control: mode: "strict" range: [0.1, 0.5] response_contract: output_format: required_fields: ["risk_level", "vulnerabilities", "recommendations", "confidence"] safety_checks: harmful_content: true pii_protection: true