Skip to content
Open
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
8 changes: 7 additions & 1 deletion docs/architecture/workflows.md
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ Workflows invoke validation through npm scripts defined in `package.json`:
| `lint:collections-metadata` | `Validate-Collections.ps1` | plugin-validation.yml |
| `lint:marketplace` | `Validate-Marketplace.ps1` | plugin-validation.yml |
| `lint:version-consistency` | `Test-ActionVersionConsistency.ps1` | Local |
| `lint:all` | Chains all linters | Local |
| `lint:all` | Chains all linters (incl. `eval:lint`) | Local |
| `format:tables` | `markdown-table-formatter` | table-format.yml |
| `test:ps` | `Invoke-PesterTests.ps1` | pester-tests.yml |
| `validate:skills` | `Validate-SkillStructure.ps1` | skill-validation.yml |
Expand All @@ -328,6 +328,12 @@ Workflows invoke validation through npm scripts defined in `package.json`:
| `lint:permissions` | `Test-WorkflowPermissions.ps1` | workflow-permissions-scan.yml |
| `lint:dependency-pinning` | `Test-DependencyPinning.ps1` | dependency-pinning-scan.yml |
| `test:py` | `pytest` | pytest-tests.yml |
| `eval:lint` | `vally lint --eval evals/` | Local |
| `eval:run` | Runs all eval suites | Local |
| `eval:run:skills` | `vally eval --suite skill-quality` | Local |
| `eval:run:agents` | `vally eval --suite agent-behavior` | Local |
| `eval:run:scripts` | `vally eval --suite script-validation` | Local |
| `eval:compare` | `vally compare` | Local |

## Related Documentation

Expand Down