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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script src="https://cdn.jsdelivr.net/npm/p5@1.11.11/lib/p5.min.js"></script> | |
| <style> | |
| body { | |
| margin: 0; | |
| overflow: hidden; | |
| background: #000; | |
| } |
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
| #!/usr/bin/env node | |
| import { spawn } from 'child_process' | |
| import fs from 'fs' | |
| // tools that run without prompting | |
| const ALLOWED_TOOLS = [ | |
| 'Read', | |
| 'Write', | |
| 'Edit', | |
| 'Glob', |
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
| #!/usr/bin/env node | |
| const { spawn, execSync } = require('child_process') | |
| const args = process.argv.slice(2) | |
| const INTERACTIVE = args.includes('-i') | |
| const ISSUE_ID = args.find(a => a !== '-i') | |
| if (!ISSUE_ID) { | |
| console.log(`Usage: loop.cjs <beads-issue-id> [-i] |
OlderNewer