一键导入
translate-doc
Translate an English document into Japanese, preserving headings, lists, and code blocks.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Translate an English document into Japanese, preserving headings, lists, and code blocks.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Make a folder of the operator's own documents (txt/md/pdf/xlsx/pptx/docx) searchable by meaning via a user-named sqlite vector store. Covers installing the `rag` plugin, embedding-provider setup, the exact `rag_ingest`/`rag_query` pipeline calls, and corpus internals -- via bundled references. Read this before running the builtin `rag_ingest` / `rag_query` pipelines, or when the operator asks you to search a folder/file of their own documents.
Reyn-specific usage cheat sheet -- which mechanism to reach for (skill/pipeline/mcp/hook/present), composition idioms, op essentials, and pointers to the full specs. Read this before authoring a new part or composing several.
How to build something that REACTS to an external system (an orchestrator, a watcher, a UI, any MCP server that pushes) -- which reyn mechanism already answers each requirement, and the anti-pattern list of things people re-invent. Read this BEFORE designing any external-event-driven plugin, server-push handling, wake/notification behaviour, or browser UI integration. Companion to reyn_cheat_sheet (which covers choosing between skill/pipeline/mcp/hook/present in general).
Draft an artifact, self-review it against your own checklist via a schema-validated agent step, and revise on failure -- the standard Evaluation-gated workflow for any "produce then check quality" task (a summary, a doc section, an email, a report paragraph). Read this before handing off a self-authored artifact you have not gated.
A minimal test skill that includes search_hints for FP-0024 Component B invariant tests.
| type | skill |
| name | translate_doc |
| description | Translate an English document into Japanese, preserving headings, lists, and code blocks. |
| entry | translate |
| final_output | translated_document |
| final_output_description | The Japanese rendering of the input document with structural elements preserved. |
| finish_criteria | ["The translate phase produced a translated_document artifact","Code blocks and inline code are unchanged from the source"] |
| graph | {"translate":[]} |
Single-phase document translator. Input is a user_message containing the
document text; output is a translated_document with language="ja".
Designed as a starting point — extend to other target languages by adding
a direction field on the input and branching in the phase prompt.