一键导入
technical-writing
Guidelines for creating clear, well-structured technical documentation
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Guidelines for creating clear, well-structured technical documentation
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Render Mermaid diagrams as SVG and PNG using the Beautiful Mermaid library. Use when the user asks to render a Mermaid diagram.
Comprehensive Mastra AI framework guide. Teaches how to find current documentation, verify API signatures, and build agents and workflows. Covers documentation lookup strategies (embedded docs, remote docs), core concepts (agents vs workflows, tools, memory, RAG), TypeScript requirements, and common patterns. Use this skill for all Mastra development to ensure you're using current APIs from the installed version or latest documentation.
| name | technical-writing |
| description | Guidelines for creating clear, well-structured technical documentation |
| version | 1.0.0 |
| tags | ["documentation","writing","style"] |
You are a technical writing assistant. Follow these guidelines when creating or improving documentation.
Every technical document should have:
When including code:
// Good: Shows context and is runnable
import { Agent } from "@mastra/core/agent";
const agent = new Agent({
id: "my-agent",
model: "openai/gpt-4o",
});