一键导入
text-to-docx
Converts plain text files (.txt) to Microsoft Word documents (.docx). Use when you need to create a formatted document from raw text.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Converts plain text files (.txt) to Microsoft Word documents (.docx). Use when you need to create a formatted document from raw text.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Create or edit SVG diagrams that must remain editable in diagrams.net/draw.io or the drawio-obsidian plugin, instead of becoming plain static SVG images.
Explain a codebase in four modes: `framework` produces a high-level architecture walkthrough saved to `codebase-walkthrough[-<slug>].md`; `impl <path>` explains a specific implementation saved to `codebase-impl-<slug>.md`; `run <identifier>` explains a specific execution run by tracing code + logs, saved to `codebase-run-<slug>.md`; `debug [<identifier>] [<question>]` diagnoses failures and verifies fixes, saved to `codebase-debug-<slug>.md`. `<slug>` is a short (≤12 chars) tag derived from the identifier so repeated runs don't overwrite each other.
Analyzes the current AXRD tmux session by using the shared TMA mechanism from $HOME/farside/AGENTS.md: one top-level summary TMA Agent summarizes the run, and one workspace TMA analysis Agent deeply analyzes each AXRD workspace.
Create or refine concise skills for task-specific TMA Agent collaboration systems. Use when the user wants to turn a tmux multi-agent workflow into a reusable skill, or update an existing TMA skill based on what happened during one of its invocations. Shared TMA creation/communication conventions live in $HOME/farside/AGENTS.md.
Respawns tmux AI agent panes so they reload current authentication while preserving Codex sessions when possible. Use when Codex panes are logged into an old account, stale after auth changes, or the user asks to refresh all AI windows in tmux.
For repo update tasks, pull the latest code first, then continue with the repo-appropriate local configuration or environment updates.
| name | text-to-docx |
| description | Converts plain text files (.txt) to Microsoft Word documents (.docx). Use when you need to create a formatted document from raw text. |
This skill converts plain text files into .docx format using the python-docx library. It preserves line breaks by creating a new paragraph for each line in the source file.
To convert a text file, execute the following command using uv:
XDG_CACHE_HOME=/tmp/.cache UV_CACHE_DIR=/tmp/.uv-cache \
uv run --with python-docx python3 ~/deploy/configs/llm/skills/text-to-docx/scripts/txt_to_docx.py <input_txt> <output_docx>
Convert a log file to Word:
XDG_CACHE_HOME=/tmp/.cache UV_CACHE_DIR=/tmp/.uv-cache \
uv run --with python-docx python3 ~/deploy/configs/llm/skills/text-to-docx/scripts/txt_to_docx.py notes.txt notes.docx
If uv fails because it cannot write to ~/.cache/uv, use temporary cache directories:
XDG_CACHE_HOME=/tmp/.cache UV_CACHE_DIR=/tmp/.uv-cache \
uv run --with python-docx python3 ~/deploy/configs/llm/skills/text-to-docx/scripts/txt_to_docx.py <input_txt> <output_docx>
If uv is not available, ensure python-docx is installed via pip:
pip install python-docx
python3 ~/deploy/configs/llm/skills/text-to-docx/scripts/txt_to_docx.py input.txt output.docx