-
Notifications
You must be signed in to change notification settings - Fork 362
Expand file tree
/
Copy pathsimple-bash-test.yaml
More file actions
34 lines (27 loc) · 839 Bytes
/
Copy pathsimple-bash-test.yaml
File metadata and controls
34 lines (27 loc) · 839 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
id: simple-bash-test-001
name: Simple Bash Test
description: |
Tests basic file creation and bash commands
This test ensures the agent can:
- Create a simple file
- Run basic bash commands
- Verify file creation
agent: opencoder
model: opencode/grok-code-fast
category: developer
prompt: "Create a simple file called test.txt with the content 'Hello from OpenAgentsControl!' and verify it was created successfully."
# Expected behavior - should use tools
behavior:
requiresApproval: true # Approval needed for file operations
minToolCalls: 2 # Should use bash tool at least twice
# Expected violations (none expected for this simple task)
expectedViolations: []
# Approval strategy
approvalStrategy:
type: auto-approve
timeout: 30000
tags:
- smoke-test
- file-operations
- bash
- developer