Summary:\n- added Codex marketplace registry plus awareness/ethics/guardrails sub-plugins\n- mirrored Claude plugin commands/scripts/hooks into codex api/ci/code/collect/coolify/core/issue/perf/qa/review/verify\n- embedded Axioms of Life ethics modal, guardrails, and kernel files under codex/ethics\n- added Codex parity report, improvements list, and MCP integration plan\n- extended Gemini MCP tools and docs for Codex awareness
1.2 KiB
1.2 KiB
| name | description |
|---|---|
| tests | Verify tests pass for changed files |
Test Verification
Run tests related to changed files.
Process
-
Identify changed files
git diff --name-only HEAD -
Find related tests
- Go:
*_test.gofiles in same package - PHP:
*Test.phpfiles in tests/ directory
- Go:
-
Run targeted tests
# Go - run package tests core go test ./pkg/changed/... # PHP - run filtered tests core php test --filter=ChangedTest -
Report results
Smart Test Detection
Go
Changed: pkg/api/handler.go
Related: pkg/api/handler_test.go
Run: core go test ./pkg/api/...
PHP
Changed: src/Http/UserController.php
Related: tests/Http/UserControllerTest.php
Run: core php test tests/Http/UserControllerTest.php
Output
## Test Verification
**Changed files**: 3
**Related tests**: 2 packages
### Results
✓ pkg/api: 12 tests passed
✓ pkg/auth: 8 tests passed
**All tests passing!**
Or:
## Test Verification
**Changed files**: 3
**Related tests**: 2 packages
### Results
✓ pkg/api: 12 tests passed
✗ pkg/auth: 1 failed
### Failures
- TestValidateToken: expected true, got false
auth_test.go:45
**Fix failing tests before committing.**