-
Notifications
You must be signed in to change notification settings - Fork 521
use cases word memo
Persona: Marketing Manager | Difficulty: Beginner | Tags:
wordcreatemarketing
Go from a quick brief to a polished, ready-to-send memo without opening Word.
Download: nexora-pulse-memo.docx · nexora-pulse-memo.py

See also: Add Paragraphs · Batch Commands · Find & Replace · Create a Document
User:
Hey, I need to put together a quick internal memo for the team about our new product launch. We're launching "Nexora Pulse" — it's our new customer analytics dashboard — on April 22nd. The memo should be addressed to the whole company, from me (Sarah Chen, Marketing Manager), and just cover the key points: what the product is, the launch date, and that there's a company-wide demo on April 18th at 2pm. Keep it short and professional, maybe like half a page. Can you create that for me?
Agent creates the file and builds the full memo in one batch:
Show commands (20 commands)
officecli create nexora-pulse-memo.docx
officecli set nexora-pulse-memo.docx '/' --prop title="Internal Memo – Nexora Pulse Launch" --prop author="Sarah Chen"
officecli add nexora-pulse-memo.docx '/body' --type paragraph \
--prop text="INTERNAL MEMO" \
--prop style=Heading1 \
--prop align=center
officecli add nexora-pulse-memo.docx '/body' --type paragraph --prop text=
officecli add nexora-pulse-memo.docx '/body' --type paragraph --prop text="To: All Company Staff"
officecli add nexora-pulse-memo.docx '/body' --type paragraph --prop text="From: Sarah Chen, Marketing Manager"
officecli add nexora-pulse-memo.docx '/body' --type paragraph --prop text="Date: April 5, 2026"
officecli add nexora-pulse-memo.docx '/body' --type paragraph --prop text="Re: Nexora Pulse Product Launch"
officecli add nexora-pulse-memo.docx '/body' --type paragraph --prop text=
officecli add nexora-pulse-memo.docx '/body' --type paragraph --prop text="We are excited to announce the upcoming launch of Nexora Pulse, our new customer analytics dashboard designed to provide real-time insights and help our teams make data-driven decisions faster than ever."
officecli add nexora-pulse-memo.docx '/body' --type paragraph --prop text=
officecli add nexora-pulse-memo.docx '/body' --type paragraph --prop text="Launch Date: Nexora Pulse will officially go live on April 22nd. Mark your calendars!"
officecli add nexora-pulse-memo.docx '/body' --type paragraph --prop text=
officecli add nexora-pulse-memo.docx '/body' --type paragraph --prop text="Company-Wide Demo: Join us on April 18th at 2:00 PM for a live walkthrough of the platform. This is a great opportunity to see Nexora Pulse in action, ask questions, and get familiar with the features before launch. All staff are encouraged to attend."
officecli add nexora-pulse-memo.docx '/body' --type paragraph --prop text=
officecli add nexora-pulse-memo.docx '/body' --type paragraph --prop text="We look forward to sharing this milestone with the entire team. Please reach out to the Marketing team if you have any questions in the meantime."
officecli add nexora-pulse-memo.docx '/body' --type paragraph --prop text=
officecli add nexora-pulse-memo.docx '/body' --type paragraph --prop text="Best regards,"
officecli add nexora-pulse-memo.docx '/body' --type paragraph --prop text="Sarah Chen"
officecli add nexora-pulse-memo.docx '/body' --type paragraph --prop text="Marketing Manager"User:
This looks great! Just one small thing — can you change the demo time to 3pm instead of 2pm? Everything else is perfect.
Agent finds and replaces the time across the document:
officecli set nexora-pulse-memo.docx '/' --prop find="2:00 PM" --prop replace="3:00 PM"Based on OfficeCLI v1.0.34