| 123456789101112131415161718192021222324252627282930313233343536373839 |
- id: smoke-test
- name: "Smoke Test: System Builder"
- description: |
- Basic smoke test for system builder agent.
- Tests conversational path - agent should respond without approval.
-
- Expected workflow:
- 1. Agent receives conversational prompt
- 2. Agent responds directly (no approval needed)
- 3. No tool calls required (pure conversation)
- category: developer
- agent: meta/system-builder
- model: anthropic/claude-sonnet-4-5
- prompt: "Hello, can you introduce yourself and explain your role in building agent systems?"
- # Expected behavior - conversational path
- behavior:
- requiresApproval: false # NO approval needed for conversational
- minToolCalls: 0 # No tools needed for introduction
- # Expected violations
- expectedViolations:
- - rule: approval-gate
- shouldViolate: false
- severity: error
- description: Should NOT ask for approval (conversational path)
- # Approval strategy (safety fallback, shouldn't be triggered)
- approvalStrategy:
- type: auto-approve
- timeout: 30000
- tags:
- - smoke-test
- - conversational
- - core
|