name: plan-mega-review
version: 2.0.0
description: |
The most thorough plan review possible. Three modes: SCOPE EXPANSION (dream big,
build the cathedral), HOLD SCOPE (review what's here with maximum rigor), and
SCOPE REDUCTION (strip to essentials). Context-dependent defaults, but when the
user says EXPANSION — go full send. Challenges premises, maps every failure mode,We need a way to give each Discord channel its own persistent "computer" running Claude Code CLI, where:
- The computer survives across sessions (disk persists)
- It wakes up fast when a user sends a message (< 10s, ideally < 5s)
- It costs near-zero when idle
| name | description |
|---|---|
orchestrating-swarms |
Master multi-agent orchestration using Claude Code's TeammateTool and Task system. Use when coordinating multiple agents, running parallel code reviews, creating pipeline workflows with dependencies, building self-organizing task queues, or any task benefiting from divide-and-conquer patterns. |
Master multi-agent orchestration using Claude Code's TeammateTool and Task system.
Here's my AGENTS.md (also linked from CLAUDE.md as @AGENTS.md) for hacking
agentically on MDFlow recipes.
I have this in ~/.mdflow/, and the agents/recipes live in ~/.mdflow/agents/ and added to the path
so that they can be invoked as commands.
With this I can use a coding agent like Claude Code or GitHub Copilot in VSCode and say something like:
> create a new agent using copilot that reviews all the code files in this directory as a poem
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
| import os | |
| import pathlib | |
| from mkdocs.plugins import BasePlugin | |
| base_path = os.path.dirname(os.path.abspath(__file__)) | |
| custom_dir = os.path.join(base_path, 'custom_dir') | |
| # there are some templates in package's custom_dir we want to use to override theme template | |
| # Approach 1: Simulate https://github.com/mkdocs/mkdocs/blob/82bd8ba5ff177347d094b095bd623a85aaa4c80f/mkdocs/theme.py#L42 | |
| # to update theme dirs at begging |
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
| all: pdf epub kindle html examples | |
| BOOK_TITLE = A\ React\ Developer’s\ Guide\ to\ Hooks\ -\ Sebastien\ Castiel | |
| dist: | |
| @mkdir -p dist | |
| pdf: dist/${BOOK_TITLE}.pdf | |
| @echo '✅ PDF' |
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
| blueprint: | |
| name: Low battery level detection & notification for all battery sensors | |
| description: Regularly test all sensors with 'battery' device-class for crossing | |
| a certain battery level threshold and if so execute an action. | |
| domain: automation | |
| input: | |
| threshold: | |
| name: Battery warning level threshold | |
| description: Battery sensors below threshold are assumed to be low-battery (as | |
| well as binary battery sensors with value 'on'). |
short url: caseywatts.com/selfpublish
my book is out! an applied psychology / self-help book targeted at developers: Debugging Your Brain
Markdown --> PDF (as a booklet!)
Markdown --> EPUB and MOBI
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
| /* | |
| You need to set an inputData param called 'link' | |
| with the URL field you want to parse. | |
| More info: https://zapier.com/help/code/#data-variables | |
| */ | |
| fetch(inputData.link) | |
| .then(function(res) { | |
| return res.text(); | |
| }) | |
| .then(function(body) { |
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
| location / { | |
| if ($uri ~* ^/([^.\?/]+)) { | |
| set $foldername "$1"; | |
| } | |
| sub_filter "<head>" "<head><base href=\"${scheme}://${host}/${foldername}/\">"; | |
| } |
NewerOlder