diff --git a/.gitignore b/.gitignore index a1bf70c..bfe3f1c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,11 @@ # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. +# commit message files +commit_msg*.txt +*_commit_msg.txt +pr_msg*.txt +*_pr_msg.txt + # dependencies /node_modules /.pnp diff --git a/commit_msg.txt b/commit_msg.txt deleted file mode 100644 index 0608163..0000000 --- a/commit_msg.txt +++ /dev/null @@ -1,10 +0,0 @@ -[Cursor] Add screenshot verification functionality - -Added screenshot verification functionality with the following components: -1. Screenshot capture using Playwright (screenshot_utils.py) -2. LLM-based verification using OpenAI and Anthropic (llm_api.py updates) -3. Unit tests for screenshot capture and LLM verification -4. End-to-end test with a test server -5. Updated requirements.txt with Playwright dependency - -The feature allows capturing screenshots of web pages and verifying their appearance using LLMs.