agent-instinct-system

Installation
SKILL.md

Agent Instinct System

Part of Agent Skills™ by googleadsagent.ai™

Description

The Agent Instinct System implements pre-cognitive reflexes — automatic safety checks and validations that fire before every code change, tool call, or output generation. Just as biological reflexes protect organisms from harm faster than conscious thought, agent instincts protect codebases and systems from damage faster than deliberate reasoning. These instincts operate below the level of task-specific logic, forming a universal safety layer that activates regardless of what the agent is doing.

Developed for the Buddy™ agent at googleadsagent.ai™, where a single incorrect Google Ads API call could burn through a client's entire monthly budget, the instinct system enforces invariants that must never be violated. Budget caps are checked before bid modifications. Destructive operations require confirmation signals. File deletions are validated against protection lists. These checks happen automatically, without the agent needing to "remember" to perform them.

The instinct system is organized into three tiers: reflexes (instant, zero-cost checks like "is this file in the protected list"), gates (lightweight validations like "does this change pass the linter"), and assessments (more expensive checks like "does this modification align with the stated task"). Each tier adds latency but catches increasingly subtle issues.

Use When

  • Agents operate on production systems where mistakes have real consequences
  • You need defense-in-depth beyond what a single verification step provides
  • Multiple agents or team members work on the same codebase simultaneously
  • The agent handles destructive operations (deletions, deployments, API mutations)
  • Compliance requirements mandate pre-action validation for AI-generated changes
Related skills
Installs
9
GitHub Stars
7
First Seen
Apr 12, 2026