ワンクリックで
embroiderly-docs
Use when writing, editing, or restructuring a guide, reference page, or any content under the `docs/` directory.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use when writing, editing, or restructuring a guide, reference page, or any content under the `docs/` directory.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Use when the user wants to design or improve a module's interface, find deepening opportunities, decide where a seam goes, make code more testable or AI-navigable, or when another skill needs the deep-module vocabulary.
Use it to load and enforce domain glossary throughout the task.
Use this skill when adding, editing, or reorganizing translations in the main app.
Make changes to the UI Kit. Use this skill when you need to create new or update existing UI components, their themes, stories, or tests.
Verify code quality after making changes in this project. Use this skill whenever you've finished implementing a feature, fix, or refactor and need to run the verification pipeline.
Use when the user wants to stress-test a plan before building, or uses any 'grill' trigger phrases.
| name | embroiderly-docs |
| description | Use when writing, editing, or restructuring a guide, reference page, or any content under the `docs/` directory. |
Your task is to write a new guide or update an existing one (exclusively in English).
You may explore the codebase to understand the feature you are documenting.
To resolve UI label text from translation keys like $t("edit-palette"), read app/src/assets/locales/en.ftl.
docs/.vitepress/config.ts.
Locale-specific config (mainly, the navigation) is in docs/.vitepress/locales/en.ts.docs/en/ — work only here.docs/public/ — images must use absolute paths mirroring the content path.
Content at en/guide/filename.md → images at /images/guide/filename/<image>.jpg.These are constraints for our custom VitePress build. Violating them breaks the build or renders incorrectly.
Prohibited:
[[toc]], markdown file inclusions (@include).) and standalone <img> tags.Required:
Every page starts with YAML frontmatter containing description:
---
description: {Concise SEO-optimized description}.
---
For images, use only <figure> + <img> + <figcaption>:
<figure>
<img src="/images/guide/filename/example.jpg" />
<figcaption>Image description.</figcaption>
</figure>
GitHub-flavored admonitions (alerts) and standard HTML are allowed when necessary.
Voice and structure:
Correctness:
Vocabulary gotchas:
VitePress converts these automatically — write them as-is:
| Write | Renders as |
|---|---|
"text" | "text" (curly quotes) |
- | hyphen |
-- | en-dash |
--- | em-dash |
... | ellipsis |