Zion Boggan
repos/TreeTrace/examples/rejections/.treetrace/agent-memory.md
zionboggan.com ↗
19 lines · markdown
History for this file →
1
Project: rejections
2
 
3
## Constraints
4
- Don't do that
5
 
6
## Lessons
7
- Confirm proposed actions before executing: user_declined_tool (tool_result): "The user doesn't want to proceed with this tool use. The user wants you to answer a different question instead." [node_001, node_002, node_004]
8
- Validate tool inputs before executing: tool_execution_error (tool_result): "mkdir: cannot create directory '/root/.config/forbidden': File exists" [node_003]
9
- Pre-flight check filesystem and shell permissions: permission_denied (tool_result): "sudo: permission denied; user is not in the sudoers file. This incident will be reported." [node_003]
10
- Treat privacy boundaries as product requirements: Agent action touched risky-command [signals: risky command]: "sudo rm -rf /root/.config/forbidden" [node_003]
11
- Rephrase refused requests instead of repeating them: model_refusal (stop_reason) [node_004, node_005]
12
- Re-check the actual goal: User said: "stop, don't do that" [node_003]
13
 
14
## Security
15
- (high) [node_003] "sudo rm -rf /root/.config/forbidden"
16
 
17
## Next
18
- Continue: Try writing a new file via the Write tool.
19
- Constraint: stop, don't do that