ワンクリックで
markdown
Enforces standards for writing Markdown, including using markdownlint for formatting and Mermaid for diagrams.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Enforces standards for writing Markdown, including using markdownlint for formatting and 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.
Creates clear, concise, and well-structured technical documentation, enforcing standards like markdownlint and using Mermaid for diagrams.
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.
Generates PromQL queries and metadata for Grafana panels. Use when asked about Grafana metrics, dashboards, or visualizations.
| name | markdown |
| description | Enforces standards for writing Markdown, including using markdownlint for formatting and Mermaid for diagrams. |
This skill ensures that all generated Markdown content follows established best practices for formatting and diagramming.
When writing or editing Markdown content, you MUST adhere to the following rules:
mermaid code block.User Prompt:
Please create a simple diagram showing a client-server request-response cycle.
Your Response:
Here is a sequence diagram representing a client-server interaction:
```mermaid
sequenceDiagram
participant Client
participant Server
Client->>Server: HTTP GET /api/data
activate Server
Server-->>Client: JSON { data: "..." }
deactivate Server