mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-20 16:02:19 +00:00
b883f9a9d2
* feat: add ai chat schedule and trigger tools * refactor: use zod for ai chat workspace tools * refactor: let ai provide runnable target fields * refactor: generate ai chat workspace tool schemas * fix: add object type to composed tool schemas * fix: avoid top-level trigger schema unions Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * fix: block undeployed workspace ai tools Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * fix: inject ai workspace tool target Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * test: add ai evals for workspace tools Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * test: make workspace tool eval prompts realistic Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * fix: surface workspace tool errors * fix: show workspace tool success details * fix: describe workspace tool path format * fix: clarify workspace path examples * fix: tighten workspace tool validation * fix: align workspace tool prompts * chore: mark generated chat schemas * chore: mark generated cli skills --------- Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
40 lines
1.0 KiB
YAML
40 lines
1.0 KiB
YAML
name: Check system prompts freshness
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- "system_prompts/**"
|
|
- "typescript-client/**"
|
|
- "python-client/wmill/wmill/client.py"
|
|
- "openflow.openapi.yaml"
|
|
- "backend/windmill-api/openapi.yaml"
|
|
- "cli/src/main.ts"
|
|
- "cli/src/commands/**"
|
|
- "frontend/src/lib/components/copilot/chat/workspaceToolsZod.gen.ts"
|
|
pull_request:
|
|
paths:
|
|
- "system_prompts/**"
|
|
- "typescript-client/**"
|
|
- "python-client/wmill/wmill/client.py"
|
|
- "openflow.openapi.yaml"
|
|
- "backend/windmill-api/openapi.yaml"
|
|
- "cli/src/main.ts"
|
|
- "cli/src/commands/**"
|
|
- "frontend/src/lib/components/copilot/chat/workspaceToolsZod.gen.ts"
|
|
|
|
jobs:
|
|
check-freshness:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.12"
|
|
|
|
- name: Install dependencies
|
|
run: pip install pyyaml
|
|
|
|
- name: Check auto-generated files are up-to-date
|
|
run: bash system_prompts/check-freshness.sh
|