The ExecutionContract
Every turn, your agent gets a read-only contract. It defines what the agent can do right now — based on behavioral state, stress level, and energy. The agent reads it. It cannot modify it.
Allowed
respond
clarify
suggest
escalate
defer
Blocked
issue_refund
delete_record
access_records
share_credentials
{
"allowed_actions": [
"respond", "clarify",
"suggest", "escalate"
],
"forbidden_actions": [
"issue_refund",
"delete_record",
"share_credentials"
],
"stress_level": "LOW",
"energy_level": 0.85,
"decision_style": {
"tempo": "measured",
"risk": "moderate"
}
}