@rune-kit/rune 2.3.3 → 2.6.0
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 +86 -17
- package/compiler/__tests__/pack-split.test.js +141 -1
- package/compiler/__tests__/parser.test.js +147 -55
- package/compiler/__tests__/scripts-bundling.test.js +283 -0
- package/compiler/__tests__/skill-index.test.js +218 -0
- package/compiler/__tests__/tier-override.test.js +41 -0
- package/compiler/adapters/antigravity.js +71 -53
- package/compiler/adapters/codex.js +4 -0
- package/compiler/adapters/cursor.js +4 -0
- package/compiler/adapters/generic.js +4 -0
- package/compiler/adapters/openclaw.js +4 -0
- package/compiler/adapters/opencode.js +4 -0
- package/compiler/adapters/windsurf.js +4 -0
- package/compiler/bin/rune.js +355 -355
- package/compiler/doctor.js +11 -1
- package/compiler/emitter.js +678 -386
- package/compiler/parser.js +267 -247
- package/compiler/transforms/scripts-path.js +18 -0
- package/extensions/zalo/PACK.md +20 -1
- package/extensions/zalo/references/conversation-management.md +214 -0
- package/extensions/zalo/references/eval-scenarios.md +157 -0
- package/extensions/zalo/references/listen-mode.md +237 -0
- package/extensions/zalo/references/mcp-production.md +274 -0
- package/extensions/zalo/references/multi-account-proxy.md +224 -0
- package/extensions/zalo/references/vietqr-banking.md +160 -0
- package/hooks/hooks.json +12 -0
- package/hooks/intent-router/index.cjs +108 -0
- package/hooks/pre-tool-guard/index.cjs +177 -68
- package/package.json +63 -64
- package/skills/brainstorm/SKILL.md +2 -0
- package/skills/cook/SKILL.md +661 -648
- package/skills/debug/SKILL.md +394 -392
- package/skills/deploy/SKILL.md +2 -0
- package/skills/fix/SKILL.md +283 -281
- package/skills/marketing/SKILL.md +3 -0
- package/skills/onboard/SKILL.md +7 -0
- package/skills/plan/SKILL.md +344 -342
- package/skills/preflight/SKILL.md +362 -360
- package/skills/review/SKILL.md +491 -489
- package/skills/scout/SKILL.md +1 -0
- package/skills/sentinel/SKILL.md +319 -296
- package/skills/sentinel/references/auth-crypto-reference.md +192 -0
- package/skills/sentinel/references/desktop-security.md +201 -0
- package/skills/sentinel/references/supply-chain.md +160 -0
- package/skills/session-bridge/SKILL.md +1 -0
- package/skills/slides/SKILL.md +142 -0
- package/skills/slides/scripts/build-deck.js +158 -0
- package/skills/team/SKILL.md +1 -0
- package/skills/test/SKILL.md +587 -585
- package/skills/verification/SKILL.md +1 -0
- package/skills/watchdog/SKILL.md +2 -0
- package/docs/ANTIGRAVITY-GAP-ANALYSIS.md +0 -369
- package/docs/ARCHITECTURE.md +0 -332
- package/docs/COMMUNITY-PACKS.md +0 -109
- package/docs/CONTRIBUTING-L4.md +0 -215
- package/docs/CROSS-IDE-ANALYSIS.md +0 -164
- package/docs/EXTENSION-TEMPLATE.md +0 -126
- package/docs/MESH-RULES.md +0 -34
- package/docs/MULTI-PLATFORM.md +0 -804
- package/docs/SKILL-DEPTH-AUDIT.md +0 -191
- package/docs/SKILL-TEMPLATE.md +0 -118
- package/docs/TRADE-MATRIX.md +0 -327
- package/docs/VERSIONING.md +0 -91
- package/docs/VISION.md +0 -263
- package/docs/assets/demo-subtitles.srt +0 -215
- package/docs/assets/end-card.html +0 -276
- package/docs/assets/mesh-diagram.html +0 -654
- package/docs/assets/thumbnail.html +0 -295
- package/docs/guides/cli.md +0 -403
- package/docs/guides/index.html +0 -1450
- package/docs/index.html +0 -1005
- package/docs/references/claudekit-analysis.md +0 -414
- package/docs/references/voltagent-analysis.md +0 -189
- package/docs/script.js +0 -495
- package/docs/skills/index.html +0 -832
- package/docs/style.css +0 -958
- package/docs/video-demo-plan.md +0 -172
|
@@ -1,276 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html lang="en">
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="UTF-8">
|
|
5
|
-
<title>Rune — End Card</title>
|
|
6
|
-
<style>
|
|
7
|
-
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@600;700&family=JetBrains+Mono:wght@500;700&family=Inter:wght@400;500;600&display=swap');
|
|
8
|
-
|
|
9
|
-
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
10
|
-
|
|
11
|
-
body {
|
|
12
|
-
width: 1280px;
|
|
13
|
-
height: 720px;
|
|
14
|
-
overflow: hidden;
|
|
15
|
-
background: #0a0e17;
|
|
16
|
-
font-family: 'Inter', sans-serif;
|
|
17
|
-
display: flex;
|
|
18
|
-
align-items: center;
|
|
19
|
-
justify-content: center;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.card {
|
|
23
|
-
width: 1280px;
|
|
24
|
-
height: 720px;
|
|
25
|
-
position: relative;
|
|
26
|
-
display: flex;
|
|
27
|
-
flex-direction: column;
|
|
28
|
-
align-items: center;
|
|
29
|
-
justify-content: center;
|
|
30
|
-
gap: 32px;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
/* Background effects */
|
|
34
|
-
.bg-grid {
|
|
35
|
-
position: absolute;
|
|
36
|
-
inset: 0;
|
|
37
|
-
background-image:
|
|
38
|
-
linear-gradient(rgba(99,102,241,0.03) 1px, transparent 1px),
|
|
39
|
-
linear-gradient(90deg, rgba(99,102,241,0.03) 1px, transparent 1px);
|
|
40
|
-
background-size: 40px 40px;
|
|
41
|
-
z-index: 0;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.bg-glow-center {
|
|
45
|
-
position: absolute;
|
|
46
|
-
top: 50%;
|
|
47
|
-
left: 50%;
|
|
48
|
-
transform: translate(-50%, -50%);
|
|
49
|
-
width: 600px;
|
|
50
|
-
height: 400px;
|
|
51
|
-
background: radial-gradient(ellipse, rgba(99,102,241,0.1) 0%, transparent 70%);
|
|
52
|
-
z-index: 0;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
/* Logo */
|
|
56
|
-
.logo-section {
|
|
57
|
-
display: flex;
|
|
58
|
-
align-items: center;
|
|
59
|
-
gap: 16px;
|
|
60
|
-
z-index: 1;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
.logo-icon {
|
|
64
|
-
width: 64px;
|
|
65
|
-
height: 64px;
|
|
66
|
-
background: linear-gradient(135deg, #ef4444 0%, #6366f1 100%);
|
|
67
|
-
border-radius: 16px;
|
|
68
|
-
display: flex;
|
|
69
|
-
align-items: center;
|
|
70
|
-
justify-content: center;
|
|
71
|
-
box-shadow: 0 8px 32px rgba(99,102,241,0.3);
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
.logo-icon span {
|
|
75
|
-
font-family: 'Space Grotesk', sans-serif;
|
|
76
|
-
font-size: 32px;
|
|
77
|
-
font-weight: 700;
|
|
78
|
-
color: white;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
.logo-name {
|
|
82
|
-
font-family: 'Space Grotesk', sans-serif;
|
|
83
|
-
font-size: 48px;
|
|
84
|
-
font-weight: 700;
|
|
85
|
-
color: #f8fafc;
|
|
86
|
-
letter-spacing: -1px;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
/* Tagline */
|
|
90
|
-
.tagline {
|
|
91
|
-
font-size: 20px;
|
|
92
|
-
color: #94a3b8;
|
|
93
|
-
font-weight: 500;
|
|
94
|
-
letter-spacing: 0.5px;
|
|
95
|
-
z-index: 1;
|
|
96
|
-
margin-top: -16px;
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
/* Install commands */
|
|
100
|
-
.commands {
|
|
101
|
-
display: flex;
|
|
102
|
-
flex-direction: column;
|
|
103
|
-
gap: 12px;
|
|
104
|
-
z-index: 1;
|
|
105
|
-
margin-top: 8px;
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
.command-row {
|
|
109
|
-
display: flex;
|
|
110
|
-
align-items: center;
|
|
111
|
-
gap: 16px;
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
.platform-label {
|
|
115
|
-
width: 110px;
|
|
116
|
-
text-align: right;
|
|
117
|
-
font-size: 13px;
|
|
118
|
-
color: #64748b;
|
|
119
|
-
font-weight: 500;
|
|
120
|
-
text-transform: uppercase;
|
|
121
|
-
letter-spacing: 1px;
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
.command-box {
|
|
125
|
-
background: #0d1117;
|
|
126
|
-
border: 1px solid #30363d;
|
|
127
|
-
border-radius: 8px;
|
|
128
|
-
padding: 12px 20px;
|
|
129
|
-
font-family: 'JetBrains Mono', monospace;
|
|
130
|
-
font-size: 16px;
|
|
131
|
-
color: #e6edf3;
|
|
132
|
-
font-weight: 500;
|
|
133
|
-
min-width: 480px;
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
.command-box .highlight {
|
|
137
|
-
color: #79c0ff;
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
.command-box .package {
|
|
141
|
-
color: #ffa657;
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
/* Stats row */
|
|
145
|
-
.stats-row {
|
|
146
|
-
display: flex;
|
|
147
|
-
gap: 48px;
|
|
148
|
-
z-index: 1;
|
|
149
|
-
margin-top: 12px;
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
.stat {
|
|
153
|
-
text-align: center;
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
.stat-value {
|
|
157
|
-
font-family: 'JetBrains Mono', monospace;
|
|
158
|
-
font-size: 28px;
|
|
159
|
-
font-weight: 700;
|
|
160
|
-
color: #f59e0b;
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
.stat-label {
|
|
164
|
-
font-size: 12px;
|
|
165
|
-
color: #64748b;
|
|
166
|
-
text-transform: uppercase;
|
|
167
|
-
letter-spacing: 1px;
|
|
168
|
-
margin-top: 2px;
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
/* GitHub link */
|
|
172
|
-
.github-link {
|
|
173
|
-
z-index: 1;
|
|
174
|
-
display: flex;
|
|
175
|
-
align-items: center;
|
|
176
|
-
gap: 8px;
|
|
177
|
-
color: #94a3b8;
|
|
178
|
-
font-size: 16px;
|
|
179
|
-
font-weight: 500;
|
|
180
|
-
margin-top: 8px;
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
.github-link svg {
|
|
184
|
-
width: 20px;
|
|
185
|
-
height: 20px;
|
|
186
|
-
fill: #94a3b8;
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
/* License badge */
|
|
190
|
-
.license {
|
|
191
|
-
position: absolute;
|
|
192
|
-
bottom: 32px;
|
|
193
|
-
right: 40px;
|
|
194
|
-
z-index: 1;
|
|
195
|
-
background: rgba(16,185,129,0.1);
|
|
196
|
-
border: 1px solid rgba(16,185,129,0.2);
|
|
197
|
-
color: #6ee7b7;
|
|
198
|
-
padding: 6px 14px;
|
|
199
|
-
border-radius: 6px;
|
|
200
|
-
font-size: 13px;
|
|
201
|
-
font-weight: 600;
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
/* Subtle animation */
|
|
205
|
-
@keyframes float {
|
|
206
|
-
0%, 100% { transform: translateY(0); }
|
|
207
|
-
50% { transform: translateY(-4px); }
|
|
208
|
-
}
|
|
209
|
-
|
|
210
|
-
.logo-section {
|
|
211
|
-
animation: float 4s ease-in-out infinite;
|
|
212
|
-
}
|
|
213
|
-
</style>
|
|
214
|
-
</head>
|
|
215
|
-
<body>
|
|
216
|
-
|
|
217
|
-
<div class="card">
|
|
218
|
-
<div class="bg-grid"></div>
|
|
219
|
-
<div class="bg-glow-center"></div>
|
|
220
|
-
|
|
221
|
-
<!-- Logo -->
|
|
222
|
-
<div class="logo-section">
|
|
223
|
-
<div class="logo-icon"><span>R</span></div>
|
|
224
|
-
<span class="logo-name">Rune</span>
|
|
225
|
-
</div>
|
|
226
|
-
|
|
227
|
-
<!-- Tagline -->
|
|
228
|
-
<div class="tagline">Less skills. Deeper connections.</div>
|
|
229
|
-
|
|
230
|
-
<!-- Install commands -->
|
|
231
|
-
<div class="commands">
|
|
232
|
-
<div class="command-row">
|
|
233
|
-
<span class="platform-label">Claude Code</span>
|
|
234
|
-
<div class="command-box">
|
|
235
|
-
<span class="highlight">claude plugin install</span> <span class="package">rune-kit/rune</span>
|
|
236
|
-
</div>
|
|
237
|
-
</div>
|
|
238
|
-
<div class="command-row">
|
|
239
|
-
<span class="platform-label">Any IDE</span>
|
|
240
|
-
<div class="command-box">
|
|
241
|
-
<span class="highlight">npx --yes @rune-kit/rune</span> <span class="package">init</span>
|
|
242
|
-
</div>
|
|
243
|
-
</div>
|
|
244
|
-
</div>
|
|
245
|
-
|
|
246
|
-
<!-- Stats -->
|
|
247
|
-
<div class="stats-row">
|
|
248
|
-
<div class="stat">
|
|
249
|
-
<div class="stat-value">57</div>
|
|
250
|
-
<div class="stat-label">Skills</div>
|
|
251
|
-
</div>
|
|
252
|
-
<div class="stat">
|
|
253
|
-
<div class="stat-value">200+</div>
|
|
254
|
-
<div class="stat-label">Connections</div>
|
|
255
|
-
</div>
|
|
256
|
-
<div class="stat">
|
|
257
|
-
<div class="stat-value">5</div>
|
|
258
|
-
<div class="stat-label">Layers</div>
|
|
259
|
-
</div>
|
|
260
|
-
<div class="stat">
|
|
261
|
-
<div class="stat-value">13</div>
|
|
262
|
-
<div class="stat-label">Extensions</div>
|
|
263
|
-
</div>
|
|
264
|
-
</div>
|
|
265
|
-
|
|
266
|
-
<!-- GitHub -->
|
|
267
|
-
<div class="github-link">
|
|
268
|
-
<svg viewBox="0 0 16 16"><path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z"/></svg>
|
|
269
|
-
github.com/rune-kit/rune
|
|
270
|
-
</div>
|
|
271
|
-
|
|
272
|
-
<div class="license">MIT License • Free Forever</div>
|
|
273
|
-
</div>
|
|
274
|
-
|
|
275
|
-
</body>
|
|
276
|
-
</html>
|