APPEND_DOCX
Appends styled Markdown content to an existing .docx file. Supports the same formatting as CREATE_DOCX.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
path | string | yes | Absolute path to the existing .docx file |
content | string | yes | Markdown-formatted text to append. |
add_page_break | boolean | — | Add a page break before appending (default false) |
How to use it
You normally trigger this by describing what you want in chat — the agent selects APPEND_DOCX automatically. For example:
Try saying
“use docx handler to append …”
In a workflow
As a step in a multi-step workflow DAG:
json
{
"id": "s1",
"agent": "docx_handler",
"action": "APPEND_DOCX",
"args": {
"path": "/Users/me/Documents/file.txt",
"content": "…",
"add_page_break": true
},
"depends_on": [],
"outputs": []
}Direct call
For scripting, call it directly via POST /execute_tool. Every tool returns { success, message, data }.
bash
curl -X POST http://127.0.0.1:8000/execute_tool \
-H "Content-Type: application/json" \
-d '{"tool_name":"APPEND_DOCX","args":{"path":"/Users/me/Documents/file.txt","content":"…","add_page_break":true}}'Part of the docx_handler plugin. Browse the full Plugin & Tool Catalog or the relevant feature guide.