Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add gmomakeshop/agent-skills --skill creator-mode-designgit clone --depth 1 https://github.com/gmomakeshop/agent-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/gmomakeshop/agent-skills/creator-mode-design)<a href="https://agentmods.dev/skills/gmomakeshop/agent-skills/creator-mode-design"><img src="https://agentmods.dev/badge/skills/gmomakeshop/agent-skills/creator-mode-design/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/gmomakeshop/agent-skills/creator-mode-design"><img src="https://agentmods.dev/badge/skills/gmomakeshop/agent-skills/creator-mode-design.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00076 | $0.04957 |
| Opus 5 | $0.00038 | $0.02478 |
| Sonnet 5 | $0.00015 | $0.00991 |
| Haiku 4.5 | $0.00008 | $0.00496 |
Grade A, and why
creator-mode-design scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 210 lines — stays where its author put it; the contents beside it link to each section on GitHub.
クリエイターモードデザインスキル
makeshop byGMOでショップデザインを行うスキル。
クリエイターモードデザインファイル構成
.
├── config.json デザインセットの設定。レスポンシブ対応、モジュール一覧、フリーページ定義を持つ(必須)
├── _module_/ makeshopがデフォルトで用意している各ページとショップ様が自由に追加できるページから <{$module.xxx}> で呼び出せるモジュール
│ ├── header.html 全ページ共通のヘッダー。HTMLの定義のみ。CSS、JavaScriptは定義できない。(必須)
│ ├── footer.html 全ページ共通のフッター。HTMLの定義のみ。CSS、JavaScriptは定義できない。(必須)
│ ├── design_token.html 全ページ共通のデザイントークン。HTMLの定義のみ。CSS、JavaScriptは定義できない。(必須)
│ └── xxx.html 任意のパーツ。HTMLの定義のみ。CSS、JavaScriptは定義できない。
└── standard/
├── html/ makeshopがデフォルトで用意している各ページのHTML
│ ├── bulk.html まとめ買い割引ページのHTML
│ ├── cart.html 買い物カゴページのHTML(必須)
│ ├── catalog.html カタログページのHTML
│ ├── category.html 商品カテゴリーページのHTML(必須)
│ ├── company.html 会社概要ページのHTML(必須)
│ ├── contract.html 特定商取引法ページのHTML(必須)
│ ├── guide.html 利用案内ページのHTML(必須)
│ ├── item.html 商品詳細ページのHTML(必須)
│ ├── news-detail.html お知らせ詳細ページのHTML
│ ├── news-list.html お知らせ一覧ページのHTML
│ ├── policy.html プライバシーポリシーページのHTML(必須)
│ ├── review-list.html 商品レビュー一覧ページのHTML
│ ├── review-post.html 商品レビュー投稿ページのHTML
│ ├── search.html 商品検索結果ページのHTML(必須)
│ ├── top.html トップページのHTML(必須)
│ └── verification.html 会員制/年齢確認ページのHTML
├── css/ makeshopがデフォルトで用意しているページのCSS
│ ├── bulk.css まとめ買い割引ページのCSS
│ ├── cart.css 買い物カゴページのCSS
│ ├── catalog.css カタログページのCSS
│ ├── category.css 商品カテゴリーページのCSS
│ ├── company.css 会社概要ページのCSS
│ ├── contract.css 特定商取引法ページのCSS
│ ├── guide.css 利用案内ページのCSS
│ ├── item.css 商品詳細ページのCSS
│ ├── news-detail.css お知らせ詳細ページのCSS
│ ├── news-list.css お知らせ一覧ページのCSS
│ ├── policy.css プライバシーポリシーページのCSS
│ ├── review-list.css 商品レビュー一覧ページのCSS
│ ├── review-post.css 商品レビュー投稿ページのCSS
│ ├── search.css 商品検索結果ページのCSS
│ ├── top.css トップページのCSS
│ └── verification.css 会員制/年齢確認ページのCSS
├── javascript/ makeshopがデフォルトで用意している各ページのJavaScript
│ ├── bulk.js まとめ買い割引ページのJavaScript
│ ├── cart.js 買い物カゴページのJavaScript
│ ├── catalog.js カタログページのJavaScript
│ ├── category.js 商品カテゴリーページのJavaScript
│ ├── company.js 会社概要ページのJavaScript
│ ├── contract.js 特定商取引法ページのJavaScript
│ ├── guide.js 利用案内ページのJavaScript
│ ├── item.js 商品詳細ページのJavaScript
│ ├── news-detail.js お知らせ詳細ページのJavaScript
│ ├── news-list.js お知らせ一覧ページのJavaScript
│ ├── policy.js プライバシーポリシーページのJavaScript
│ ├── review-list.js 商品レビュー一覧ページのJavaScript
│ ├── review-post.js 商品レビュー投稿ページのJavaScript
│ ├── search.js 商品検索結果ページのJavaScript
│ ├── top.js トップページのJavaScript
│ └── verification.js 会員制/年齢確認ページのJavaScript
└── freepage/ ショップ様が自由に追加できるページ
└── xxx.html HTMLの定義のみ。CSS、JavaScriptは定義できない。
What ships with it
43 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- references/config-json-reference.md 1.2 KB
- references/design-reference.md 4.4 KB
- references/module-reference-design-token.md 1.3 KB
- references/module-reference-footer.md 990 B
- references/module-reference-header.md 1.5 KB
- references/page-reference-bulk.md 833 B
- references/page-reference-cart.md 2.4 KB
- references/page-reference-catalog.md 847 B
- references/page-reference-category.md 2.2 KB
- references/page-reference-company.md 955 B
- references/page-reference-contract.md 863 B
- references/page-reference-guide.md 961 B
- references/page-reference-item.md 3.0 KB
- references/page-reference-news-detail.md 752 B
- references/page-reference-news-list.md 924 B
- references/page-reference-policy.md 990 B
- references/page-reference-review-list.md 1.8 KB
- references/page-reference-review-post.md 1.5 KB
- references/page-reference-search.md 2.2 KB
- references/page-reference-top.md 3.0 KB
- references/page-reference-verification.md 881 B
- references/setup-reference.md 1.2 KB
- references/smarty-reference.md 4.4 KB
- references/troubleshooting.md 3.8 KB
- scripts/build.ps1 2.3 KB runs code
- scripts/build.sh 1.1 KB runs code
- templates/standard/html/bulk.html 1.3 KB
- templates/standard/html/cart.html 1.3 KB
- templates/standard/html/catalog.html 1.3 KB
- templates/standard/html/category.html 1.3 KB
- templates/standard/html/company.html 1.3 KB
- templates/standard/html/contract.html 1.3 KB
- templates/standard/html/guide.html 1.3 KB
- templates/standard/html/item.html 1.3 KB
- templates/standard/html/news-detail.html 1.3 KB
- templates/standard/html/news-list.html 1.3 KB
- templates/standard/html/policy.html 1.3 KB
- templates/standard/html/review-list-ukomi.html 1.3 KB
- templates/standard/html/review-list.html 1.3 KB
- templates/standard/html/review-post.html 1.3 KB
- templates/standard/html/search.html 1.3 KB
- templates/standard/html/top.html 1.3 KB
- templates/standard/html/verification.html 1.3 KB
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- yesterday Changed · -8 lines scan C → A b7672f7c0efe
- 7d ago Changed · +11 lines 3b475b8038d9
- 12d ago First seen · 207 lines · 76 tokens per session scan C 2b8c95716aa9
creator-mode-design is a skill published in the GitHub repository gmomakeshop/agent-skills (2 stars, last pushed 2d ago), licensed MIT. It adds 76 tokens to every session and 4,957 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
e-commerce-retail
Use when designing animations for shopping apps, product catalogs, checkout flows, or retail experiences.
shopify-polaris-app-home
Build your app's primary user interface embedded in the Shopify admin. If the prompt just mentions Polaris and you can't tell based off of the context what API they meant, assume they meant this API.
frontend-design
Guidance for distinctive, intentional visual design when building new UI or reshaping an existing one. Helps with aesthetic direction, typography, and making choices that don't read as templated defaults.
visual-plan
Turn ordinary text plans into rich interactive visual plans with diagrams, file maps, annotated code, open questions, and UI/prototype review when useful.
visual-edit
Open a running local app in Design overview mode as URL-backed iframe screens for visual editing, flow review, duplication, and route-state exploration. Use when the user asks to inspect, compare, or edit a real local app visually in Design.
muapi-ui-design
Generate high-fidelity UI/UX mockups for mobile and web apps using Atomic Design principles — creates wireframes and design systems via muapi.ai.