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 agentmods add skills/careerchain-ys/stdd/implementing-uinpx skills add careerchain-ys/stdd --skill implementing-uigit clone --depth 1 https://github.com/careerchain-ys/stddWrote 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/careerchain-ys/stdd/implementing-ui)<a href="https://agentmods.dev/skills/careerchain-ys/stdd/implementing-ui"><img src="https://agentmods.dev/badge/skills/careerchain-ys/stdd/implementing-ui.svg" alt="Measured on agentmods" 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 | $0.00098 | $0.04461 |
| Opus 5 | $0.00049 | $0.02230 |
| Sonnet 5 | $0.00020 | $0.00892 |
| Haiku 4.5 | $0.00010 | $0.00446 |
Grade A, and why
implementing-ui 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 4d ago.
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 — 451 lines — stays where its author put it; the contents beside it link to each section on GitHub.
UI実装スキル
対象プロジェクトにおけるUI実装の包括的ガイド。
重要: 仕様書の参照
⚠️ UI実装を開始する前に、必ず以下の仕様書を確認すること:
- REQUIREMENTS.md - 画面の目的・ユースケースを理解
- TECH_DESIGN.md - 技術設計・型定義、および「画面項目定義」セクション(画面 feature は必須・非画面 feature は省略)の項目詳細・バリデーションルール・表示形式
TECH_DESIGN.md の画面項目定義セクションがある場合:
- フォーム項目名・データ型は定義に従うこと
- バリデーションルールは定義通りに実装すること
- 表示形式(日付フォーマット、通貨など)は定義に従うこと
- 選択肢の値・表示テキストは定義通りに実装すること
Quick Navigation
| セクション | トリガーキーワード |
|---|---|
| 管理画面パターン | 管理画面、一覧画面、テーブル表示 |
| React Hook Formガイドライン | フォーム、React Hook Form、バリデーション、useForm |
| レスポンシブデザイン | レスポンシブ、モバイル対応、ブレークポイント、Tailwind |
管理画面パターン
管理画面アプリ(.stdd.config.yml の該当する apps[])の一覧管理画面は、以下の統一されたUIパターンを採用すること。
画面構成
┌─────────────────────────────────────────────────────────┐
│ 画面タイトル [bg-[#1e3a5f] 濃い青] │
└─────────────────────────────────────────────────────────┘
┌─────────────────────────────────────────────────────────┐
│ 検索条件 [bg-blue-600 青] │
├─────────────────────────────────────────────────────────┤
│ フィールド1 [________] フィールド2 [________] │
│ フィールド3 [▼_______] フィールド4 [▼_______] │
│ [検索] [リセット] │
└─────────────────────────────────────────────────────────┘
該当件数: XX件 [新規登録] [編集] [削除]
┌─────────────────────────────────────────────────────────┐
│ ☐ │カラム1│カラム2│...│ [bg-blue-600 青] │
├───┼───────┼───────┼───┼──────────────────────────────┤
│ ☐ │ │ │ │ [白背景] │
└─────────────────────────────────────────────────────────┘
[前へ] [1] [2] [3] [次へ]
実装パターン
<div className="space-y-4 w-full">
{/* ページヘッダー */}
<div className="bg-[#1e3a5f] text-white px-6 py-4 rounded-t-lg -mx-4 -mt-4 md:-mx-6 md:-mt-6">
<h1 className="text-xl font-bold">画面タイトル</h1>
</div>
{/* 検索条件セクション */}
<div className="border border-gray-300 rounded-lg overflow-hidden">
<div className="bg-blue-600 text-white px-4 py-2">
<span className="font-medium">検索条件</span>
</div>
<div className="p-4 bg-white">
<div className="grid grid-cols-1 md:grid-cols-2 gap-4 mb-4">
{/* 検索フィールド */}
</div>
<div className="flex justify-end gap-2">
<Button className="bg-blue-600 hover:bg-blue-700">検索</Button>
<Button variant="outline">リセット</Button>
</div>
</div>
</div>
{/* 結果セクション */}
<div className="flex justify-between items-center">
<div>該当件数: {count}件</div>
<div className="flex gap-2">{/* アクションボタン */}</div>
</div>
{/* テーブル */}
<div className="border rounded-lg overflow-hidden">
<table className="w-full min-w-[1000px]">
<thead className="bg-blue-600 text-white">{/* ヘッダー行 */}</thead>
<tbody className="bg-white divide-y divide-gray-200">{/* データ行 */}</tbody>
</table>
</div>
{/* ページネーション */}
</div>
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.
- 4d ago First seen · 451 lines · 98 tokens per session scan A 48a2f51c0705
implementing-ui is a skill published in the GitHub repository careerchain-ys/stdd (2 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 98 tokens to every session and 4,461 once invoked, about $0.0005 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
chakra-ui-builder
Build responsive, accessible UI components and layouts using Chakra UI v3, install or configure Chakra UI in new and existing projects, and design scalable themes using tokens, semantic tokens, recipes, and slot recipes. Use this skill whenever a user asks to build, create, or generate any UI component, page, form…
ui-design
Designs, builds, and audits UI in React, Next, and Tailwind: visual direction, Tailwind implementation, dark-mode and responsive retrofits, and a rule-based audit of built frontends covering state gaps, data loss, focus and keyboard failures, accessibility markup, layout resilience, and AI-slop tells, with file:line…
light-frontend-design
Light 按需工程技能·前端设计:把模糊的「做个好看的界面」落成能跑的 React/Tailwind/shadcn 代码 + 设计决策说明—— 有视觉记忆点(signature element)、风格自洽(design tokens 一致)、适配场景(学术海报/数据大屏/管理后台/移动端/营销 landing 信息密度各不同)、反「一眼 AI」(紫蓝渐变/Inter/16px 圆角/巨型 hero/居中堆叠/emoji 标题)、视觉无障碍(WCAG 2.2)。 何时用:竞赛作品/项目演示/科研系统界面要做网页或应用 UI / 要改造现有前端 / 要选设计系统或配色或字体 / 要做 dashboard·后台·landing·移动端…
creative-tim-ui
Creative Tim UI block library assistant. Use when adding, generating, or modifying UI blocks/components/pages from creative-tim.com/ui. Covers design philosophy (minimalism, the 95% rule, research-first), block discovery, both CLI install methods, PRO API key setup, and Creative Tim design rules (orange brand…
frontend-patterns
Context enrichment for frontend UI development using shadcn/ui and Tailwind CSS. Use when building component libraries, implementing UI designs, theming, or working with accessible React components.
designer-skills
Designer subsystem patterns for LlamaFarm. Covers React 18, TanStack Query, TailwindCSS, and Radix UI.