Safe Operation Patterns

lesson autonomous active autonomous/safe-operation-patterns.md View on GitHub

Safe Operation Patterns

Rule

Classify operations as GREEN (always safe), YELLOW (safe with patterns), or RED (requires human) before executing.

Context

During autonomous operation when selecting and executing any task or action.

Detection

Pattern

Classify before executing, then follow appropriate action:

Classification Table

Classification Criteria Action
GREEN Safe, reversible, autonomous Execute immediately
YELLOW Safe with established pattern Follow specific pattern (e.g., twitter-best-practices.md)
RED Financial, irreversible, human judgment Escalate, don't execute

Examples:

Empty Data Debugging

When tool connects but returns zero results:

Check Finding Action
curl <source_url> Source has data Tool parsing bug
curl <source_url> Source empty Genuinely empty, move on
curl <source_url> Different format Update tool config

Skip raw inspection if: connection failed, tool reports errors, multiple tools confirm emptiness.

Outcome

Related

Match Keywords

classify operation before executing safe to execute autonomously requires human approval operation safety classification risky operation