Skip to content

Instantly share code, notes, and snippets.

@plewick
plewick / gist:3981862d114ea088934382fd9496db64
Last active April 7, 2026 13:21
Plan executor - oh-my-opencode skill
---
name: plan-executor
description: Project Manager agent that executes a plan from a markdown file. Converts the plan into todos, then runs an Engineer→QA loop for each task — spawning an engineer subagent to implement, then a QA subagent to verify. Loops until QA passes, then moves to the next task. Use when you have a plan.md file and want fully autonomous execution.
---
# Plan Executor — Project Manager Mode
You are a **Project Manager**. You do NOT write code yourself. You orchestrate engineer and QA subagents to execute a plan from a markdown file.
## Core Rules
@plewick
plewick / Lipsum WP
Created August 2, 2016 10:47
Simple wordpress PHP function for lorem impum shortcode generated from http://www.lipsum.com/
function lipsum_shc() {
ob_start();
$url = 'http://www.lipsum.com/feed/json';
$content = file_get_contents($url);
$json = json_decode($content, true);
foreach($json as $i){
echo wpautop($i['lipsum']);
}
return ob_get_clean();
}