for assorted things

add usage examples

+4 -4
README.md
··· 12 12 13 13 | script | description | 14 14 |--------|-------------| 15 - | `check-files-for-bad-links` | Check files for bad links. | 16 - | `kill-processes` | AI-powered TUI for killing processes. | 17 - | `update-lights` | Make some change to my phillips hue network of lights via agent + MCP server. | 18 - | `update-readme` | Update the README.md file with a list of all the scripts in the current directory. | 15 + | `check-files-for-bad-links` | Check files for bad links. Usage: ```bash ./check-files-for-bad-links *.md ``` | 16 + | `kill-processes` | AI-powered TUI for killing processes. Usage: ```bash ./kill-processes ``` | 17 + | `update-lights` | Make some change to my phillips hue network of lights via agent + MCP server. Usage: ```bash ./update-lights -m "turn on sahara in the living room and nightlight in the kitchen" ``` | 18 + | `update-readme` | Update the README.md file with a list of all the scripts in the current directory. Usage: ```bash ./update-readme ``` |
+6
kill-processes
··· 5 5 # /// 6 6 """ 7 7 AI-powered TUI for killing processes. 8 + 9 + Usage: 10 + 11 + ```bash 12 + ./kill-processes 13 + ``` 8 14 """ 9 15 10 16 import os
+6
update-lights
··· 5 5 # /// 6 6 """ 7 7 Make some change to my phillips hue network of lights via agent + MCP server. 8 + 9 + Usage: 10 + 11 + ```bash 12 + ./update-lights -m "turn on sahara in the living room and nightlight in the kitchen" 13 + ``` 8 14 """ 9 15 10 16 import marvin
+6
update-readme
··· 4 4 # /// 5 5 """ 6 6 Update the README.md file with a list of all the scripts in the current directory. 7 + 8 + Usage: 9 + 10 + ```bash 11 + ./update-readme 12 + ``` 7 13 """ 8 14 9 15 import ast