Install
openclaw skills install agentic-proposal-skillCreate CompleteTech LLC agentic development proposals, statements of work, discovery recaps, pilot recommendations, evaluation plans, risk/control plans, implementation roadmaps, acceptance criteria, change orders, retainer proposals, and procurement-ready scope summaries. Use when Codex needs to bridge outreach emails and signed contracts/invoices by drafting buyer-facing proposal or SOW-style documents for bounded agentic workflow services.
openclaw skills install agentic-proposal-skillCreate proposal and SOW-style sales documents for CompleteTech LLC agentic development engagements, from discovery recap through buyer approval.
This skill owns buyer-facing commercial scope before signature: proposals, SOW attachments, approval summaries, change-order proposals, and pilot recommendations. Use agentic-discovery-skill for upstream fact collection, agentic-contract-skill for agreement PDFs and legal-template artifacts, agentic-invoice-skill for payment requests, agentic-delivery-skill after approval, and agentic-email-skill only for the covering message that sends or follows up on the proposal.
references/use-case-decision-table.md to choose the right proposal type.references/proposal-positioning.md for brand language, scope boundaries, proof rules, and guardrails.references/proposal-catalog.md for near-exhaustive templates.discovery-recap.one-page-pilot-proposal.full-agentic-development-proposal.statement-of-work.fixed-fee-pilot-proposal.time-and-materials-proposal.monthly-retainer-proposal.advisory-only-proposal.workflow-assessment-proposal.implementation-roadmap.evaluation-plan.risk-control-plan.human-in-the-loop-approval-model.change-order-proposal.expansion-second-workflow-proposal.procurement-ready-scope-summary.executive-summary.acceptance-criteria.assumptions-and-exclusions.support-and-handoff-plan.post-discovery-recommended-pilot-memo.technical-architecture-proposal.data-and-tooling-readiness-proposal.training-enablement-proposal.proof-of-concept-proposal.production-rollout-proposal.When several templates fit, choose by buyer decision need first, then stage, then document length. If the buyer has not agreed on a workflow and success criteria, do not jump to a full SOW; use discovery recap, assessment, or pilot recommendation first.
TBD or ask for facts rather than inventing client details, legal terms, metrics, or proof.references/proposal-positioning.md: load for CompleteTech LLC offer framing, language, proof rules, and boundaries.references/use-case-decision-table.md: load when deciding which document type to use.references/proposal-lifecycle.md: load for end-to-end flow from discovery through contract/invoice handoff.references/proposal-catalog.md: load for the near-exhaustive proposal/SOW template library.references/template-index.json: machine-readable template metadata used by the renderer.scripts/render_proposal.py: list proposal templates or render a draft with placeholders.python3 scripts/render_proposal.py --list
python3 scripts/render_proposal.py --stage pilot --list
python3 scripts/render_proposal.py --template one-page-pilot-proposal --var client_name=Acme --var workflow="support triage"
Rendered templates are drafts. Replace placeholders with verified facts and refine the narrative for the buyer.
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:
pip install -r requirements.txt
python3 scripts/render_proposal.py --template one-page-pilot-proposal \
--out artifact.pdf --png artifact.png \
--title "Support Email Triage Agent — Pilot Proposal" --doc-type "PROPOSAL / STATEMENT OF WORK" \
--subtitle "Prepared for <b>Northwind Trading Co.</b>" --meta "PROPOSAL NO.=PRO-2026-0188" --meta "DATE=2026-05-20" \
--var client_name="Client Name" --var workflow="support triage"
--no-pdf emits Markdown only (the original behavior); --no-cover drops the cover page.python3 scripts/render_pdf.py --markdown artifact.md --out artifact.pdf --logo assets/logo.png --title "...".#/##/### 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.This skill is local-only. It does not include outbound network helpers, callbacks, or any helper that posts proposal run metadata to an external service.