Engineer Mindset is a skill published by agensi that changes how an AI agent approaches coding tasks. Instead of generating code immediately on receiving a prompt, the agent is made to work through a six-stage process before writing anything.
The first stage, Big Picture Pause, separates the actual underlying problem from the specific implementation that was requested. The second stage, Read Before Writing, maps existing helpers and conventions in the codebase to prevent duplication. The third stage, Layer Selection, determines whether logic belongs in the Domain, Application, or Infrastructure layer. The fourth stage, Reuse Hierarchy, favors composition and extension of existing code over building from scratch. The fifth stage, Pattern Selection, removes unnecessary complexity and avoids overuse of design patterns. The sixth stage, Refactor Judgment, decides whether the existing structure should be improved before the new feature is added.
This sequence addresses two common failure modes of AI-assisted coding: shotgun surgery, where a minor change touches many unrelated files, and greenfield-in-brownfield, where the agent ignores existing project conventions and writes as if starting a new project. The skill is transport-agnostic and requires no environment variables or external credentials. It has no tool calls; it operates entirely as a behavioral protocol applied to the agent’s reasoning process.