一键导入
documentation-writer
Creates clear, concise, and well-structured technical documentation, enforcing standards like markdownlint and using Mermaid for diagrams.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Creates clear, concise, and well-structured technical documentation, enforcing standards like markdownlint and using Mermaid for diagrams.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Drafts professional, "Short & Punchy" Slack messages for library announcements and project updates. Use this skill when announcing new versions, features, or improvements to Diagnostics or other libraries in general or product-facing channels.
Helps write impactful and professional announcements for the `#foundation-releases-feed` Slack channel. Use when Yasmin needs to announce a new release, tool, or update from the Cloud Insights Foundation team.
A skill to help study Data Structures and Algorithms. It provides clarifying questions, multiple solutions with complexity analysis in JavaScript, and test cases for a given problem.
Enforces standards for writing Markdown, including using markdownlint for formatting and Mermaid for diagrams.
Generates PromQL queries and metadata for Grafana panels. Use when asked about Grafana metrics, dashboards, or visualizations.
| name | documentation-writer |
| description | Creates clear, concise, and well-structured technical documentation, enforcing standards like markdownlint and using Mermaid for diagrams. |
This skill specializes in creating high-quality technical documentation. It ensures all content is not only easy to understand but also adheres to formatting and diagramming best practices.
When generating or updating documentation, you MUST adhere to the following rules:
Mermaid syntax inside a mermaid code block.User Prompt:
Please create a documentation page for our
auth-service. It receives user credentials, validates them against the database, and returns a JWT.
Your Response:
# Service: auth-service
## Overview
The `auth-service` is responsible for handling user authentication. It validates user credentials and issues JSON Web Tokens (JWTs) for use with other services.
### Key Responsibilities
- Receives login requests (e.g., username and password).
- Validates credentials against the user database.
- Generates a signed JWT upon successful validation.
- Returns the JWT to the client.
### Authentication Flow
```mermaid
sequenceDiagram
participant Client
participant AuthService as auth-service
participant UserDB as User Database
Client->>AuthService: POST /login (credentials)
activate AuthService
AuthService->>UserDB: Verify credentials
activate UserDB
UserDB-->>AuthService: Credentials OK
deactivate UserDB
AuthService->>AuthService: Generate JWT
AuthService-->>Client: 200 OK (JWT)
deactivate AuthService
```