devopsiphai: Open-source Claude Code skill audits operational health across 6 phases

devopsiphai is an open-source Claude Code skill that audits the operational health of production projects. It runs as a skill within Claude Code and evaluates projects across six phases to answer five key operational questions.
What it evaluates
The skill answers these five questions about a project:
- Can a user (AI) onboard easily?
- Can it be deployed safely?
- Do I know what is running where?
- Can I see what is happening real time?
- Can I recover if something goes wrong?
Scoring framework
Projects are scored using the ARC framework:
- Automation
- Reporting
- Control
The tool outputs a letter grade for each pillar. According to the creator, the score is "mostly for gamification purposes, trying to get my clients to an A grade."
Technical implementation
The audit runs through six phases:
- Phase 1 spawns 17 parallel subagents — one per section — each doing factual exploration with no suggestions or judgement
- Reference files are lazy-loaded only when that domain is actively being audited to keep context lean
- Phase 6 generates the TODO.md entirely from prior phase findings
Output
The tool generates a structured TODO.md file with atomic, effort-estimated tasks based on the audit findings.
Real-world testing
The creator ran devopsiphai on a real production SaaS application. The resulting ARC score was D/D/F.
📖 Read the full source: r/ClaudeAI
👀 See Also

Claude wrote 3,000 lines of code instead of importing pywikibot — a case study in AI agents ignoring existing libraries
A developer tasked Claude Code (Opus 4.7) with fixing typos on Fandom wikis. The model wrote ~3,000 lines of Python reimplementing pywikibot, mwparserfromhell, and RETF rules rather than importing them. The post explores why this happens and how a two-minute search reduced the codebase to 1,259 lines.

Claude Auto-Continue: Chrome extension automates tool-use limit interruptions
A developer built a free Chrome extension that automatically clicks 'Continue' when Claude hits its tool-use limit after roughly 20 tool calls, eliminating manual interruptions during agentic workflows. The extension includes optional token minimization and works across all tabs and windows.

Keyoku Plugin Replaces OpenClaw's Static Heartbeat with Memory-Driven Autonomy
Keyoku is a free OpenClaw plugin that changes the agent's heartbeat from reading a static HEARTBEAT.md file to scanning the agent's actual memory store for stalled work, dropped commitments, conflicting information, and quiet relationships. It uses a local Go engine with SQLite + HNSW and offers three autonomy levels: observe, suggest, and act.

Developer Builds Native tmux Port for Windows Using Claude Code Without Knowing C
A developer created tmux-win, a native Windows multiplexer using Claude Code to handle Win32 API and conpty implementation despite not knowing C. The tool features vertical/horizontal splits, detachable sessions, and native performance without VM overhead.