Big refactoring
Some checks failed
Deploy / lint (push) Failing after 21s
Deploy / test (push) Has been skipped
Deploy / deploy (push) Has been skipped

This commit is contained in:
Dennis Thiessen
2026-03-03 15:20:18 +01:00
parent 181cfe6588
commit 0a011d4ce9
55 changed files with 6898 additions and 544 deletions

View File

@@ -0,0 +1,19 @@
{
"enabled": true,
"name": "Update Docs on Code Change",
"description": "Monitors Python source files and prompts agent to update README.md or docs folder when code changes are saved",
"version": "1",
"when": {
"type": "fileEdited",
"patterns": [
"*.py",
"requirements.txt",
"pyproject.toml",
"alembic.ini"
]
},
"then": {
"type": "askAgent",
"prompt": "A source file was just modified. Review the changes and update the documentation in README.md to reflect any new features, API changes, configuration updates, or important implementation details. Keep the documentation clear, accurate, and up-to-date."
}
}