Skip to main content

Google Docs Proposal Compiler

The Google Docs Compiler transforms local Markdown strategy blueprints directly into styled, production-ready Google Docs contracts and proposals.


Capabilities

  • Heading Hierarchy: Maps # and ## directly to native Google Docs HEADING_1 and HEADING_2 styles.
  • Formatted Callout Boxes: Renders blockquotes (>) into shaded, rounded callout containers.
  • Table of Contents & Formatting: Applies Space Grotesk / Inter font styling and custom primary accent colors.

CLI Usage

velox
# Select Option 3 (Create & Format Operational Blueprints)

Python Integration

from create_google_doc import GoogleDocCompiler

compiler = GoogleDocCompiler()
doc_url = compiler.compile_blueprint_to_doc(
title="Executive Strategy Proposal — ApexLogistics",
markdown_content="""
# Executive Summary
This proposal details the RevOps automation blueprint...

> **Key Impact**: Reduces lead triage latency from 4 hours to < 1 second.
"""
)

print(f"Generated Document: {doc_url}")