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 Code at Scale: How Agentic Search Avoids RAG Failure Modes in Large Codebases
Claude Code uses agentic file-system traversal instead of embedding-based RAG, eliminating stale index issues. The article details five extension points (CLAUDE.md, hooks, skills, plugins, MCP) and the harness-as-model philosophy for multi-million-line repos.

CodeVibe: Push Notifications for AI Coding Agents When Blocked on Input
CodeVibe sends push notifications to your phone when AI coding agents like Claude Code get stuck waiting for approval on edit operations. You can review file diffs and respond with numbered options to keep the agent moving.

Tripsy Launches MCP Server for Claude: Manage Trips via Structured API
Tripsy's official MCP server lets Claude directly read, create, and update trips, activities, stays, transportation, and expenses. Setup takes ~1 minute via Claude's custom connector.

Open-source tool enables Claude to control Unreal Engine directly
soft-ue-cli is a Python tool with a C++ plugin that allows Claude Code and Claude Desktop to execute commands in Unreal Engine without editor interaction, featuring 60+ operations including blueprint editing, actor spawning, and performance profiling.