원클릭으로
build-manifest
Build a dataset manifest and validate it against the manifest schema.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Build a dataset manifest and validate it against the manifest schema.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Build, refresh, or promote rows from `docs/initialDocs/derivedBibliography.md` — the auto-generated catalogue of references cited by the papers under `literature/papers/`. Use when the user asks to "extract references", "build the derived bibliography", "refresh derived refs", "what does paper X cite", "promote this derived ref to the main bibliography and download it", or to scan/aggregate citations from the local PDFs. Also: every time a new paper folder lands on disk, this refresh has to run so the derived list stays current.
Build the GPU Docker image and validate the runtime environment.
Build all paper figures and tables from registered runs and verify claim coverage.
Run an ablation grid and aggregate the results.
Run the end-to-end smoke pipeline (dummy model on the synthetic smoke dataset).
Add a single new paper or repository to docs/initialDocs/revisedBibliography.md and, when possible, materialise its `literature/papers/<slug>/` folder (PDF + shallow-cloned repo + notes.md + citation.bib) following docs/initialDocs/bibliographySpec.md. The folder is created only when at least one artefact (PDF or repo) was downloaded AND year + first author are known; otherwise the row is added with an empty Literature dir cell. Use when the user pastes a URL, BibTeX, or arXiv ID and asks to "add this paper", "save this reference", "track this in the bibliography", etc.
| name | build-manifest |
| description | Build a dataset manifest and validate it against the manifest schema. |
| argument-hint | <dataset-name> [--root <data-root>] [--out <manifest-path>] |
You are about to build a dataset manifest. The manifest is the unified internal representation that every adapter writes (implementation plan task 2.3).
Steps:
data/README.md and docs/datasets/dataset_license_matrix.md to confirm the dataset is allowed and how to access it.python scripts/build_manifest.py --dataset $1 \
--root ${RP_DETR_DATA_ROOT:-data/raw}/$1 \
--out data/manifests/$1.jsonl
If $2 / $3 are passed, override --root / --out accordingly.python -m rp_detr.cli.validate_predictions \
--schema schemas/dataset_manifest.schema.json \
data/manifests/$1.jsonl || true
python -m rp_detr.cli.manifest_stats data/manifests/$1.jsonl
Do not commit any file under data/raw/ or data/processed/ — only the manifest under data/manifests/.