# Systematic Execution

> Enforces an Observe-Orient-Decide-Act (OODA) loop for resilient command execution and handles interactive prompts using PTY tools.

- Skill: `rushikeshsakharleofficial/systematic-execution` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add rushikeshsakharleofficial/systematic-execution`
- Raw SKILL.md: https://api.skillmd.com/api/skills/rushikeshsakharleofficial/systematic-execution/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: rushikeshsakharleofficial (https://skillmd.com/u/rushikeshsakharleofficial)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/rushikeshsakharleofficial/systematic-execution

---


# Systematic Execution Skill

This skill transforms the agent's interaction with the system shell into a resilient, high-fidelity engineering workflow.

## 1. The OODA Loop
- **Observe:** Check the current environment (CWD, files) before running commands.
- **Orient:** Analyze previous command failures. Read stderr completely.
- **Decide:** Formulate a hypothesis and a targeted remediation plan.
- **Act:** Execute the fix before retrying.

## 2. Native Interactive Handshake
- **Interactivity:** Use the `interactive: true` flag for all commands that may prompt (e.g. `npm init`, `ssh`).
- **Input:** Use `send_shell_input` for all password or confirmation prompts.
- **Security:** Use `is_sensitive: true` for sensitive data to keep it redacted from logs.

