forked from cleveragents/cleveragents-core
42 lines
940 B
YAML
42 lines
940 B
YAML
# Custom profile: custom-cautious
|
|
# Based on the built-in 'cautious' profile with additional guard
|
|
# constraints for controlled environments.
|
|
|
|
name: custom/cautious
|
|
description: Cautious profile with guard constraints
|
|
schema_version: "1.0"
|
|
|
|
# Phase-transition thresholds
|
|
auto_strategize: 0.7
|
|
auto_execute: 0.7
|
|
auto_apply: 1.0
|
|
|
|
# Decision-autonomy thresholds
|
|
auto_decisions_strategize: 0.6
|
|
auto_decisions_execute: 0.8
|
|
|
|
# Self-repair thresholds
|
|
auto_validation_fix: 0.7
|
|
auto_strategy_revision: 0.8
|
|
auto_reversion_from_apply: 0.9
|
|
|
|
# Child plan and retry thresholds
|
|
auto_child_plans: 0.7
|
|
auto_retry_transient: 0.0
|
|
auto_checkpoint_restore: 0.6
|
|
|
|
# Safety requirements
|
|
require_sandbox: true
|
|
require_checkpoints: true
|
|
allow_unsafe_tools: false
|
|
|
|
# Guard constraints
|
|
guards:
|
|
max_tool_calls_per_step: 10
|
|
max_total_cost: 5.0
|
|
tool_denylist:
|
|
- shell_exec
|
|
- file_delete
|
|
require_approval_for_writes: true
|
|
require_approval_for_apply: true
|