Skip to content

Commit ccddc46

Browse files
committed
Normalize line endings
1 parent 1461ec6 commit ccddc46

2 files changed

Lines changed: 254 additions & 254 deletions

File tree

SKILL.md

Lines changed: 110 additions & 110 deletions
Original file line numberDiff line numberDiff line change
@@ -1,110 +1,110 @@
1-
---
2-
name: agentic-delivery-skill
3-
description: >-
4-
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.0
6-
metadata:
7-
openclaw:
8-
skillKey: agentic-delivery-skill
9-
homepage: https://github.com/CompleteTech-LLC/agentic-delivery-skill
10-
requires:
11-
bins:
12-
- python3
13-
---
14-
15-
# Agentic Delivery Skill
16-
17-
## Purpose
18-
19-
Create delivery execution artifacts for CompleteTech LLC agentic development engagements after a proposal/SOW or contract is approved.
20-
21-
## System Boundary
22-
23-
This skill owns execution after commercial approval: kickoff, project control, evaluation, launch preparation, handoff, and support artifacts. Use `agentic-proposal-skill` for unapproved commercial scope, `agentic-contract-skill` for legal agreement artifacts, `agentic-security-review-skill` for security or production-readiness review, `agentic-invoice-skill` for billing, `agentic-customer-success-skill` for relationship health and renewal, and `agentic-case-study-skill` only after outcomes are verified and approved for proof.
24-
25-
## Core Workflow
26-
27-
1. Identify the delivery need: kickoff, access, planning, status, decisions, risk/issue, change request, prototype review, evaluation, acceptance, launch, monitoring, support, handoff, closeout, or escalation.
28-
2. Gather verified facts: approved scope, workflow, owners, timeline, milestones, systems, approval gates, evaluation examples, risks, dependencies, support expectations, and acceptance criteria.
29-
3. Use `references/use-case-decision-table.md` to choose the right delivery artifact.
30-
4. Use `references/delivery-positioning.md` for CompleteTech LLC delivery framing and guardrails.
31-
5. Use `references/delivery-catalog.md` for the near-exhaustive delivery artifact library.
32-
6. Keep delivery practical and bounded. Do not fabricate client facts, approvals, test results, metrics, regulated-use assurances, legal claims, or production readiness.
33-
34-
## Artifact Selection Guide
35-
36-
- First meeting after signature: use `kickoff-agenda`.
37-
- Need client systems/docs/API access: use `client-access-checklist`.
38-
- Need execution structure: use `project-plan`.
39-
- Tracking milestone progress: use `milestone-tracker`.
40-
- Regular client update: use `weekly-status-update`.
41-
- Capturing decisions: use `decision-log`.
42-
- Capturing risks or active issues: use `risk-and-issue-log`.
43-
- Scope change request: use `change-request-intake`.
44-
- Blocking prerequisites: use `dependency-tracker`.
45-
- Communication cadence: use `stakeholder-communication-plan`.
46-
- Prototype review: use `prototype-review-checklist`.
47-
- Evaluation run: use `evaluation-run-report`.
48-
- Test summary: use `test-results-summary`.
49-
- Formal acceptance: use `acceptance-review-packet`.
50-
- Launch preparation: use `launch-readiness-checklist`.
51-
- Observability requirements: use `monitoring-plan`.
52-
- Post-handoff help: use `support-plan`.
53-
- Handoff preparation: use `handoff-checklist`.
54-
- Admin/operator documentation: use `administrator-runbook`.
55-
- Reviewer or user training: use `user-reviewer-quickstart`.
56-
- After launch: use `post-launch-review`.
57-
- Retrospective: use `lessons-learned`.
58-
- Project close: use `closeout-summary`.
59-
- Incoming support request: use `support-ticket-intake`.
60-
- Escalation path: use `escalation-procedure`.
61-
- Deployment-specific rollout: use `deployment-runbook`.
62-
- Acceptance defects: use `defect-remediation-plan`.
63-
- Client training session: use `training-session-plan`.
64-
65-
When several artifacts fit, choose the one closest to the operational event. Do not mark launch-ready, accepted, or complete unless the verified evidence supports it.
66-
67-
## Quality Rules
68-
69-
- Execute the approved scope; route new scope into change request intake.
70-
- Protect human approval gates for external communications, production changes, purchases, data export, and material business decisions.
71-
- Track decisions, risks, issues, dependencies, and acceptance evidence explicitly.
72-
- Verify evaluation examples before acceptance.
73-
- Document logs, monitoring, runbooks, quickstarts, support, and handoff.
74-
- Use `TBD` or open questions for unknowns.
75-
76-
## Resource Guide
77-
78-
- `references/delivery-positioning.md`: load for CompleteTech LLC delivery language and boundaries.
79-
- `references/use-case-decision-table.md`: load when choosing a delivery artifact.
80-
- `references/delivery-lifecycle.md`: load for flow from kickoff through support and closeout.
81-
- `references/delivery-catalog.md`: load for the near-exhaustive delivery template library.
82-
- `references/template-index.json`: machine-readable template metadata used by the renderer.
83-
- `scripts/render_delivery.py`: list delivery artifacts or render a draft with placeholders.
84-
85-
## Renderer
86-
87-
```bash
88-
python3 scripts/render_delivery.py --list
89-
python3 scripts/render_delivery.py --stage status --list
90-
python3 scripts/render_delivery.py --template kickoff-agenda --var client_name=Acme --var workflow="support triage"
91-
```
92-
93-
Rendered artifacts are drafts. Replace placeholders with verified project facts before sending or storing them.
94-
95-
## Rendering to a Branded PDF
96-
97-
Artifacts from this skill are delivered as branded CompleteTech LLC **PDF** documents, not raw Markdown. The renderer emits the PDF (and prints the Markdown) in **one command**, using the same reportlab branding engine as the contract skill:
98-
99-
```bash
100-
pip install -r requirements.txt
101-
python3 scripts/render_delivery.py --template launch-readiness-checklist \
102-
--out artifact.pdf --png artifact.png \
103-
--title "Launch Readiness Checklist" --doc-type "DELIVERY ARTIFACT" \
104-
--subtitle "Northwind Trading Co. — Support Email Triage Agent (Pilot)" --meta "DOCUMENT NO.=DEL-2026-0233" --meta "DATE=2026-06-12" \
105-
--var client_name="Client Name" --var workflow="support triage"
106-
```
107-
108-
- `--no-pdf` emits Markdown only (the original behavior); `--no-cover` drops the cover page.
109-
- Already drafted the Markdown yourself? Render it directly: `python3 scripts/render_pdf.py --markdown artifact.md --out artifact.pdf --logo assets/logo.png --title "..."`.
110-
- The PDF supports a Markdown subset: `#`/`##`/`###` headings, paragraphs, `-` bullets, tables, `>` callouts, `**bold**`, and `[PAGE_BREAK]`. PDF requires `reportlab`; the optional `--png` preview requires `pypdfium2` and `pillow`. See `assets/examples/` for a rendered example.
1+
---
2+
name: agentic-delivery-skill
3+
description: >-
4+
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.0
6+
metadata:
7+
openclaw:
8+
skillKey: agentic-delivery-skill
9+
homepage: https://github.com/CompleteTech-LLC/agentic-delivery-skill
10+
requires:
11+
bins:
12+
- python3
13+
---
14+
15+
# Agentic Delivery Skill
16+
17+
## Purpose
18+
19+
Create delivery execution artifacts for CompleteTech LLC agentic development engagements after a proposal/SOW or contract is approved.
20+
21+
## System Boundary
22+
23+
This skill owns execution after commercial approval: kickoff, project control, evaluation, launch preparation, handoff, and support artifacts. Use `agentic-proposal-skill` for unapproved commercial scope, `agentic-contract-skill` for legal agreement artifacts, `agentic-security-review-skill` for security or production-readiness review, `agentic-invoice-skill` for billing, `agentic-customer-success-skill` for relationship health and renewal, and `agentic-case-study-skill` only after outcomes are verified and approved for proof.
24+
25+
## Core Workflow
26+
27+
1. Identify the delivery need: kickoff, access, planning, status, decisions, risk/issue, change request, prototype review, evaluation, acceptance, launch, monitoring, support, handoff, closeout, or escalation.
28+
2. Gather verified facts: approved scope, workflow, owners, timeline, milestones, systems, approval gates, evaluation examples, risks, dependencies, support expectations, and acceptance criteria.
29+
3. Use `references/use-case-decision-table.md` to choose the right delivery artifact.
30+
4. Use `references/delivery-positioning.md` for CompleteTech LLC delivery framing and guardrails.
31+
5. Use `references/delivery-catalog.md` for the near-exhaustive delivery artifact library.
32+
6. Keep delivery practical and bounded. Do not fabricate client facts, approvals, test results, metrics, regulated-use assurances, legal claims, or production readiness.
33+
34+
## Artifact Selection Guide
35+
36+
- First meeting after signature: use `kickoff-agenda`.
37+
- Need client systems/docs/API access: use `client-access-checklist`.
38+
- Need execution structure: use `project-plan`.
39+
- Tracking milestone progress: use `milestone-tracker`.
40+
- Regular client update: use `weekly-status-update`.
41+
- Capturing decisions: use `decision-log`.
42+
- Capturing risks or active issues: use `risk-and-issue-log`.
43+
- Scope change request: use `change-request-intake`.
44+
- Blocking prerequisites: use `dependency-tracker`.
45+
- Communication cadence: use `stakeholder-communication-plan`.
46+
- Prototype review: use `prototype-review-checklist`.
47+
- Evaluation run: use `evaluation-run-report`.
48+
- Test summary: use `test-results-summary`.
49+
- Formal acceptance: use `acceptance-review-packet`.
50+
- Launch preparation: use `launch-readiness-checklist`.
51+
- Observability requirements: use `monitoring-plan`.
52+
- Post-handoff help: use `support-plan`.
53+
- Handoff preparation: use `handoff-checklist`.
54+
- Admin/operator documentation: use `administrator-runbook`.
55+
- Reviewer or user training: use `user-reviewer-quickstart`.
56+
- After launch: use `post-launch-review`.
57+
- Retrospective: use `lessons-learned`.
58+
- Project close: use `closeout-summary`.
59+
- Incoming support request: use `support-ticket-intake`.
60+
- Escalation path: use `escalation-procedure`.
61+
- Deployment-specific rollout: use `deployment-runbook`.
62+
- Acceptance defects: use `defect-remediation-plan`.
63+
- Client training session: use `training-session-plan`.
64+
65+
When several artifacts fit, choose the one closest to the operational event. Do not mark launch-ready, accepted, or complete unless the verified evidence supports it.
66+
67+
## Quality Rules
68+
69+
- Execute the approved scope; route new scope into change request intake.
70+
- Protect human approval gates for external communications, production changes, purchases, data export, and material business decisions.
71+
- Track decisions, risks, issues, dependencies, and acceptance evidence explicitly.
72+
- Verify evaluation examples before acceptance.
73+
- Document logs, monitoring, runbooks, quickstarts, support, and handoff.
74+
- Use `TBD` or open questions for unknowns.
75+
76+
## Resource Guide
77+
78+
- `references/delivery-positioning.md`: load for CompleteTech LLC delivery language and boundaries.
79+
- `references/use-case-decision-table.md`: load when choosing a delivery artifact.
80+
- `references/delivery-lifecycle.md`: load for flow from kickoff through support and closeout.
81+
- `references/delivery-catalog.md`: load for the near-exhaustive delivery template library.
82+
- `references/template-index.json`: machine-readable template metadata used by the renderer.
83+
- `scripts/render_delivery.py`: list delivery artifacts or render a draft with placeholders.
84+
85+
## Renderer
86+
87+
```bash
88+
python3 scripts/render_delivery.py --list
89+
python3 scripts/render_delivery.py --stage status --list
90+
python3 scripts/render_delivery.py --template kickoff-agenda --var client_name=Acme --var workflow="support triage"
91+
```
92+
93+
Rendered artifacts are drafts. Replace placeholders with verified project facts before sending or storing them.
94+
95+
## Rendering to a Branded PDF
96+
97+
Artifacts from this skill are delivered as branded CompleteTech LLC **PDF** documents, not raw Markdown. The renderer emits the PDF (and prints the Markdown) in **one command**, using the same reportlab branding engine as the contract skill:
98+
99+
```bash
100+
pip install -r requirements.txt
101+
python3 scripts/render_delivery.py --template launch-readiness-checklist \
102+
--out artifact.pdf --png artifact.png \
103+
--title "Launch Readiness Checklist" --doc-type "DELIVERY ARTIFACT" \
104+
--subtitle "Northwind Trading Co. — Support Email Triage Agent (Pilot)" --meta "DOCUMENT NO.=DEL-2026-0233" --meta "DATE=2026-06-12" \
105+
--var client_name="Client Name" --var workflow="support triage"
106+
```
107+
108+
- `--no-pdf` emits Markdown only (the original behavior); `--no-cover` drops the cover page.
109+
- Already drafted the Markdown yourself? Render it directly: `python3 scripts/render_pdf.py --markdown artifact.md --out artifact.pdf --logo assets/logo.png --title "..."`.
110+
- The PDF supports a Markdown subset: `#`/`##`/`###` headings, paragraphs, `-` bullets, tables, `>` callouts, `**bold**`, and `[PAGE_BREAK]`. PDF requires `reportlab`; the optional `--png` preview requires `pypdfium2` and `pillow`. See `assets/examples/` for a rendered example.

0 commit comments

Comments
 (0)