This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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(); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| 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 |