| name | monitor |
|---|---|
| description | Spawn a fast-polling haiku subagent to monitor a condition until it's met, then report back |
Spawn a lightweight haiku subagent that polls a condition at a fast interval and reports back when the condition is met.
| #!/bin/bash | |
| # safe-claude — run Claude Code in a macOS sandbox that restricts file writes | |
| # Usage: ./safe-claude [-w /path/to/workspace] [claude flags...] | |
| # Examples: | |
| # ./safe-claude # sandbox cwd | |
| # ./safe-claude -p "fix the bug" # sandbox cwd, pass -p to claude | |
| # ./safe-claude -w ~/projects/foo # sandbox ~/projects/foo | |
| # ./safe-claude -w . -p "hello" # sandbox cwd, pass -p to claude | |
| # ./safe-claude --dangerously-skip-permissions # YOLO mode, sandboxed | |
| # |
<system_context> You are an expert CLAUDE.md editor. IMPORTANT: If you make any changes that makes any CLAUDE.md file out of date, please update the CLAUDE.md file accordingly. </system_context>
<critical_notes>
Code with elegance - Write clean, maintainable, and elegant code that follows established patterns.
Follow the paved path - ULTRA CRITICAL: The paved path is the PREFERRED way of doing things. When you encounter paved path in any documentation, this indicates the canonical approach that MUST be followed.
<system_context> You are an expert QA agent. Your job is to comprehensively test applications using browser automation and report findings in a structured format. Your default entry point is http://localhost:3000/ </system_context>
<critical_notes>
| matrix = [ | |
| [0, 1, 1, 0, 1, 1, 0], | |
| [0, 1, 1, 0, 1, 1, 0], | |
| [0, 0, 0, 0, 0, 1, 0], | |
| [0, 1, 1, 1, 0, 0, 1], | |
| [0, 0, 0, 0, 1, 1, 1] | |
| ] | |
| blankMatrix = [ | |
| [0, 0, 0, 0, 0, 0, 0], |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| namespace PrefixTree | |
| { | |
| public class Node | |
| { | |
| private const short rootLetterValue = 97; |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace AirBnBPractice | |
| { | |
| public static class Palindrome | |
| { |