feat: add CL hook verification, JD copy, and PDF rename to kit

- cl_reference.md: mandatory web-search verification for all CL hooks
- make-cl/SKILL.md: hook verification gate before presenting CL draft
- critique/SKILL.md: step 8b paper hook verification (Tier 1 if wrong)
- shared_ops.md: copy JD into output folder during Phase 0
- shared_ops.md: rename final PDFs to clean names at finalization
This commit is contained in:
Akhil Reddy Peeketi
2026-03-09 19:12:16 -06:00
parent fd0de39b4e
commit 54f7b91aa6
4 changed files with 35 additions and 3 deletions
+8 -3
View File
@@ -97,8 +97,9 @@ The tool is authoritative — never trust mental math for char counts. If the to
**Steps:**
1. Derive folder name from JD filename: `JDs/JD_Acme.txt``output/Acme/`
2. `mkdir -p output/<FolderName>/`
3. Write session file to `output/<FolderName>/session_<name>.md`
4. All subsequent output files (from ALL skills) go in this folder
3. Copy JD file into output folder: `cp JDs/<filename> output/<FolderName>/`
4. Write session file to `output/<FolderName>/session_<name>.md`
5. All subsequent output files (from ALL skills) go in this folder
## Finalization (after /critique approval)
@@ -110,7 +111,11 @@ The tool is authoritative — never trust mental math for char counts. If the to
- `e2e_<name>_[resume|cv].tex` + `.pdf` + compile artifacts
- `e2e_<name>_cover_letter.tex` + `.pdf` + compile artifacts
- `critique_<name>.md`
2. Confirm to user: "Package complete in output/<FolderName>/ — [N] files"
2. Rename final PDFs for submission (derive name from `config.md` Personal Info):
- `cp e2e_<name>_[resume|cv].pdf <Firstname>_<Lastname>_[Resume|CV].pdf`
- `cp e2e_<name>_cover_letter.pdf <Firstname>_<Lastname>_Cover_Letter.pdf`
- Keep originals alongside
3. Confirm to user: "Package complete in output/<FolderName>/ — [N] files"
---