+3
-1
README.md
+3
-1
README.md
···
35
- pass ignore-url prefixes to ignore (e.g. `http://localhost` or `https://localhost`)
36
- pass concurrency to run the checks concurrently (default is 50)
37
38
39
### `kill-processes`
40
···
50
- uses [`textual`](https://textual.textualize.io/) for the TUI
51
- uses [`marvin`](https://github.com/prefecthq/marvin) (built on [`pydantic-ai`](https://github.com/pydantic/pydantic-ai)) to annotate processes
52
53
54
### `update-lights`
55
···
67
- set `HUE_BRIDGE_IP` and `HUE_BRIDGE_USERNAME` in `.env` or otherwise in environment
68
- uses `OPENAI_API_KEY` by default, but you can set `AI_MODEL` in `.env` or otherwise in environment to use a different model
69
70
71
### `update-readme`
72
···
78
./update-readme
79
```
80
81
-
···
35
- pass ignore-url prefixes to ignore (e.g. `http://localhost` or `https://localhost`)
36
- pass concurrency to run the checks concurrently (default is 50)
37
38
+
---
39
40
### `kill-processes`
41
···
51
- uses [`textual`](https://textual.textualize.io/) for the TUI
52
- uses [`marvin`](https://github.com/prefecthq/marvin) (built on [`pydantic-ai`](https://github.com/pydantic/pydantic-ai)) to annotate processes
53
54
+
---
55
56
### `update-lights`
57
···
69
- set `HUE_BRIDGE_IP` and `HUE_BRIDGE_USERNAME` in `.env` or otherwise in environment
70
- uses `OPENAI_API_KEY` by default, but you can set `AI_MODEL` in `.env` or otherwise in environment to use a different model
71
72
+
---
73
74
### `update-readme`
75
···
81
./update-readme
82
```
83
+4
-2
update-readme
+4
-2
update-readme
···
66
script_list += f"- [`{script.name}`](#{script.name})\n"
67
script_list += "\n---\n\n"
68
69
+
for i, (script, doc) in enumerate(scripts):
70
+
script_list += f"### `{script.name}`\n\n{doc or 'no description'}\n\n"
71
+
if i < len(scripts) - 1:
72
+
script_list += "---\n\n"
73
74
new_content = base_content + script_list
75