Skip to content

Commit 7b461a8

Browse files
committed
Polish delivery PDF rendering section
1 parent ad9d731 commit 7b461a8

2 files changed

Lines changed: 17 additions & 6 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Part of the CompleteTech LLC agentic services skill library. This skill supports
1313
## OpenClaw / ClawHub Metadata
1414

1515
- Skill key: `agentic-delivery-skill`
16-
- Version-ready metadata: `1.0.8`
16+
- Version-ready metadata: `1.0.9`
1717
- Homepage: https://github.com/CompleteTech-LLC/agentic-delivery-skill
1818
- README: https://github.com/CompleteTech-LLC/agentic-delivery-skill#readme
1919
- Runtime binaries: `python3`

SKILL.md

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: agentic-delivery-skill
33
description: >-
44
Create CompleteTech LLC delivery execution artifacts for approved agentic development engagements, including kickoff agendas, access checklists, project plans, milestone trackers, status updates, decision logs, risk/issue logs, change request intake, prototype review, evaluation reports, acceptance packets, launch readiness, monitoring, support, handoff, runbooks, quickstarts, closeout, post-launch review, and escalation procedures. Use after proposal/SOW or contract approval when Codex needs to run bounded agentic workflow delivery cleanly.
5-
version: 1.0.8
5+
version: 1.0.9
66
metadata:
77
openclaw:
88
skillKey: agentic-delivery-skill
@@ -128,25 +128,36 @@ Choose by the current operational event first.
128128

129129
## Rendering to a Branded PDF
130130

131-
Artifacts from this skill are delivered as branded CompleteTech LLC **PDF** documents. The renderer can emit PDF, Markdown, and optional PNG preview in one local command:
131+
| Render Goal | Use |
132+
|---|---|
133+
| Primary artifact | Branded CompleteTech LLC delivery PDF. |
134+
| Optional outputs | Markdown source and PNG preview from the same local command. |
135+
| Delivery boundary | PDF output is still a delivery draft until approval evidence is recorded. |
136+
137+
One-command delivery artifact render:
132138

133139
```bash
134140
pip install -r requirements.txt
135141
python3 scripts/render_delivery.py --template launch-readiness-checklist \
136142
--out artifact.pdf --png artifact.png \
143+
--markdown-out artifact.md \
137144
--title "Launch Readiness Checklist" --doc-type "DELIVERY ARTIFACT" \
138-
--subtitle "Northwind Trading Co. — Support Email Triage Agent (Pilot)" --meta "DOCUMENT NO.=DEL-2026-0233" --meta "DATE=2026-06-12" \
145+
--subtitle "Northwind Trading Co. - Support Email Triage Agent (Pilot)" \
146+
--meta "DOCUMENT NO.=DEL-2026-0233" --meta "DATE=2026-06-12" \
139147
--var client_name="Client Name" --var workflow="support triage"
140148
```
141149

142-
| Output Need | Use |
150+
| Output Option | Flag |
143151
|---|---|
144152
| Branded PDF | `--out artifact.pdf` |
145153
| PNG preview | `--png artifact.png` |
146154
| Markdown source | `--markdown-out artifact.md` |
147155
| Markdown only | `--no-pdf` |
148156
| No cover page | `--no-cover` |
149-
| Existing delivery Markdown to PDF | `python3 scripts/render_pdf.py --markdown artifact.md --out artifact.pdf --logo assets/logo.png --title "Launch Readiness Checklist" --doc-type "DELIVERY ARTIFACT"` |
157+
158+
| Existing Markdown Render | Command |
159+
|---|---|
160+
| Convert delivery Markdown to PDF | `python3 scripts/render_pdf.py --markdown artifact.md --out artifact.pdf --logo assets/logo.png --title "Launch Readiness Checklist" --doc-type "DELIVERY ARTIFACT"` |
150161

151162
| Rendering Support | Details |
152163
|---|---|

0 commit comments

Comments
 (0)