소스 정보
- 저장소
- asgeirtj/system_prompts_leaks
- 최근 소스 활동
- 2026년 8월 21일 19:28
- 감지된 SKILL.md 언어
- 영어
- 스타
- 63,521
- 포크
- 10,411
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/asgeirtj/system_prompts_leaks --skill create-design-system명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Reference for writing a Workflow tool script (script API and gotchas, resume, quality patterns, worked examples). Load before authoring a script for a workflow the user already opted into; it does not itself authorize running one.
Runtime capabilities a published Artifact page can be granted — behavior static HTML cannot provide on its own, such as the page reading live or connected data, remembering what people do on it (a poll, a sign-up sheet, a checklist, a document edited in place — it saves new versions of itself), keeping state shared across viewers, knowing who is viewing, asking Claude a question of its own, storing files people add, or handing the viewer a file to save. Serves this user's live capability roster and the typed call definitions. Load it whenever the user asks for an artifact needing any such runtime behavior.
Design guidance and fundamentals for Artifacts.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | create-design-system |
| description | Skill to use if user asks you to create a design system or UI kit |
| user-invocable | true |
Design system creation instructions: Design systems are folders on the file system containing typography guidelines, colors, assets, brand style and tone guides, css styles, and React recreations of UIs, decks, etc. They give design agents the ability to create designs against a company's existing products, and create assets using that company's brand. Design systems should contain real visual assets (logos, brand illustrations, etc), low-level visual foundations (e.g. typography specifics; color system, shadow, border, spacing systems), reusable UI components, and high-level UI kits (full screens).
No need to invoke the create_design_system skill; this is it.
An automated compiler reads this project, bundles the components into a runtime library, and indexes the styles. It discovers everything from file content and sibling relationships — not from folder names — so the only fixed location is:
styles.css at the project root (or index.css / globals.css / global.css / main.css / theme.css / tokens.css — first match wins). This is the global-CSS entry point; consumers link this one file. Keep it as a list of @import lines only. Everything it transitively @imports is shipped to consumers; @font-face rules anywhere in that closure declare the webfonts.Organize everything else however suits the brand. A sensible default layout (use it unless the attached codebase or brand has its own convention):
tokens/ — CSS custom properties, one file per concern (colors.css, typography.css, spacing.css, …), each @imported from styles.css.components/<group>/ — reusable React UI primitives.ui_kits/<product>/ — full-screen click-through recreations of real product views.guidelines/ — foundation specimen cards and deeper-dive prose.assets/ — logos, icons, illustrations, imagery.readme.md (root) — the design guide and manifest.What the compiler looks for, regardless of path:
<Name>.jsx / <Name>.tsx (PascalCase stem) with a sibling <Name>.d.ts in the same directory. Add <Name>.prompt.md alongside, and one @dsCard-tagged .html per directory (its first line is <!-- @dsCard group="…" -->; details under "Components" below).--* custom property declared under :root (or a single-selector theme scope) in a file reachable from styles.css.@font-face rule in that same closure; its src: url(…) targets are the binaries shipped to consumers.To begin, create a todo list with the tasks below, then follow it:
:root, both base values (--fg-1, --font-serif-display) and semantic aliases (--text-body, --surface-card). Copy any webfonts/ttfs into the project and write the @font-face rules in a CSS file. Then write the root styles.css as a list of @import lines only (never inline rules there) that reaches every token and font-face file.Components
forms/, feedback/, navigation/ under whatever parent directory you choose); a single core/ group is fine for a small set.<Name>.jsx (or .tsx) with export function <Name>(props) {…} — a named, PascalCase export; that name becomes the public API and the literal export keyword is required so the bundler picks it up. Keep them self-contained: import React only, reference styling via the CSS custom properties (no CSS-in-JS libs, no npm packages). Siblings may import each other with relative paths.<Name>.d.ts with the props interface — the sibling .d.ts is what gives a component its props contract, adherence rules, and starting-point eligibility; a .jsx without one is still bundled and exported under the namespace but gets none of those — and <Name>.prompt.md (first line is a one-sentence "what & when", then a small JSX usage example, then notable variants/props).buttons.card.html): first line is <!-- @dsCard group="Components" viewport="700x<height>" name="<Directory label>" -->. Link styles.css via the correct relative path, load the bundle via (relative path to project root), then mount with in a block — call to get the exact . Do NOT the directly (its is unreachable from inline script). Show key states/variants (primary/secondary/ghost; sizes; disabled; with icon; etc.). Make it dense and scannable, not a single default render.Starting points
@dsCard (which populates the Design System tab).@startingPoint section="<group>" subtitle="<one line>" viewport="<WxH>" to the JSDoc on its <Name>.d.ts props interface. The picker thumbnail is that directory's @dsCard-tagged HTML, so make sure it renders sensibly at the declared viewport.<!-- @startingPoint section="<group>" subtitle="<one line>" viewport="<WxH>" --> as the first line of the HTML file. The screen itself is the thumbnail.<X>" (or "add <X> as a starting point"), write an HTML file with the <!-- @startingPoint section="…" --> comment as its first line — any .html in the project with that tag is indexed. ui_kits/<x>/index.html is the conventional home but not required.@dsCard-tagged HTML in that component's directory (component) or the screen HTML itself.UI kit details:
index.html must look like a typical view of the product. These are recreations, not storybooks.Guidance
SKILL.md
<skill-md>
---
name: {brand}-design
description: Use this skill to generate well-branded interfaces and assets for {brand}, either for production or throwaway prototypes/mocks/etc. Contains essential design guidelines, colors, type, fonts, assets, and UI kit components for protoyping.
user-invocable: true
---
Read the README.md file within this skill, and explore the other available files.
If creating visual artifacts (slides, mocks, throwaway prototypes, etc), copy assets out and create static HTML files for the user to view. If working on production code, you can copy assets and read the rules here to become an expert in designing with this brand.
If the user invokes this skill without any other guidance, ask them what they want to build or design, ask some questions, and act as an expert designer who outputs HTML artifacts _or_ production code, depending on the need.
</skill-md>
Additionally, remind the user they need to set the File type to Design System in the Share menu so that others in their org can view this design system.
styles.css<!-- @dsCard group="<Group>" viewport="700x<height>" subtitle="<one line>" name="<Card name>" -->.htmlgroupassets/. If the provided sources contain no logo, do not create one: render the brand name in plain type wherever a mark would go and note the absence in readme.md. Never draw, reconstruct, or approximate a company's real logo or brand mark from memory — even when the company seems identifiable from font names or sample content — and never rebrand the design system with a company identity the user didn't provide. Update readme.md with an ICONOGRAPHY section describing the brand's approach to iconography. Answer ALL these and more: are certain icon systems used? is there a builtin icon font? are there SVGs used commonly, or png icons? (if so, copy them in!) Is emoji ever used? Are unicode chars used as icons? Make sure to copy key logos, background images, maybe 1-2 full-bleed generic images, and ALL generic illustrations you find. NEVER draw your own SVGs or generate images; COPY icons programmatically if you can.assets/ if you can. Otherwise, if the set is CDN-available (e.g. Lucide, Heroicons), link it from CDN. If neither, substitute the closest CDN match (same stroke weight / fill style) and FLAG the substitution. Document usage in ICONOGRAPHY.<!-- @dsCard group="Components" … --> on line 1.{README.md, index.html, Screen1.jsx, …} in its own directory; see the UI kits section. Verify visually. Make one todo list item for each product/surface.{index.html, TitleSlide.jsx, ComparisonSlide.jsx, BigQuoteSlide.jsx, …} in their own directory. If no sample slides were given, don't create them. Create an HTML file per slide type; if decks were provided, copy their style. Use the visual foundations and bring in logos + other assets. Tag each slide HTML with <!-- @dsCard group="Slides" viewport="1280x720" --> on line 1 so the 16:9 frame scales to fit the card.<!-- @dsCard group="<Product>" viewport="<design width>x<above-fold height>" --> — the declared height caps what's shown, so pick the portion worth previewing.<script src="…/_ds_bundle.js">const { <Name> } = window.<Namespace><script type="text/babel">check_design_system<Namespace><script src>.jsxexport_ds_bundle.js, _ds_manifest.json, _adherence.oxlintrc.json, or a barrel index.js — those are generated automatically.