Skip to content

Commit 97eeeb4

Browse files
omalleyandyclaude
andcommitted
fix(ci): resolve presubmit docs check and move plugin workflow
- Regenerate docs/tool-reference.md to match npm run docs output - Remove overtime-ag-tests.yml (moved to omalleyandy-plugins repo) - Add .venv/ to .gitignore to prevent local linting noise Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 0b5603c commit 97eeeb4

3 files changed

Lines changed: 5 additions & 52 deletions

File tree

.github/workflows/overtime-ag-tests.yml

Lines changed: 0 additions & 50 deletions
This file was deleted.

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,5 +150,8 @@ log.txt
150150

151151
.DS_Store
152152

153+
# Python virtual environment (overtime-ag-plugin)
154+
.venv/
155+
153156
# Claude Code config
154157
.claude/

docs/tool-reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -298,12 +298,12 @@ so returned values have to be JSON-serializable.
298298
**Parameters:**
299299

300300
- **function** (string) **(required)**: A JavaScript function declaration to be executed by the tool in the currently selected page.
301-
Example without arguments: `() => {
301+
Example without arguments: `() => {
302302
return document.title
303303
}` or `async () => {
304304
return await fetch("example.com")
305305
}`.
306-
Example with arguments: `(el) => {
306+
Example with arguments: `(el) => {
307307
return el.innerText;
308308
}`
309309

0 commit comments

Comments
 (0)