Skip to content

Instantly share code, notes, and snippets.

View kfishgm's full-sized avatar

Kfish kfishgm

View GitHub Profile
@kfishgm
kfishgm / check-todos.py
Last active September 26, 2025 01:48
Keep Claude going as long as it has Todos even if it removes them, good for documentation, analysis, linting, typecheck
#!/usr/bin/env python3
import sys
import json
import os
def main():
try:
# Read stdin
input_data = sys.stdin.read()
hook_input = json.loads(input_data)