42 lines
1.1 KiB
Markdown
42 lines
1.1 KiB
Markdown
# Review Bundle Audit
|
|
|
|
Source Skill for auditing review bundle directories before human or Agent review.
|
|
|
|
The canonical entry point is `SKILL.md`; the deterministic auditor is in `scripts/review_bundle_audit.py`.
|
|
|
|
## Original Source
|
|
|
|
```text
|
|
Original source: C:\Users\wangq\Documents\Codex\ccpe-system\requirements\skills-vault\2026-06-19-review-bundle-audit.md
|
|
Migration date: 2026-06-19
|
|
Migration status: first public Skill implementation
|
|
Behavior preserved: deterministic package audit only; no review judgment or bundle repair
|
|
Known gaps: built-in profile is generic and intentionally conservative
|
|
```
|
|
|
|
## Layout
|
|
|
|
```text
|
|
SKILL.md
|
|
README.md
|
|
agents/openai.yaml
|
|
fixtures/profile.example.yaml
|
|
scripts/review_bundle_audit.py
|
|
tests/test_review_bundle_audit.py
|
|
```
|
|
|
|
## Usage
|
|
|
|
```powershell
|
|
conda run -n skills-vault python .\scripts\review_bundle_audit.py `
|
|
--bundle-root C:\path\review-bundle `
|
|
--output-dir C:\path\helper-outputs `
|
|
--profile generic
|
|
```
|
|
|
|
## Tests
|
|
|
|
```powershell
|
|
conda run -n skills-vault python -B -m unittest discover -s skills/review-bundle-audit/tests -v
|
|
```
|