Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ jobs:
cache: npm
cache-dependency-path: skills/video-transcript-downloader/package-lock.json

- uses: oven-sh/setup-bun@v2
with:
bun-version: 1.3.14

- name: Check shell helper syntax
run: |
find skills -path '*/scripts/*' -type f -print0 |
Expand All @@ -30,6 +34,12 @@ jobs:
- name: Test ClawSweeper status helper
run: skills/clawsweeper-status/scripts/clawsweeper-status.test.sh

- name: Build browser helper
run: |
bun install --frozen-lockfile
bun build scripts/browser-tools.ts --compile --target bun --outfile /tmp/browser-tools
/tmp/browser-tools --help

- name: Install video transcript downloader dependencies
working-directory: skills/video-transcript-downloader
run: npm ci
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
.DS_Store
.*.bun-build
.pnpm-store/
node_modules/
__pycache__/
*.py[cod]
bin/*
Expand Down
62 changes: 62 additions & 0 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "agent-scripts-tools",
"private": true,
"type": "module",
"dependencies": {
"commander": "^15.0.0",
"puppeteer-core": "^25.3.0"
}
}