design-pact 0.2.0 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/SKILL.md +5 -5
- package/dist/cli.js +11 -11
- package/package.json +9 -3
- package/web/404.html +1 -1
- package/web/__next.__PAGE__.txt +2 -2
- package/web/__next._full.txt +3 -3
- package/web/__next._head.txt +1 -1
- package/web/__next._index.txt +1 -1
- package/web/__next._tree.txt +1 -1
- package/web/_next/static/chunks/0si4eubpj00yw.js +187 -0
- package/web/_not-found/__next._full.txt +2 -2
- package/web/_not-found/__next._head.txt +1 -1
- package/web/_not-found/__next._index.txt +1 -1
- package/web/_not-found/__next._not-found.__PAGE__.txt +1 -1
- package/web/_not-found/__next._not-found.txt +1 -1
- package/web/_not-found/__next._tree.txt +1 -1
- package/web/_not-found.html +1 -1
- package/web/_not-found.txt +2 -2
- package/web/index.html +1 -1
- package/web/index.txt +3 -3
- package/web/_next/static/chunks/012lv2-viu5_..js +0 -187
- /package/web/_next/static/{PuB4TNuzsXn-CMEz1oKNJ → sZ0sIOnTEk-ANZHZKcMr8}/_buildManifest.js +0 -0
- /package/web/_next/static/{PuB4TNuzsXn-CMEz1oKNJ → sZ0sIOnTEk-ANZHZKcMr8}/_clientMiddlewareManifest.js +0 -0
- /package/web/_next/static/{PuB4TNuzsXn-CMEz1oKNJ → sZ0sIOnTEk-ANZHZKcMr8}/_ssgManifest.js +0 -0
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@ for when you want the tokens as committed project files.
|
|
|
10
10
|
|
|
11
11
|
## Install the skill (recommended)
|
|
12
12
|
|
|
13
|
-
Get the `design-
|
|
13
|
+
Get the `design-pact` skill into your agent with the open
|
|
14
14
|
[`skills`](https://github.com/vercel-labs/skills) CLI — one command, works
|
|
15
15
|
across Claude Code / Cursor / Codex:
|
|
16
16
|
|
package/SKILL.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
---
|
|
2
|
-
name: design-
|
|
2
|
+
name: design-pact
|
|
3
3
|
description: >-
|
|
4
4
|
Establish and apply the project's design system. Invoke at the start of UI
|
|
5
5
|
work, or whenever the user says "use my design system", "apply my tokens",
|
|
@@ -7,7 +7,7 @@ description: >-
|
|
|
7
7
|
build/restyle UI. The skill first looks for a design.md in the repo:
|
|
8
8
|
if present it generates UI against it; if absent it clarifies the product
|
|
9
9
|
direction, YOU (the agent) propose 2–3 palettes, and it opens the
|
|
10
|
-
design-
|
|
10
|
+
design-pact studio where the user picks one visually and tunes it into a full
|
|
11
11
|
design system to export. All AI runs on the agent's own compute — the web app has no AI and
|
|
12
12
|
no backend.
|
|
13
13
|
---
|
|
@@ -15,7 +15,7 @@ description: >-
|
|
|
15
15
|
# Design system
|
|
16
16
|
|
|
17
17
|
The project's design system lives in a single file — `design.md` at the
|
|
18
|
-
repo root — exported from the design-
|
|
18
|
+
repo root — exported from the design-pact studio. It carries the canonical
|
|
19
19
|
color / type / spacing / radius / shadow / motion tokens plus a copy-verbatim
|
|
20
20
|
`:root` contract. That one file is the source of truth; you do not need the web
|
|
21
21
|
app or network access once it exists.
|
|
@@ -30,7 +30,7 @@ Look for `design.md`, in order:
|
|
|
30
30
|
1. A path the user gave you.
|
|
31
31
|
2. `design.md` at the repo root.
|
|
32
32
|
3. Search the repo for the file's frontmatter marker:
|
|
33
|
-
`rg -l "^design-
|
|
33
|
+
`rg -l "^design-pact:" --type md`.
|
|
34
34
|
|
|
35
35
|
Then branch:
|
|
36
36
|
|
|
@@ -157,7 +157,7 @@ can still switch in the top-right). Omit it and the app falls back to the
|
|
|
157
157
|
browser language. Only matters on the user's first visit; after that their
|
|
158
158
|
own choice is remembered.
|
|
159
159
|
|
|
160
|
-
Full URL: `http://localhost:3000/?<query>` (`
|
|
160
|
+
Full URL: `http://localhost:3000/?<query>` (`DESIGN_PACT_URL` defaults to
|
|
161
161
|
`http://localhost:3000`; use a hosted URL if the user has one and skip the CLI).
|
|
162
162
|
|
|
163
163
|
**Do these IN ORDER. Step 1 always happens — even if 2 fails, the printed URL is
|
package/dist/cli.js
CHANGED
|
@@ -1468,11 +1468,11 @@ function fence(md, lang) {
|
|
|
1468
1468
|
return m ? m[1] : null;
|
|
1469
1469
|
}
|
|
1470
1470
|
function parseDesignSystem(md) {
|
|
1471
|
-
if (!/^---\s*\ndesign-
|
|
1471
|
+
if (!/^---\s*\ndesign-pact:/m.test(md) && !md.includes("# Design system")) {
|
|
1472
1472
|
throw new Error(
|
|
1473
1473
|
t(
|
|
1474
|
-
"This does not look like a design.md (missing the design-
|
|
1475
|
-
"\u8FD9\u770B\u8D77\u6765\u4E0D\u662F design.md\uFF08\u7F3A\u5C11 design-
|
|
1474
|
+
"This does not look like a design.md (missing the design-pact frontmatter / Design system heading).",
|
|
1475
|
+
"\u8FD9\u770B\u8D77\u6765\u4E0D\u662F design.md\uFF08\u7F3A\u5C11 design-pact frontmatter / Design system \u6807\u9898\uFF09\u3002"
|
|
1476
1476
|
)
|
|
1477
1477
|
);
|
|
1478
1478
|
}
|
|
@@ -1949,7 +1949,7 @@ var useLang = create()(
|
|
|
1949
1949
|
// skipHydration: the static export prerenders with the "en" default, then
|
|
1950
1950
|
// StoreHydration rehydrates from localStorage on the client (same pattern
|
|
1951
1951
|
// as the tokens store) so there is no hydration mismatch.
|
|
1952
|
-
{ name: "design-
|
|
1952
|
+
{ name: "design-pact-lang", skipHydration: true }
|
|
1953
1953
|
)
|
|
1954
1954
|
);
|
|
1955
1955
|
function trg(en, zh) {
|
|
@@ -2000,7 +2000,7 @@ function parseW3CTokens(jsonText) {
|
|
|
2000
2000
|
role: ROLES.has(key) ? key : "unassigned",
|
|
2001
2001
|
name: key
|
|
2002
2002
|
});
|
|
2003
|
-
const dark = asObj(asObj(asObj(node)?.["$extensions"])?.["design-
|
|
2003
|
+
const dark = asObj(asObj(asObj(node)?.["$extensions"])?.["design-pact"])?.dark;
|
|
2004
2004
|
darkHexes.push(typeof dark === "string" && HEX_RE.test(dark) ? dark.toLowerCase() : void 0);
|
|
2005
2005
|
}
|
|
2006
2006
|
if (colors.length === 0) throw new Error(trg("No recognizable colors in the color group", "color \u5206\u7EC4\u91CC\u6CA1\u6709\u53EF\u8BC6\u522B\u7684\u989C\u8272"));
|
|
@@ -2009,7 +2009,7 @@ function parseW3CTokens(jsonText) {
|
|
|
2009
2009
|
const typo = asObj(root.typography);
|
|
2010
2010
|
if (typo) {
|
|
2011
2011
|
const t2 = {};
|
|
2012
|
-
const ext = asObj(asObj(typo.$extensions)?.["design-
|
|
2012
|
+
const ext = asObj(asObj(typo.$extensions)?.["design-pact"]);
|
|
2013
2013
|
const base = num(ext?.base);
|
|
2014
2014
|
const ratio = num(ext?.ratio);
|
|
2015
2015
|
if (base) t2.base = base;
|
|
@@ -2117,18 +2117,18 @@ var sleep = (ms) => new Promise((r) => setTimeout(r, ms));
|
|
|
2117
2117
|
async function cmdInit(args) {
|
|
2118
2118
|
const global = args.includes("--global");
|
|
2119
2119
|
const base = global ? join(homedir(), ".claude") : join(process.cwd(), ".claude");
|
|
2120
|
-
const dir = join(base, "skills", "design-
|
|
2120
|
+
const dir = join(base, "skills", "design-pact");
|
|
2121
2121
|
if (!existsSync(SKILL_SRC)) {
|
|
2122
2122
|
console.error("\u2717 " + t("SKILL.md missing from the package (run bundle before publishing).", "\u5305\u5185\u7F3A\u5C11 SKILL.md\uFF08\u53D1\u5E03\u524D\u9700\u5148\u8FD0\u884C bundle\uFF09\u3002"));
|
|
2123
2123
|
process.exit(1);
|
|
2124
2124
|
}
|
|
2125
2125
|
await mkdir(dir, { recursive: true });
|
|
2126
2126
|
await copyFile(SKILL_SRC, join(dir, "SKILL.md"));
|
|
2127
|
-
console.log(t(`\u2713 Installed the design-
|
|
2127
|
+
console.log(t(`\u2713 Installed the design-pact skill \u2192 ${join(dir, "SKILL.md")}`, `\u2713 \u5DF2\u5B89\u88C5 design-pact skill \u2192 ${join(dir, "SKILL.md")}`));
|
|
2128
2128
|
console.log(
|
|
2129
2129
|
global ? t(" (global: available in every project)", " \uFF08\u5168\u5C40\uFF1A\u5BF9\u6240\u6709\u9879\u76EE\u53EF\u7528\uFF09") : t(" (project-level: this project only; add --global to install into ~/.claude)", " \uFF08\u9879\u76EE\u7EA7\uFF1A\u4EC5\u5F53\u524D\u9879\u76EE\u53EF\u7528\uFF0C\u52A0 --global \u53EF\u88C5\u5230 ~/.claude\uFF09")
|
|
2130
2130
|
);
|
|
2131
|
-
console.log("\n" + t('Next: in Claude Code / Cursor, say "use the design-
|
|
2131
|
+
console.log("\n" + t('Next: in Claude Code / Cursor, say "use the design-pact skill".', "\u4E0B\u4E00\u6B65\uFF1A\u5728 Claude Code / Cursor \u91CC\u8BF4\u300C\u7528 design-pact skill\u300D\u3002"));
|
|
2132
2132
|
console.log(t("It clarifies direction, proposes palettes, and opens the local studio via `npx design-pact open`.", "\u5B83\u4F1A\u95EE\u6E05\u65B9\u5411\u3001\u4EA7\u51FA\u914D\u8272\uFF0C\u5E76\u7528 `npx design-pact open` \u5728\u672C\u5730\u6253\u5F00\u914D\u8272\u5DE5\u5177\u3002"));
|
|
2133
2133
|
}
|
|
2134
2134
|
function fileForUrl(urlPath) {
|
|
@@ -2230,7 +2230,7 @@ function tokenHexes(w3c) {
|
|
|
2230
2230
|
if (obj.$type === "color" && typeof obj.$value === "string") {
|
|
2231
2231
|
const hex = normalizeHex(obj.$value);
|
|
2232
2232
|
if (hex) out.add(hex);
|
|
2233
|
-
const dark = obj.$extensions?.["design-
|
|
2233
|
+
const dark = obj.$extensions?.["design-pact"]?.dark;
|
|
2234
2234
|
if (typeof dark === "string") {
|
|
2235
2235
|
const dh = normalizeHex(dark);
|
|
2236
2236
|
if (dh) out.add(dh);
|
|
@@ -2421,7 +2421,7 @@ function cmdInspect(file) {
|
|
|
2421
2421
|
const { w3c } = parseDesignSystem(readMd(file));
|
|
2422
2422
|
const color = w3c.color ?? {};
|
|
2423
2423
|
const typo = w3c.typography ?? {};
|
|
2424
|
-
const ext = typo.$extensions?.["design-
|
|
2424
|
+
const ext = typo.$extensions?.["design-pact"] ?? {};
|
|
2425
2425
|
console.log(t("Design system summary", "\u8BBE\u8BA1\u7CFB\u7EDF\u6458\u8981"));
|
|
2426
2426
|
console.log(t(" Colors:", " \u989C\u8272\uFF1A"));
|
|
2427
2427
|
for (const [role, v] of Object.entries(color)) console.log(` ${role.padEnd(12)} ${v.$value}`);
|
package/package.json
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "design-pact",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "Design-system contract for AI agents: derive a full token set from a palette in the local studio, export an agent-executable design.md, convert it to CSS/Tailwind tokens, and audit generated UI against the contract. Works with Claude Code / Cursor. Zero backend, zero account.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"design-pact": "dist/cli.js"
|
|
8
|
-
"design-system": "dist/cli.js"
|
|
7
|
+
"design-pact": "dist/cli.js"
|
|
9
8
|
},
|
|
10
9
|
"files": [
|
|
11
10
|
"dist",
|
|
@@ -30,6 +29,13 @@
|
|
|
30
29
|
"cli"
|
|
31
30
|
],
|
|
32
31
|
"license": "MIT",
|
|
32
|
+
"repository": {
|
|
33
|
+
"type": "git",
|
|
34
|
+
"url": "git+https://github.com/no7z/design-pact.git",
|
|
35
|
+
"directory": "packages/cli"
|
|
36
|
+
},
|
|
37
|
+
"homepage": "https://github.com/no7z/design-pact#readme",
|
|
38
|
+
"bugs": "https://github.com/no7z/design-pact/issues",
|
|
33
39
|
"dependencies": {
|
|
34
40
|
"culori": "^4.0.2"
|
|
35
41
|
},
|
package/web/404.html
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><html lang="en" class="geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/chunks/0uyeui9y_zv_0.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/0rp7qr3afex.u.js"/><script src="/_next/static/chunks/0-l9p_pd2v836.js" async=""></script><script src="/_next/static/chunks/15356_01bt_3u.js" async=""></script><script src="/_next/static/chunks/turbopack-0y3s-y83i3.06.js" async=""></script><script src="/_next/static/chunks/0x72peuimhbw-.js" async=""></script><meta name="robots" content="noindex"/><meta name="next-size-adjust" content=""/><title>404: This page could not be found.</title><title>design-
|
|
1
|
+
<!DOCTYPE html><html lang="en" class="geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/chunks/0uyeui9y_zv_0.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/0rp7qr3afex.u.js"/><script src="/_next/static/chunks/0-l9p_pd2v836.js" async=""></script><script src="/_next/static/chunks/15356_01bt_3u.js" async=""></script><script src="/_next/static/chunks/turbopack-0y3s-y83i3.06.js" async=""></script><script src="/_next/static/chunks/0x72peuimhbw-.js" async=""></script><meta name="robots" content="noindex"/><meta name="next-size-adjust" content=""/><title>404: This page could not be found.</title><title>design-pact — a design contract your AI agent keeps</title><meta name="description" content="Derive a full design system from one palette and export an agent-executable design.md. Zero backend, no AI, no account."/><link rel="icon" href="/favicon.ico?favicon.0x3dzn~oxb6tn.ico" sizes="256x256" type="image/x-icon"/><script src="/_next/static/chunks/03~yq9q893hmn.js" noModule=""></script></head><body class="flex min-h-screen flex-col"><div hidden=""><!--$--><!--/$--></div><div style="font-family:system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><!--$--><!--/$--><script src="/_next/static/chunks/0rp7qr3afex.u.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[58516,[\"/_next/static/chunks/0x72peuimhbw-.js\"],\"default\"]\n3:I[9650,[\"/_next/static/chunks/0x72peuimhbw-.js\"],\"default\"]\n4:I[37715,[\"/_next/static/chunks/0x72peuimhbw-.js\"],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n8:I[37715,[\"/_next/static/chunks/0x72peuimhbw-.js\"],\"ViewportBoundary\"]\na:I[37715,[\"/_next/static/chunks/0x72peuimhbw-.js\"],\"MetadataBoundary\"]\nc:I[84045,[\"/_next/static/chunks/0x72peuimhbw-.js\"],\"default\",1]\n:HL[\"/_next/static/chunks/0uyeui9y_zv_0.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"c\":[\"\",\"_not-found\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",16],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/0uyeui9y_zv_0.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/0x72peuimhbw-.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"className\":\"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased\",\"children\":[\"$\",\"body\",null,{\"className\":\"flex min-h-screen flex-col\",\"children\":[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:style\",\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:1:props:style\",\"children\":404}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:style\",\"children\":[\"$\",\"h2\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style\",\"children\":\"This page could not be found.\"}]}]]}]}]],null,[\"$\",\"$L4\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@6\"}]}]]}],{},null,false,null]},null,false,\"$@7\"]},null,false,null],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[\"$\",\"$L8\",null,{\"children\":\"$L9\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$La\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.Metadata\",\"children\":\"$Lb\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$c\",[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/0uyeui9y_zv_0.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]]],\"S\":true,\"h\":null,\"s\":\"$undefined\",\"l\":\"$undefined\",\"p\":\"$undefined\",\"d\":\"$undefined\",\"b\":\"sZ0sIOnTEk-ANZHZKcMr8\"}\n"])</script><script>self.__next_f.push([1,"d:[]\n7:\"$Wd\"\n"])</script><script>self.__next_f.push([1,"9:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"e:I[3622,[\"/_next/static/chunks/0x72peuimhbw-.js\"],\"IconMark\"]\n6:null\nb:[[\"$\",\"title\",\"0\",{\"children\":\"design-pact — a design contract your AI agent keeps\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Derive a full design system from one palette and export an agent-executable design.md. Zero backend, no AI, no account.\"}],[\"$\",\"link\",\"2\",{\"rel\":\"icon\",\"href\":\"/favicon.ico?favicon.0x3dzn~oxb6tn.ico\",\"sizes\":\"256x256\",\"type\":\"image/x-icon\"}],[\"$\",\"$Le\",\"3\",{}]]\n"])</script></body></html>
|
package/web/__next.__PAGE__.txt
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
1:"$Sreact.fragment"
|
|
2
2
|
2:I[22855,["/_next/static/chunks/0x72peuimhbw-.js"],"ClientPageRoot"]
|
|
3
|
-
3:I[73742,["/_next/static/chunks/0x72peuimhbw-.js","/_next/static/chunks/
|
|
3
|
+
3:I[73742,["/_next/static/chunks/0x72peuimhbw-.js","/_next/static/chunks/0si4eubpj00yw.js"],"default"]
|
|
4
4
|
6:I[37715,["/_next/static/chunks/0x72peuimhbw-.js"],"OutletBoundary"]
|
|
5
5
|
7:"$Sreact.suspense"
|
|
6
|
-
0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/
|
|
6
|
+
0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/0si4eubpj00yw.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"sZ0sIOnTEk-ANZHZKcMr8"}
|
|
7
7
|
4:{}
|
|
8
8
|
5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
|
|
9
9
|
8:null
|
package/web/__next._full.txt
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
2:I[58516,["/_next/static/chunks/0x72peuimhbw-.js"],"default"]
|
|
3
3
|
3:I[9650,["/_next/static/chunks/0x72peuimhbw-.js"],"default"]
|
|
4
4
|
4:I[22855,["/_next/static/chunks/0x72peuimhbw-.js"],"ClientPageRoot"]
|
|
5
|
-
5:I[73742,["/_next/static/chunks/0x72peuimhbw-.js","/_next/static/chunks/
|
|
5
|
+
5:I[73742,["/_next/static/chunks/0x72peuimhbw-.js","/_next/static/chunks/0si4eubpj00yw.js"],"default"]
|
|
6
6
|
8:I[37715,["/_next/static/chunks/0x72peuimhbw-.js"],"OutletBoundary"]
|
|
7
7
|
9:"$Sreact.suspense"
|
|
8
8
|
b:I[37715,["/_next/static/chunks/0x72peuimhbw-.js"],"ViewportBoundary"]
|
|
@@ -11,10 +11,10 @@ f:I[84045,["/_next/static/chunks/0x72peuimhbw-.js"],"default",1]
|
|
|
11
11
|
:HL["/_next/static/chunks/0uyeui9y_zv_0.css","style"]
|
|
12
12
|
:HL["/_next/static/media/797e433ab948586e-s.p.08e28id.o-okb.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
|
13
13
|
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.09~u27dqhyhd6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
|
14
|
-
0:{"P":null,"c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0uyeui9y_zv_0.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0x72peuimhbw-.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased","children":["$","body",null,{"className":"flex min-h-screen flex-col","children":["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}],{"children":[["$","$1","c",{"children":[["$","$L4",null,{"Component":"$5","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@6","$@7"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/
|
|
14
|
+
0:{"P":null,"c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0uyeui9y_zv_0.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0x72peuimhbw-.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased","children":["$","body",null,{"className":"flex min-h-screen flex-col","children":["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}],{"children":[["$","$1","c",{"children":[["$","$L4",null,{"Component":"$5","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@6","$@7"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/0si4eubpj00yw.js","async":true,"nonce":"$undefined"}]],["$","$L8",null,{"children":["$","$9",null,{"name":"Next.MetadataOutlet","children":"$@a"}]}]]}],{},null,false,null]},null,false,null],["$","$1","h",{"children":[null,["$","$Lb",null,{"children":"$Lc"}],["$","div",null,{"hidden":true,"children":["$","$Ld",null,{"children":["$","$9",null,{"name":"Next.Metadata","children":"$Le"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$f",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0uyeui9y_zv_0.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"sZ0sIOnTEk-ANZHZKcMr8"}
|
|
15
15
|
6:{}
|
|
16
16
|
7:"$0:f:0:1:1:children:0:props:children:0:props:serverProvidedParams:params"
|
|
17
17
|
c:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
|
18
18
|
10:I[3622,["/_next/static/chunks/0x72peuimhbw-.js"],"IconMark"]
|
|
19
19
|
a:null
|
|
20
|
-
e:[["$","title","0",{"children":"design-
|
|
20
|
+
e:[["$","title","0",{"children":"design-pact — a design contract your AI agent keeps"}],["$","meta","1",{"name":"description","content":"Derive a full design system from one palette and export an agent-executable design.md. Zero backend, no AI, no account."}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.0x3dzn~oxb6tn.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L10","3",{}]]
|
package/web/__next._head.txt
CHANGED
|
@@ -3,4 +3,4 @@
|
|
|
3
3
|
3:I[37715,["/_next/static/chunks/0x72peuimhbw-.js"],"MetadataBoundary"]
|
|
4
4
|
4:"$Sreact.suspense"
|
|
5
5
|
5:I[3622,["/_next/static/chunks/0x72peuimhbw-.js"],"IconMark"]
|
|
6
|
-
0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"design-
|
|
6
|
+
0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"design-pact — a design contract your AI agent keeps"}],["$","meta","1",{"name":"description","content":"Derive a full design system from one palette and export an agent-executable design.md. Zero backend, no AI, no account."}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.0x3dzn~oxb6tn.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","3",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"sZ0sIOnTEk-ANZHZKcMr8"}
|
package/web/__next._index.txt
CHANGED
|
@@ -2,4 +2,4 @@
|
|
|
2
2
|
2:I[58516,["/_next/static/chunks/0x72peuimhbw-.js"],"default"]
|
|
3
3
|
3:I[9650,["/_next/static/chunks/0x72peuimhbw-.js"],"default"]
|
|
4
4
|
:HL["/_next/static/chunks/0uyeui9y_zv_0.css","style"]
|
|
5
|
-
0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0uyeui9y_zv_0.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/0x72peuimhbw-.js","async":true}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased","children":["$","body",null,{"className":"flex min-h-screen flex-col","children":["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"
|
|
5
|
+
0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0uyeui9y_zv_0.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/0x72peuimhbw-.js","async":true}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased","children":["$","body",null,{"className":"flex min-h-screen flex-col","children":["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"sZ0sIOnTEk-ANZHZKcMr8"}
|
package/web/__next._tree.txt
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
:HL["/_next/static/chunks/0uyeui9y_zv_0.css","style"]
|
|
2
2
|
:HL["/_next/static/media/797e433ab948586e-s.p.08e28id.o-okb.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
|
3
3
|
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.09~u27dqhyhd6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
|
4
|
-
0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}},"staleTime":300,"buildId":"
|
|
4
|
+
0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}},"staleTime":300,"buildId":"sZ0sIOnTEk-ANZHZKcMr8"}
|