Skip to content

Commit b522112

Browse files
committed
Move the tool to check for broken links into utils
1 parent 0d45c33 commit b522112

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,31 +26,31 @@
2626
### Extract Links Only (No Checking)
2727

2828
```bash
29-
python3 check_links.py --recursive --skip-check
29+
python3 utils/check_links.py --recursive --skip-check
3030
```
3131

3232
### Check All Links
3333

3434
```bash
35-
python3 check_links.py --recursive
35+
python3 utils/check_links.py --recursive
3636
```
3737

3838
### Check Specific Files
3939

4040
```bash
41-
python3 check_links.py --files AGENTS.md .agents/AGENTS-cli.md
41+
python3 utils/check_links.py --files AGENTS.md .agents/AGENTS-cli.md
4242
```
4343

4444
### Verbose Output (Show All Checks)
4545

4646
```bash
47-
python3 check_links.py --recursive --verbose
47+
python3 utils/check_links.py --recursive --verbose
4848
```
4949

5050
### Custom Timeout
5151

5252
```bash
53-
python3 check_links.py --recursive --timeout 5
53+
python3 utils/check_links.py --recursive --timeout 5
5454
```
5555

5656
## Command-Line Options
File renamed without changes.

0 commit comments

Comments
 (0)