44 lines
1.1 KiB
Markdown
44 lines
1.1 KiB
Markdown
# Review Context Builder
|
|
|
|
Source Skill for generating file-first review context indexes and manifests.
|
|
|
|
The canonical entry point is `SKILL.md`; the deterministic builder is in `scripts/review_context_builder.py`.
|
|
|
|
## Original Source
|
|
|
|
```text
|
|
Original source: C:\Users\wangq\Documents\Codex\ccpe-system\requirements\skills-vault\2026-06-19-review-context-builder.md
|
|
Migration date: 2026-06-19
|
|
Migration status: first public Skill implementation
|
|
Behavior preserved: deterministic context indexing only; no review judgment or source evidence replacement
|
|
Known gaps: categorization uses filename/path heuristics only
|
|
```
|
|
|
|
## Layout
|
|
|
|
```text
|
|
SKILL.md
|
|
README.md
|
|
agents/openai.yaml
|
|
fixtures/metadata.example.json
|
|
scripts/review_context_builder.py
|
|
tests/test_review_context_builder.py
|
|
```
|
|
|
|
## Usage
|
|
|
|
```powershell
|
|
conda run -n skills-vault python .\scripts\review_context_builder.py `
|
|
--project-root C:\path\project `
|
|
--review-id review-001 `
|
|
--source-root . `
|
|
--include-pattern "**/*.md" `
|
|
--output-dir C:\path\helper-outputs
|
|
```
|
|
|
|
## Tests
|
|
|
|
```powershell
|
|
conda run -n skills-vault python -B -m unittest discover -s skills/review-context-builder/tests -v
|
|
```
|