tkeron 5.3.0 → 6.0.1
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 +17 -16
- package/bun.lock +13 -196
- package/changelog.md +55 -0
- package/examples/init_sample/websrc/about.html +19 -0
- package/examples/init_sample/websrc/components/content/about-intro.com.md +7 -0
- package/examples/init_sample/websrc/components/layout/hero-section.com.html +88 -0
- package/examples/init_sample/websrc/components/layout/site-footer.com.html +20 -0
- package/examples/init_sample/websrc/components/layout/site-header.com.html +44 -0
- package/examples/init_sample/websrc/components/ui/counter-button.com.html +48 -0
- package/examples/init_sample/websrc/components/ui/crypto-prices-card.com.html +52 -0
- package/examples/init_sample/websrc/components/ui/html-components-card.com.html +10 -0
- package/examples/init_sample/websrc/{info-card.com.html → components/ui/info-card.com.html} +10 -6
- package/examples/init_sample/websrc/components/ui/markdown-card.com.html +21 -0
- package/examples/init_sample/websrc/{pre-render-card.com.html → components/ui/pre-render-card.com.html} +6 -3
- package/examples/init_sample/websrc/components/ui/quote-card.com.html +32 -0
- package/examples/init_sample/websrc/components/ui/styles-injector.com.ts +5 -0
- package/examples/init_sample/websrc/components/ui/ts-components-card.com.html +11 -0
- package/examples/init_sample/websrc/components/ui/user-badge.com.ts +30 -0
- package/examples/init_sample/websrc/docs.html +33 -0
- package/examples/init_sample/websrc/index.html +10 -209
- package/examples/init_sample/websrc/index.post.ts +70 -0
- package/examples/init_sample/websrc/index.pre.ts +10 -61
- package/examples/init_sample/websrc/index.ts +9 -7
- package/examples/init_sample/websrc/styles/global-styles.com.ts +5 -0
- package/examples/init_sample/websrc/styles/main.css +112 -0
- package/examples/init_sample/websrc/utils/api-service.ts +93 -0
- package/examples/with_global_styles/websrc/bad.html +23 -0
- package/examples/with_global_styles/websrc/global-styles.com.ts +5 -0
- package/examples/with_global_styles/websrc/good.html +22 -0
- package/examples/with_global_styles/websrc/index.html +25 -0
- package/examples/with_global_styles/websrc/styles.css +24 -0
- package/examples/with_style_dedup/websrc/tag-chip.com.html +15 -0
- package/examples/with_style_dedup/websrc/tag-chip.com.ts +2 -18
- package/index.ts +15 -0
- package/package.json +9 -13
- package/skills/tkeron/SKILL.md +287 -0
- package/skills/tkeron-components/SKILL.md +785 -0
- package/skills/tkeron-organization/SKILL.md +231 -0
- package/skills/tkeron-patterns/SKILL.md +587 -0
- package/skills/tkeron-testing/SKILL.md +194 -0
- package/skills/tkeron-troubleshooting/SKILL.md +263 -0
- package/src/build.ts +4 -6
- package/src/develop.ts +1 -2
- package/src/init.ts +1 -2
- package/src/skills.ts +139 -0
- package/src/skillsWrapper.ts +79 -0
- package/docs/mcp-server.md +0 -240
- package/examples/init_sample/websrc/api-service.ts +0 -98
- package/examples/init_sample/websrc/counter-card.com.html +0 -9
- package/examples/init_sample/websrc/favicon.ico +0 -0
- package/examples/init_sample/websrc/hero-section.com.html +0 -23
- package/examples/init_sample/websrc/html-components-card.com.html +0 -6
- package/examples/init_sample/websrc/ts-components-card.com.html +0 -6
- package/examples/init_sample/websrc/user-badge.com.ts +0 -17
- package/mcp-server.ts +0 -272
- package/src/cleanupOrphanedTempDirs.ts +0 -31
- package/src/promptUser.ts +0 -15
- package/src/setupSigintHandler.ts +0 -6
- /package/examples/init_sample/websrc/{profile.png → assets/profile.png} +0 -0
package/README.md
CHANGED
|
@@ -84,37 +84,38 @@ document.getElementById("quote").textContent = data.content;
|
|
|
84
84
|
tk init <name> # Initialize new project
|
|
85
85
|
tk build # Build project (websrc → web)
|
|
86
86
|
tk dev [port] [host] # Dev server with hot reload (default: localhost:3000)
|
|
87
|
+
tk skills [target] # Install AI agent skills into <target>/ (default: skills/)
|
|
87
88
|
```
|
|
88
89
|
|
|
89
90
|
**Aliases:** `tk i`, `tk b`, `tk d`
|
|
90
91
|
|
|
91
92
|
See [CLI Reference](./docs/cli-reference.md) for all options.
|
|
92
93
|
|
|
93
|
-
##
|
|
94
|
+
## AI Agent Integration
|
|
94
95
|
|
|
95
|
-
Tkeron
|
|
96
|
+
Tkeron ships with **AI agent skills** — Markdown files an AI coding agent can read to understand the entire tkeron workflow (CLI, folder structure, file types, components, build lifecycle, testing, best practices and common pitfalls).
|
|
96
97
|
|
|
97
|
-
|
|
98
|
+
Install them into your project with:
|
|
98
99
|
|
|
99
100
|
```bash
|
|
100
|
-
|
|
101
|
+
tk skills # copies skills into ./skills/
|
|
102
|
+
tk skills agent-skills # custom target directory
|
|
103
|
+
tk skills --force # overwrite existing files
|
|
101
104
|
```
|
|
102
105
|
|
|
103
|
-
|
|
106
|
+
This drops the bundled skills into the chosen directory:
|
|
104
107
|
|
|
105
|
-
```
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
108
|
+
```
|
|
109
|
+
skills/
|
|
110
|
+
├── tkeron/
|
|
111
|
+
│ └── SKILL.md # Core: CLI, build, file types, testing
|
|
112
|
+
├── tkeron-components/
|
|
113
|
+
│ └── SKILL.md # Components & pre/post-rendering deep dive
|
|
114
|
+
└── tkeron-best-practices/
|
|
115
|
+
└── SKILL.md # Patterns, anti-patterns, organization
|
|
113
116
|
```
|
|
114
117
|
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
See [MCP Documentation](./docs/mcp-server.md) for details.
|
|
118
|
+
Point your agent's skill loader (e.g. `.github/skills/`, `~/.config/Code/User/prompts/`, or any equivalent) at the installed directory, or copy the folders into the location your agent expects.
|
|
118
119
|
|
|
119
120
|
## Testing API
|
|
120
121
|
|
package/bun.lock
CHANGED
|
@@ -5,217 +5,34 @@
|
|
|
5
5
|
"": {
|
|
6
6
|
"name": "tkeron",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@
|
|
9
|
-
"@tkeron/
|
|
10
|
-
"@tkeron/
|
|
11
|
-
"@tkeron/tools": "^0.4.1",
|
|
8
|
+
"@tkeron/commands": "0.4.8",
|
|
9
|
+
"@tkeron/html-parser": "1.5.7",
|
|
10
|
+
"@tkeron/tools": "^0.5.0",
|
|
12
11
|
},
|
|
13
12
|
"devDependencies": {
|
|
14
|
-
"@types/bun": "^1.3.
|
|
15
|
-
"prettier": "^3.8.
|
|
16
|
-
"typescript": "^6.0.
|
|
13
|
+
"@types/bun": "^1.3.14",
|
|
14
|
+
"prettier": "^3.8.3",
|
|
15
|
+
"typescript": "^6.0.3",
|
|
17
16
|
},
|
|
18
17
|
},
|
|
19
18
|
},
|
|
20
19
|
"packages": {
|
|
21
|
-
"@
|
|
20
|
+
"@tkeron/commands": ["@tkeron/commands@0.4.8", "", { "peerDependencies": { "typescript": "^5.9.3" } }, "sha512-l8bqv0yYdDgeC/DtVgBAkvRaZm4nJvQA/X0gVkh6Qt+GNewMK0trRAa331XCumz4WsiH++Y68ZwXdQvZbd6cpA=="],
|
|
22
21
|
|
|
23
|
-
"@
|
|
22
|
+
"@tkeron/html-parser": ["@tkeron/html-parser@1.5.7", "", { "peerDependencies": { "typescript": "^5.9.3" } }, "sha512-fqc+c+QAzpEAEL6on/dLJX305HFHcP3Bs9Z29uRJ0w4/FEQQHDcZRo2e0hbpKRsIWUcCvwyQ1QmF1n5dlrHY4A=="],
|
|
24
23
|
|
|
25
|
-
"@tkeron/
|
|
24
|
+
"@tkeron/tools": ["@tkeron/tools@0.5.0", "", { "peerDependencies": { "typescript": "^5.9.3" } }, "sha512-LDoc1jlEN/p0tBOd3NCC9mHv+4vBOCXqU3BnYAdVs0ZyXOFegFTNRK2thrQ4V0GpiQUbB8TE9F6sn/ALg6EuWg=="],
|
|
26
25
|
|
|
27
|
-
"@
|
|
28
|
-
|
|
29
|
-
"@tkeron/tools": ["@tkeron/tools@0.4.1", "", { "peerDependencies": { "typescript": "^5.9.3" } }, "sha512-nsmguSq/Ukx930ChwO11V433R786aJ/tniugzDdlfT/rzLrFxPJoHZerA71XGOIuD8/FRlvS7kJR9YI0CcxmqQ=="],
|
|
30
|
-
|
|
31
|
-
"@types/bun": ["@types/bun@1.3.11", "", { "dependencies": { "bun-types": "1.3.11" } }, "sha512-5vPne5QvtpjGpsGYXiFyycfpDF2ECyPcTSsFBMa0fraoxiQyMJ3SmuQIGhzPg2WJuWxVBoxWJ2kClYTcw/4fAg=="],
|
|
26
|
+
"@types/bun": ["@types/bun@1.3.14", "", { "dependencies": { "bun-types": "1.3.14" } }, "sha512-h1hFqFVcvAvD9j9K7ZW7vd82aSA+rTdznZa+5bwvCwqSB1jmmfLcbIWhOLx1/+boy/xmjgCs/OMUL8hRJSmnPw=="],
|
|
32
27
|
|
|
33
28
|
"@types/node": ["@types/node@25.3.0", "", { "dependencies": { "undici-types": "~7.18.0" } }, "sha512-4K3bqJpXpqfg2XKGK9bpDTc6xO/xoUP/RBWS7AtRMug6zZFaRekiLzjVtAoZMquxoAbzBvy5nxQ7veS5eYzf8A=="],
|
|
34
29
|
|
|
35
|
-
"
|
|
36
|
-
|
|
37
|
-
"ajv": ["ajv@8.18.0", "", { "dependencies": { "fast-deep-equal": "^3.1.3", "fast-uri": "^3.0.1", "json-schema-traverse": "^1.0.0", "require-from-string": "^2.0.2" } }, "sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A=="],
|
|
38
|
-
|
|
39
|
-
"ajv-formats": ["ajv-formats@3.0.1", "", { "dependencies": { "ajv": "^8.0.0" } }, "sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ=="],
|
|
40
|
-
|
|
41
|
-
"body-parser": ["body-parser@2.2.2", "", { "dependencies": { "bytes": "^3.1.2", "content-type": "^1.0.5", "debug": "^4.4.3", "http-errors": "^2.0.0", "iconv-lite": "^0.7.0", "on-finished": "^2.4.1", "qs": "^6.14.1", "raw-body": "^3.0.1", "type-is": "^2.0.1" } }, "sha512-oP5VkATKlNwcgvxi0vM0p/D3n2C3EReYVX+DNYs5TjZFn/oQt2j+4sVJtSMr18pdRr8wjTcBl6LoV+FUwzPmNA=="],
|
|
42
|
-
|
|
43
|
-
"bun-types": ["bun-types@1.3.11", "", { "dependencies": { "@types/node": "*" } }, "sha512-1KGPpoxQWl9f6wcZh57LvrPIInQMn2TQ7jsgxqpRzg+l0QPOFvJVH7HmvHo/AiPgwXy+/Thf6Ov3EdVn1vOabg=="],
|
|
44
|
-
|
|
45
|
-
"bytes": ["bytes@3.1.2", "", {}, "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg=="],
|
|
46
|
-
|
|
47
|
-
"call-bind-apply-helpers": ["call-bind-apply-helpers@1.0.2", "", { "dependencies": { "es-errors": "^1.3.0", "function-bind": "^1.1.2" } }, "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ=="],
|
|
48
|
-
|
|
49
|
-
"call-bound": ["call-bound@1.0.4", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.2", "get-intrinsic": "^1.3.0" } }, "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg=="],
|
|
50
|
-
|
|
51
|
-
"content-disposition": ["content-disposition@1.0.1", "", {}, "sha512-oIXISMynqSqm241k6kcQ5UwttDILMK4BiurCfGEREw6+X9jkkpEe5T9FZaApyLGGOnFuyMWZpdolTXMtvEJ08Q=="],
|
|
52
|
-
|
|
53
|
-
"content-type": ["content-type@1.0.5", "", {}, "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA=="],
|
|
54
|
-
|
|
55
|
-
"cookie": ["cookie@0.7.2", "", {}, "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w=="],
|
|
56
|
-
|
|
57
|
-
"cookie-signature": ["cookie-signature@1.2.2", "", {}, "sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg=="],
|
|
58
|
-
|
|
59
|
-
"cors": ["cors@2.8.6", "", { "dependencies": { "object-assign": "^4", "vary": "^1" } }, "sha512-tJtZBBHA6vjIAaF6EnIaq6laBBP9aq/Y3ouVJjEfoHbRBcHBAHYcMh/w8LDrk2PvIMMq8gmopa5D4V8RmbrxGw=="],
|
|
60
|
-
|
|
61
|
-
"cross-spawn": ["cross-spawn@7.0.6", "", { "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", "which": "^2.0.1" } }, "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA=="],
|
|
62
|
-
|
|
63
|
-
"debug": ["debug@4.4.3", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA=="],
|
|
64
|
-
|
|
65
|
-
"depd": ["depd@2.0.0", "", {}, "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw=="],
|
|
66
|
-
|
|
67
|
-
"dunder-proto": ["dunder-proto@1.0.1", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.1", "es-errors": "^1.3.0", "gopd": "^1.2.0" } }, "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A=="],
|
|
68
|
-
|
|
69
|
-
"ee-first": ["ee-first@1.1.1", "", {}, "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow=="],
|
|
70
|
-
|
|
71
|
-
"encodeurl": ["encodeurl@2.0.0", "", {}, "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg=="],
|
|
72
|
-
|
|
73
|
-
"es-define-property": ["es-define-property@1.0.1", "", {}, "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g=="],
|
|
74
|
-
|
|
75
|
-
"es-errors": ["es-errors@1.3.0", "", {}, "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw=="],
|
|
76
|
-
|
|
77
|
-
"es-object-atoms": ["es-object-atoms@1.1.1", "", { "dependencies": { "es-errors": "^1.3.0" } }, "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA=="],
|
|
78
|
-
|
|
79
|
-
"escape-html": ["escape-html@1.0.3", "", {}, "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow=="],
|
|
80
|
-
|
|
81
|
-
"etag": ["etag@1.8.1", "", {}, "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg=="],
|
|
82
|
-
|
|
83
|
-
"eventsource": ["eventsource@3.0.7", "", { "dependencies": { "eventsource-parser": "^3.0.1" } }, "sha512-CRT1WTyuQoD771GW56XEZFQ/ZoSfWid1alKGDYMmkt2yl8UXrVR4pspqWNEcqKvVIzg6PAltWjxcSSPrboA4iA=="],
|
|
84
|
-
|
|
85
|
-
"eventsource-parser": ["eventsource-parser@3.0.6", "", {}, "sha512-Vo1ab+QXPzZ4tCa8SwIHJFaSzy4R6SHf7BY79rFBDf0idraZWAkYrDjDj8uWaSm3S2TK+hJ7/t1CEmZ7jXw+pg=="],
|
|
86
|
-
|
|
87
|
-
"express": ["express@5.2.1", "", { "dependencies": { "accepts": "^2.0.0", "body-parser": "^2.2.1", "content-disposition": "^1.0.0", "content-type": "^1.0.5", "cookie": "^0.7.1", "cookie-signature": "^1.2.1", "debug": "^4.4.0", "depd": "^2.0.0", "encodeurl": "^2.0.0", "escape-html": "^1.0.3", "etag": "^1.8.1", "finalhandler": "^2.1.0", "fresh": "^2.0.0", "http-errors": "^2.0.0", "merge-descriptors": "^2.0.0", "mime-types": "^3.0.0", "on-finished": "^2.4.1", "once": "^1.4.0", "parseurl": "^1.3.3", "proxy-addr": "^2.0.7", "qs": "^6.14.0", "range-parser": "^1.2.1", "router": "^2.2.0", "send": "^1.1.0", "serve-static": "^2.2.0", "statuses": "^2.0.1", "type-is": "^2.0.1", "vary": "^1.1.2" } }, "sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw=="],
|
|
88
|
-
|
|
89
|
-
"express-rate-limit": ["express-rate-limit@8.2.1", "", { "dependencies": { "ip-address": "10.0.1" }, "peerDependencies": { "express": ">= 4.11" } }, "sha512-PCZEIEIxqwhzw4KF0n7QF4QqruVTcF73O5kFKUnGOyjbCCgizBBiFaYpd/fnBLUMPw/BWw9OsiN7GgrNYr7j6g=="],
|
|
90
|
-
|
|
91
|
-
"fast-deep-equal": ["fast-deep-equal@3.1.3", "", {}, "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="],
|
|
92
|
-
|
|
93
|
-
"fast-uri": ["fast-uri@3.1.0", "", {}, "sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA=="],
|
|
94
|
-
|
|
95
|
-
"finalhandler": ["finalhandler@2.1.1", "", { "dependencies": { "debug": "^4.4.0", "encodeurl": "^2.0.0", "escape-html": "^1.0.3", "on-finished": "^2.4.1", "parseurl": "^1.3.3", "statuses": "^2.0.1" } }, "sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA=="],
|
|
96
|
-
|
|
97
|
-
"forwarded": ["forwarded@0.2.0", "", {}, "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow=="],
|
|
98
|
-
|
|
99
|
-
"fresh": ["fresh@2.0.0", "", {}, "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A=="],
|
|
100
|
-
|
|
101
|
-
"function-bind": ["function-bind@1.1.2", "", {}, "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA=="],
|
|
102
|
-
|
|
103
|
-
"get-intrinsic": ["get-intrinsic@1.3.0", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.2", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "function-bind": "^1.1.2", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-symbols": "^1.1.0", "hasown": "^2.0.2", "math-intrinsics": "^1.1.0" } }, "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ=="],
|
|
104
|
-
|
|
105
|
-
"get-proto": ["get-proto@1.0.1", "", { "dependencies": { "dunder-proto": "^1.0.1", "es-object-atoms": "^1.0.0" } }, "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g=="],
|
|
106
|
-
|
|
107
|
-
"gopd": ["gopd@1.2.0", "", {}, "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg=="],
|
|
108
|
-
|
|
109
|
-
"has-symbols": ["has-symbols@1.1.0", "", {}, "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ=="],
|
|
110
|
-
|
|
111
|
-
"hasown": ["hasown@2.0.2", "", { "dependencies": { "function-bind": "^1.1.2" } }, "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ=="],
|
|
112
|
-
|
|
113
|
-
"hono": ["hono@4.12.1", "", {}, "sha512-hi9afu8g0lfJVLolxElAZGANCTTl6bewIdsRNhaywfP9K8BPf++F2z6OLrYGIinUwpRKzbZHMhPwvc0ZEpAwGw=="],
|
|
114
|
-
|
|
115
|
-
"http-errors": ["http-errors@2.0.1", "", { "dependencies": { "depd": "~2.0.0", "inherits": "~2.0.4", "setprototypeof": "~1.2.0", "statuses": "~2.0.2", "toidentifier": "~1.0.1" } }, "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ=="],
|
|
116
|
-
|
|
117
|
-
"iconv-lite": ["iconv-lite@0.7.2", "", { "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" } }, "sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw=="],
|
|
118
|
-
|
|
119
|
-
"inherits": ["inherits@2.0.4", "", {}, "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="],
|
|
120
|
-
|
|
121
|
-
"ip-address": ["ip-address@10.0.1", "", {}, "sha512-NWv9YLW4PoW2B7xtzaS3NCot75m6nK7Icdv0o3lfMceJVRfSoQwqD4wEH5rLwoKJwUiZ/rfpiVBhnaF0FK4HoA=="],
|
|
122
|
-
|
|
123
|
-
"ipaddr.js": ["ipaddr.js@1.9.1", "", {}, "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g=="],
|
|
30
|
+
"bun-types": ["bun-types@1.3.14", "", { "dependencies": { "@types/node": "*" } }, "sha512-4N0ig0fEomHt5R0KCFWjovxow98rIoRwKolrYdCcknNwMekCXRnWEUvgu5soYV8QXtVsrUD8B95MBOZGPvr6KQ=="],
|
|
124
31
|
|
|
125
|
-
"
|
|
32
|
+
"prettier": ["prettier@3.8.3", "", { "bin": { "prettier": "bin/prettier.cjs" } }, "sha512-7igPTM53cGHMW8xWuVTydi2KO233VFiTNyF5hLJqpilHfmn8C8gPf+PS7dUT64YcXFbiMGZxS9pCSxL/Dxm/Jw=="],
|
|
126
33
|
|
|
127
|
-
"
|
|
128
|
-
|
|
129
|
-
"jose": ["jose@6.1.3", "", {}, "sha512-0TpaTfihd4QMNwrz/ob2Bp7X04yuxJkjRGi4aKmOqwhov54i6u79oCv7T+C7lo70MKH6BesI3vscD1yb/yzKXQ=="],
|
|
130
|
-
|
|
131
|
-
"json-schema-traverse": ["json-schema-traverse@1.0.0", "", {}, "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="],
|
|
132
|
-
|
|
133
|
-
"json-schema-typed": ["json-schema-typed@8.0.2", "", {}, "sha512-fQhoXdcvc3V28x7C7BMs4P5+kNlgUURe2jmUT1T//oBRMDrqy1QPelJimwZGo7Hg9VPV3EQV5Bnq4hbFy2vetA=="],
|
|
134
|
-
|
|
135
|
-
"math-intrinsics": ["math-intrinsics@1.1.0", "", {}, "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g=="],
|
|
136
|
-
|
|
137
|
-
"media-typer": ["media-typer@1.1.0", "", {}, "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw=="],
|
|
138
|
-
|
|
139
|
-
"merge-descriptors": ["merge-descriptors@2.0.0", "", {}, "sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g=="],
|
|
140
|
-
|
|
141
|
-
"mime-db": ["mime-db@1.54.0", "", {}, "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ=="],
|
|
142
|
-
|
|
143
|
-
"mime-types": ["mime-types@3.0.2", "", { "dependencies": { "mime-db": "^1.54.0" } }, "sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A=="],
|
|
144
|
-
|
|
145
|
-
"ms": ["ms@2.1.3", "", {}, "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="],
|
|
146
|
-
|
|
147
|
-
"negotiator": ["negotiator@1.0.0", "", {}, "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg=="],
|
|
148
|
-
|
|
149
|
-
"object-assign": ["object-assign@4.1.1", "", {}, "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg=="],
|
|
150
|
-
|
|
151
|
-
"object-inspect": ["object-inspect@1.13.4", "", {}, "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew=="],
|
|
152
|
-
|
|
153
|
-
"on-finished": ["on-finished@2.4.1", "", { "dependencies": { "ee-first": "1.1.1" } }, "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg=="],
|
|
154
|
-
|
|
155
|
-
"once": ["once@1.4.0", "", { "dependencies": { "wrappy": "1" } }, "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w=="],
|
|
156
|
-
|
|
157
|
-
"parseurl": ["parseurl@1.3.3", "", {}, "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ=="],
|
|
158
|
-
|
|
159
|
-
"path-key": ["path-key@3.1.1", "", {}, "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="],
|
|
160
|
-
|
|
161
|
-
"path-to-regexp": ["path-to-regexp@8.3.0", "", {}, "sha512-7jdwVIRtsP8MYpdXSwOS0YdD0Du+qOoF/AEPIt88PcCFrZCzx41oxku1jD88hZBwbNUIEfpqvuhjFaMAqMTWnA=="],
|
|
162
|
-
|
|
163
|
-
"pkce-challenge": ["pkce-challenge@5.0.1", "", {}, "sha512-wQ0b/W4Fr01qtpHlqSqspcj3EhBvimsdh0KlHhH8HRZnMsEa0ea2fTULOXOS9ccQr3om+GcGRk4e+isrZWV8qQ=="],
|
|
164
|
-
|
|
165
|
-
"prettier": ["prettier@3.8.1", "", { "bin": { "prettier": "bin/prettier.cjs" } }, "sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg=="],
|
|
166
|
-
|
|
167
|
-
"proxy-addr": ["proxy-addr@2.0.7", "", { "dependencies": { "forwarded": "0.2.0", "ipaddr.js": "1.9.1" } }, "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg=="],
|
|
168
|
-
|
|
169
|
-
"qs": ["qs@6.15.0", "", { "dependencies": { "side-channel": "^1.1.0" } }, "sha512-mAZTtNCeetKMH+pSjrb76NAM8V9a05I9aBZOHztWy/UqcJdQYNsf59vrRKWnojAT9Y+GbIvoTBC++CPHqpDBhQ=="],
|
|
170
|
-
|
|
171
|
-
"range-parser": ["range-parser@1.2.1", "", {}, "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg=="],
|
|
172
|
-
|
|
173
|
-
"raw-body": ["raw-body@3.0.2", "", { "dependencies": { "bytes": "~3.1.2", "http-errors": "~2.0.1", "iconv-lite": "~0.7.0", "unpipe": "~1.0.0" } }, "sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA=="],
|
|
174
|
-
|
|
175
|
-
"require-from-string": ["require-from-string@2.0.2", "", {}, "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw=="],
|
|
176
|
-
|
|
177
|
-
"router": ["router@2.2.0", "", { "dependencies": { "debug": "^4.4.0", "depd": "^2.0.0", "is-promise": "^4.0.0", "parseurl": "^1.3.3", "path-to-regexp": "^8.0.0" } }, "sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ=="],
|
|
178
|
-
|
|
179
|
-
"safer-buffer": ["safer-buffer@2.1.2", "", {}, "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="],
|
|
180
|
-
|
|
181
|
-
"send": ["send@1.2.1", "", { "dependencies": { "debug": "^4.4.3", "encodeurl": "^2.0.0", "escape-html": "^1.0.3", "etag": "^1.8.1", "fresh": "^2.0.0", "http-errors": "^2.0.1", "mime-types": "^3.0.2", "ms": "^2.1.3", "on-finished": "^2.4.1", "range-parser": "^1.2.1", "statuses": "^2.0.2" } }, "sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ=="],
|
|
182
|
-
|
|
183
|
-
"serve-static": ["serve-static@2.2.1", "", { "dependencies": { "encodeurl": "^2.0.0", "escape-html": "^1.0.3", "parseurl": "^1.3.3", "send": "^1.2.0" } }, "sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw=="],
|
|
184
|
-
|
|
185
|
-
"setprototypeof": ["setprototypeof@1.2.0", "", {}, "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw=="],
|
|
186
|
-
|
|
187
|
-
"shebang-command": ["shebang-command@2.0.0", "", { "dependencies": { "shebang-regex": "^3.0.0" } }, "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA=="],
|
|
188
|
-
|
|
189
|
-
"shebang-regex": ["shebang-regex@3.0.0", "", {}, "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="],
|
|
190
|
-
|
|
191
|
-
"side-channel": ["side-channel@1.1.0", "", { "dependencies": { "es-errors": "^1.3.0", "object-inspect": "^1.13.3", "side-channel-list": "^1.0.0", "side-channel-map": "^1.0.1", "side-channel-weakmap": "^1.0.2" } }, "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw=="],
|
|
192
|
-
|
|
193
|
-
"side-channel-list": ["side-channel-list@1.0.0", "", { "dependencies": { "es-errors": "^1.3.0", "object-inspect": "^1.13.3" } }, "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA=="],
|
|
194
|
-
|
|
195
|
-
"side-channel-map": ["side-channel-map@1.0.1", "", { "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.5", "object-inspect": "^1.13.3" } }, "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA=="],
|
|
196
|
-
|
|
197
|
-
"side-channel-weakmap": ["side-channel-weakmap@1.0.2", "", { "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.5", "object-inspect": "^1.13.3", "side-channel-map": "^1.0.1" } }, "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A=="],
|
|
198
|
-
|
|
199
|
-
"statuses": ["statuses@2.0.2", "", {}, "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw=="],
|
|
200
|
-
|
|
201
|
-
"toidentifier": ["toidentifier@1.0.1", "", {}, "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA=="],
|
|
202
|
-
|
|
203
|
-
"type-is": ["type-is@2.0.1", "", { "dependencies": { "content-type": "^1.0.5", "media-typer": "^1.1.0", "mime-types": "^3.0.0" } }, "sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw=="],
|
|
204
|
-
|
|
205
|
-
"typescript": ["typescript@6.0.2", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-bGdAIrZ0wiGDo5l8c++HWtbaNCWTS4UTv7RaTH/ThVIgjkveJt83m74bBHMJkuCbslY8ixgLBVZJIOiQlQTjfQ=="],
|
|
34
|
+
"typescript": ["typescript@6.0.3", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw=="],
|
|
206
35
|
|
|
207
36
|
"undici-types": ["undici-types@7.18.2", "", {}, "sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w=="],
|
|
208
|
-
|
|
209
|
-
"unpipe": ["unpipe@1.0.0", "", {}, "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ=="],
|
|
210
|
-
|
|
211
|
-
"vary": ["vary@1.1.2", "", {}, "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg=="],
|
|
212
|
-
|
|
213
|
-
"which": ["which@2.0.2", "", { "dependencies": { "isexe": "^2.0.0" }, "bin": { "node-which": "./bin/node-which" } }, "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA=="],
|
|
214
|
-
|
|
215
|
-
"wrappy": ["wrappy@1.0.2", "", {}, "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="],
|
|
216
|
-
|
|
217
|
-
"zod": ["zod@4.3.6", "", {}, "sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg=="],
|
|
218
|
-
|
|
219
|
-
"zod-to-json-schema": ["zod-to-json-schema@3.25.1", "", { "peerDependencies": { "zod": "^3.25 || ^4" } }, "sha512-pM/SU9d3YAggzi6MtR4h7ruuQlqKtad8e9S0fmxcMi+ueAK5Korys/aWcV9LIIHTVbj01NdzxcnXSN+O74ZIVA=="],
|
|
220
37
|
}
|
|
221
38
|
}
|
package/changelog.md
CHANGED
|
@@ -1,3 +1,58 @@
|
|
|
1
|
+
# v6.0.1
|
|
2
|
+
|
|
3
|
+
## Docs: CSS via components pattern
|
|
4
|
+
|
|
5
|
+
- Skills updated to enforce "CSS via components, never `<link rel="stylesheet">`" as a non-negotiable rule (`tkeron`, `tkeron-patterns`, `tkeron-organization`, `tkeron-troubleshooting`)
|
|
6
|
+
- `tkeron-patterns` adds a full "CSS via components" section covering per-component `<style>` in `.com.html` (auto-dedup, tree-shaking) and global CSS inlined through a `.com.ts` loader
|
|
7
|
+
- New anti-pattern entry: `<link rel="stylesheet">` (extra request, no dedup, blocks first paint)
|
|
8
|
+
- `tkeron-organization` clarifies that `styles/` is optional and `.css` files are free to live anywhere — always inlined via a component, never linked
|
|
9
|
+
|
|
10
|
+
## Examples: rewrite `init_sample` + new style examples
|
|
11
|
+
|
|
12
|
+
- `init_sample` reorganized into the canonical structure: multi-page (`index.html`, `about.html`, `docs.html`), shared components under `components/layout/`, `components/ui/`, `components/content/`, build utils under `utils/`, global CSS in `styles/main.css` inlined via `styles-injector.com.ts`
|
|
13
|
+
- New example `with_global_styles/`: demonstrates the global-styles loader component pattern vs the `<link>` anti-pattern
|
|
14
|
+
- New example `with_style_dedup/`: `tag-chip` component proving per-component `<style>` dedup in the build output
|
|
15
|
+
- `tests/init.test.ts` updated to assert the new `init_sample` layout
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
# v6.0.0
|
|
20
|
+
|
|
21
|
+
## BREAKING: remove MCP server
|
|
22
|
+
|
|
23
|
+
- Removed the `tkeron-mcp` bin and the entire MCP server implementation (`mcp-server.ts`, `docs/mcp-server.md`, `tests/mcp-server.test.ts`)
|
|
24
|
+
- Removed `@modelcontextprotocol/sdk` dependency
|
|
25
|
+
- AI agent integration is now provided through the new `tk skills` command (see below)
|
|
26
|
+
- Migration: replace any `tkeron-mcp` MCP server configuration with `tk skills` to drop the skill files directly into your project
|
|
27
|
+
|
|
28
|
+
## Feature: `tk skills` command
|
|
29
|
+
|
|
30
|
+
- New CLI subcommand: `tk skills [target] [--force] [--dry-run]`
|
|
31
|
+
- Installs bundled AI agent skills (Markdown `SKILL.md` files) into the chosen directory (default `./skills/`)
|
|
32
|
+
- Auto-detects target environment (Copilot, Cursor, Claude) and applies environment-specific transforms (e.g. Cursor frontmatter `alwaysApply: false`)
|
|
33
|
+
- Bundled skills: `tkeron`, `tkeron-components`, `tkeron-organization`, `tkeron-patterns`, `tkeron-testing`, `tkeron-troubleshooting`
|
|
34
|
+
|
|
35
|
+
## Refactor: extract generic utilities to @tkeron/tools
|
|
36
|
+
|
|
37
|
+
- Five internal helpers moved to `@tkeron/tools@0.5.0`: `addFrontmatterField`, `promptUser`, `setupSigintHandler`, `detectEnvironments`, `cleanupOrphanedTempDirs`
|
|
38
|
+
- All imports now resolve through `@tkeron/tools`
|
|
39
|
+
- `TEMP_DIR_PREFIX` stays in `build.ts` (still `.tktmp_build-`) and is now passed explicitly to `cleanupOrphanedTempDirs`
|
|
40
|
+
|
|
41
|
+
## Dependencies
|
|
42
|
+
|
|
43
|
+
- `@tkeron/commands` 0.4.7 → 0.4.8
|
|
44
|
+
- `@tkeron/html-parser` 1.5.6 → 1.5.7
|
|
45
|
+
- `@tkeron/tools` ^0.4.1 → ^0.5.0
|
|
46
|
+
- Removed `@modelcontextprotocol/sdk`
|
|
47
|
+
- Dev: `@types/bun` ^1.3.11 → ^1.3.14, `prettier` ^3.8.1 → ^3.8.3, `typescript` ^6.0.2 → ^6.0.3
|
|
48
|
+
|
|
49
|
+
## Docs & packaging
|
|
50
|
+
|
|
51
|
+
- README rewritten: MCP section replaced with `tk skills` usage and AI agent integration docs
|
|
52
|
+
- Package keywords updated to reflect new direction (`ai-agents` replaces `mcp`, `model-context-protocol`, `ai-integration`)
|
|
53
|
+
|
|
54
|
+
---
|
|
55
|
+
|
|
1
56
|
# v5.3.0
|
|
2
57
|
|
|
3
58
|
## Feature: Automatic component style deduplication
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<title>About — tkeron</title>
|
|
7
|
+
<styles-injector></styles-injector>
|
|
8
|
+
</head>
|
|
9
|
+
<body>
|
|
10
|
+
<site-header></site-header>
|
|
11
|
+
<main class="container">
|
|
12
|
+
<article class="page">
|
|
13
|
+
<h1>About</h1>
|
|
14
|
+
<about-intro></about-intro>
|
|
15
|
+
</article>
|
|
16
|
+
</main>
|
|
17
|
+
<site-footer></site-footer>
|
|
18
|
+
</body>
|
|
19
|
+
</html>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
**tkeron** is a build-time TypeScript toolkit for vanilla web development.
|
|
2
|
+
|
|
3
|
+
It compiles `.ts` to `.js`, inlines components, and runs pre/post scripts —
|
|
4
|
+
all at build time. No frameworks, no runtime, no bundler.
|
|
5
|
+
|
|
6
|
+
This Markdown lives in `components/content/about-intro.com.md` and is reused
|
|
7
|
+
on the home page (inside the `<markdown-card>`) and on the **About** page.
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
<style>
|
|
2
|
+
.hero {
|
|
3
|
+
text-align: center;
|
|
4
|
+
color: white;
|
|
5
|
+
display: flex;
|
|
6
|
+
flex-direction: column;
|
|
7
|
+
align-items: center;
|
|
8
|
+
justify-content: center;
|
|
9
|
+
background: rgba(255, 255, 255, 0.1);
|
|
10
|
+
backdrop-filter: blur(10px);
|
|
11
|
+
padding: 1.5rem;
|
|
12
|
+
border-radius: 12px;
|
|
13
|
+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
14
|
+
grid-row: span 2;
|
|
15
|
+
}
|
|
16
|
+
.hero .features {
|
|
17
|
+
margin-top: 1rem;
|
|
18
|
+
text-align: left;
|
|
19
|
+
width: 100%;
|
|
20
|
+
}
|
|
21
|
+
.hero .features li {
|
|
22
|
+
margin-bottom: 0.3rem;
|
|
23
|
+
padding-left: 0.5rem;
|
|
24
|
+
opacity: 0.9;
|
|
25
|
+
font-size: 0.85rem;
|
|
26
|
+
}
|
|
27
|
+
.hero .logo {
|
|
28
|
+
width: 200px;
|
|
29
|
+
height: 200px;
|
|
30
|
+
margin-bottom: 1rem;
|
|
31
|
+
filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
|
|
32
|
+
animation: hero-float 3s ease-in-out infinite;
|
|
33
|
+
}
|
|
34
|
+
.hero .subtitle {
|
|
35
|
+
font-size: 0.9rem;
|
|
36
|
+
opacity: 0.95;
|
|
37
|
+
}
|
|
38
|
+
.hero .links {
|
|
39
|
+
margin-top: 1.5rem;
|
|
40
|
+
display: flex;
|
|
41
|
+
gap: 0.75rem;
|
|
42
|
+
width: 100%;
|
|
43
|
+
}
|
|
44
|
+
.hero .links a {
|
|
45
|
+
flex: 1;
|
|
46
|
+
padding: 0.65rem;
|
|
47
|
+
color: white;
|
|
48
|
+
text-decoration: none;
|
|
49
|
+
border-radius: 6px;
|
|
50
|
+
text-align: center;
|
|
51
|
+
font-weight: 600;
|
|
52
|
+
font-size: 0.85rem;
|
|
53
|
+
}
|
|
54
|
+
.hero .links .npm {
|
|
55
|
+
background: rgba(203, 56, 55, 0.9);
|
|
56
|
+
}
|
|
57
|
+
.hero .links .github {
|
|
58
|
+
background: rgba(36, 41, 46, 0.9);
|
|
59
|
+
}
|
|
60
|
+
@keyframes hero-float {
|
|
61
|
+
0%,
|
|
62
|
+
100% {
|
|
63
|
+
transform: translateY(0);
|
|
64
|
+
}
|
|
65
|
+
50% {
|
|
66
|
+
transform: translateY(-10px);
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
</style>
|
|
70
|
+
<div class="hero">
|
|
71
|
+
<div>
|
|
72
|
+
<img src="./assets/profile.png" alt="tkeron logo" class="logo" />
|
|
73
|
+
<h1>tkeron</h1>
|
|
74
|
+
<p class="subtitle">Build-time TypeScript for modern web development</p>
|
|
75
|
+
</div>
|
|
76
|
+
<div class="features">
|
|
77
|
+
<ul style="list-style: none">
|
|
78
|
+
<li>⚡ Fast builds with Bun</li>
|
|
79
|
+
<li>🎯 Build-time HTML generation</li>
|
|
80
|
+
<li>🧩 HTML & TypeScript components</li>
|
|
81
|
+
<li>🔧 Pure TypeScript & HTML</li>
|
|
82
|
+
</ul>
|
|
83
|
+
</div>
|
|
84
|
+
<div class="links">
|
|
85
|
+
<a href="https://www.npmjs.com/package/tkeron" target="_blank" class="npm">📦 npm</a>
|
|
86
|
+
<a href="https://github.com/tkeron/tkeron" target="_blank" class="github">⭐ GitHub</a>
|
|
87
|
+
</div>
|
|
88
|
+
</div>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<style>
|
|
2
|
+
.site-footer {
|
|
3
|
+
width: 100%;
|
|
4
|
+
max-width: 1200px;
|
|
5
|
+
margin: 1rem auto 0;
|
|
6
|
+
padding: 1rem 1.25rem;
|
|
7
|
+
color: rgba(255, 255, 255, 0.85);
|
|
8
|
+
font-size: 0.85rem;
|
|
9
|
+
text-align: center;
|
|
10
|
+
}
|
|
11
|
+
.site-footer a {
|
|
12
|
+
color: white;
|
|
13
|
+
text-decoration: underline;
|
|
14
|
+
}
|
|
15
|
+
</style>
|
|
16
|
+
<footer class="site-footer">
|
|
17
|
+
Built with
|
|
18
|
+
<a href="https://github.com/tkeron/tkeron" target="_blank">tkeron</a>
|
|
19
|
+
— zero runtime, vanilla TypeScript.
|
|
20
|
+
</footer>
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
<style>
|
|
2
|
+
.site-header {
|
|
3
|
+
width: 100%;
|
|
4
|
+
max-width: 1200px;
|
|
5
|
+
margin: 0 auto 1rem;
|
|
6
|
+
padding: 1rem 1.25rem;
|
|
7
|
+
background: rgba(255, 255, 255, 0.12);
|
|
8
|
+
backdrop-filter: blur(10px);
|
|
9
|
+
border-radius: 12px;
|
|
10
|
+
display: flex;
|
|
11
|
+
align-items: center;
|
|
12
|
+
justify-content: space-between;
|
|
13
|
+
color: white;
|
|
14
|
+
}
|
|
15
|
+
.site-header .brand {
|
|
16
|
+
font-weight: 700;
|
|
17
|
+
font-size: 1.1rem;
|
|
18
|
+
text-decoration: none;
|
|
19
|
+
color: white;
|
|
20
|
+
}
|
|
21
|
+
.site-header nav {
|
|
22
|
+
display: flex;
|
|
23
|
+
gap: 0.75rem;
|
|
24
|
+
}
|
|
25
|
+
.site-header nav a {
|
|
26
|
+
color: white;
|
|
27
|
+
text-decoration: none;
|
|
28
|
+
padding: 0.4rem 0.75rem;
|
|
29
|
+
border-radius: 6px;
|
|
30
|
+
font-size: 0.9rem;
|
|
31
|
+
background: rgba(255, 255, 255, 0.1);
|
|
32
|
+
}
|
|
33
|
+
.site-header nav a:hover {
|
|
34
|
+
background: rgba(255, 255, 255, 0.25);
|
|
35
|
+
}
|
|
36
|
+
</style>
|
|
37
|
+
<header class="site-header">
|
|
38
|
+
<a href="./index.html" class="brand">tkeron</a>
|
|
39
|
+
<nav>
|
|
40
|
+
<a href="./index.html">Home</a>
|
|
41
|
+
<a href="./about.html">About</a>
|
|
42
|
+
<a href="./docs.html">Docs</a>
|
|
43
|
+
</nav>
|
|
44
|
+
</header>
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
<style>
|
|
2
|
+
.counter-button-wrap {
|
|
3
|
+
margin-top: 1rem;
|
|
4
|
+
text-align: center;
|
|
5
|
+
}
|
|
6
|
+
.counter-button-wrap button {
|
|
7
|
+
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
8
|
+
color: white;
|
|
9
|
+
border: none;
|
|
10
|
+
padding: 0.75rem 2rem;
|
|
11
|
+
border-radius: 8px;
|
|
12
|
+
cursor: pointer;
|
|
13
|
+
font-size: 1rem;
|
|
14
|
+
font-weight: 600;
|
|
15
|
+
transition:
|
|
16
|
+
transform 0.1s,
|
|
17
|
+
box-shadow 0.2s;
|
|
18
|
+
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
|
19
|
+
}
|
|
20
|
+
.counter-button-wrap button:hover {
|
|
21
|
+
transform: scale(1.05);
|
|
22
|
+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
|
|
23
|
+
}
|
|
24
|
+
.counter-button-wrap button:active {
|
|
25
|
+
transform: scale(0.98);
|
|
26
|
+
}
|
|
27
|
+
.counter-button-wrap .count {
|
|
28
|
+
font-size: 2rem;
|
|
29
|
+
font-weight: bold;
|
|
30
|
+
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
31
|
+
-webkit-background-clip: text;
|
|
32
|
+
-webkit-text-fill-color: transparent;
|
|
33
|
+
background-clip: text;
|
|
34
|
+
margin-top: 1rem;
|
|
35
|
+
}
|
|
36
|
+
</style>
|
|
37
|
+
<section class="counter-card">
|
|
38
|
+
<h2>🎯 Client-side TypeScript</h2>
|
|
39
|
+
<p style="margin-bottom: 0.75rem">Interactive features in the browser:</p>
|
|
40
|
+
<div class="counter-button-wrap">
|
|
41
|
+
<button id="increment">Click me!</button>
|
|
42
|
+
<div class="count">Clicks: <span id="count">0</span></div>
|
|
43
|
+
</div>
|
|
44
|
+
<p style="font-size: 0.85rem; color: #666; margin-top: 0.75rem">
|
|
45
|
+
✓ Event handling & DOM manipulation<br />✓ Regular TypeScript for
|
|
46
|
+
interactivity
|
|
47
|
+
</p>
|
|
48
|
+
</section>
|