Update MCU sync, dummy generator, and kelainan trigger

This commit is contained in:
sas.fajri
2026-05-06 22:01:57 +07:00
parent 3d50bcf7f1
commit 3cde1b3cdb
6 changed files with 575 additions and 98 deletions

16
AGENTS.md Normal file
View File

@@ -0,0 +1,16 @@
# Agent Safety Rules
## Destructive Actions
- Never run destructive actions directly when the request is ambiguous.
- Destructive actions include (not limited to): `DELETE`, `TRUNCATE`, `DROP`, mass `UPDATE`, file deletion, force-reset, and similar irreversible operations.
- Before executing destructive actions, the agent must:
1. Confirm exact target scope (table/file/column/ID/filter).
2. Show a short preview of affected scope when possible.
3. Ask for explicit user confirmation.
## Ambiguous Instructions
- If instruction can be interpreted in more than one way, do not execute immediately.
- Ask a concise clarification first, then proceed after confirmation.
## Priority
- Safety confirmation is mandatory and overrides speed.