Skip to content
Closed
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
14 changes: 14 additions & 0 deletions .github/workflows/skill-review.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Skill Review
on:
pull_request:
paths: ['**/SKILL.md']

jobs:
review:
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: read
steps:
- uses: actions/checkout@v4
- uses: tesslio/skill-review@14b47c8420ff9ac9a12c30ed4b89ce0e9d0355ae # main
15 changes: 7 additions & 8 deletions skills/functional-tests/SKILL.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
---
name: symfony:functional-tests
allowed-tools:
- Read
- Write
- Edit
- Bash
- Glob
- Grep
description: Drive Symfony delivery with deterministic tests and strong regression protection. Use for functional tests tasks.
allowed-tools: "Read, Write, Edit, Bash, Glob, Grep"
description: >
Write and maintain Symfony functional tests using TDD (RED/GREEN/REFACTOR).
Converts bug reports into failing tests, builds regression-safe behavior,
and validates HTTP responses, form submissions, and authorization flows.
Use when the user asks to write functional tests, add test coverage, convert
a bug into a test, or set up TDD workflow for Symfony controllers and endpoints.
---

# Functional Tests (Symfony)
Expand Down
Loading