원클릭으로
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 |