va-claw 0.1.1 → 0.1.3

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 CHANGED
@@ -32,6 +32,10 @@
32
32
 
33
33
  ## What is va-claw?
34
34
 
35
+ <p align="center">
36
+ <img src="docs/comic.svg" alt="va-claw comic strip: from session-reset pain to OpenClaw fleet" width="900"/>
37
+ </p>
38
+
35
39
  **va-claw** is a minimal plugin that adds OpenClaw's three core superpowers to any CLI agent you already have:
36
40
 
37
41
  | | Without va-claw | With va-claw |
@@ -221,6 +225,13 @@ va-claw skill show <name>
221
225
  va-claw skill remove <name>
222
226
  ```
223
227
 
228
+ > **Security tip:** Before installing skills from unknown sources, vet them first with the [Skill Vetter](https://clawhub.ai/spclaudehome/Skill-vetter) — a zero-footprint skill that checks for red flags (credential access, outbound requests, obfuscated code) and produces a risk report before you commit.
229
+ >
230
+ > ```bash
231
+ > # Install the vetter once, use it forever
232
+ > va-claw skill add https://clawhub.ai/spclaudehome/Skill-vetter
233
+ > ```
234
+
224
235
  A skill file looks like this:
225
236
 
226
237
  ```markdown
@@ -1633,7 +1633,9 @@ function parseSkillMarkdown(source, path) {
1633
1633
  }
1634
1634
  function parseFrontmatterBlock(block) {
1635
1635
  const values = /* @__PURE__ */ new Map();
1636
- for (const rawLine of block.split(/\r?\n/)) {
1636
+ const lines = block.split(/\r?\n/);
1637
+ for (let index = 0; index < lines.length; index += 1) {
1638
+ const rawLine = lines[index];
1637
1639
  const line = rawLine.trim();
1638
1640
  if (line === "") {
1639
1641
  continue;
@@ -1644,7 +1646,30 @@ function parseFrontmatterBlock(block) {
1644
1646
  }
1645
1647
  const key = line.slice(0, separator).trim();
1646
1648
  const value = line.slice(separator + 1).trim();
1647
- values.set(key, value);
1649
+ if (value !== "") {
1650
+ values.set(key, value);
1651
+ continue;
1652
+ }
1653
+ const baseIndent = rawLine.length - rawLine.trimStart().length;
1654
+ const items = [];
1655
+ while (index + 1 < lines.length) {
1656
+ const nextRawLine = lines[index + 1];
1657
+ const nextLine = nextRawLine.trim();
1658
+ if (nextLine === "") {
1659
+ index += 1;
1660
+ continue;
1661
+ }
1662
+ const nextIndent = nextRawLine.length - nextRawLine.trimStart().length;
1663
+ if (nextIndent <= baseIndent) {
1664
+ break;
1665
+ }
1666
+ if (!nextLine.startsWith("-")) {
1667
+ throw new Error(`Invalid frontmatter line: ${nextRawLine}`);
1668
+ }
1669
+ items.push(nextLine.slice(1).trim());
1670
+ index += 1;
1671
+ }
1672
+ values.set(key, items);
1648
1673
  }
1649
1674
  const name = parseScalar(values.get("name"), "name");
1650
1675
  const description = parseScalar(values.get("description"), "description");
@@ -1656,6 +1681,9 @@ function parseScalar(rawValue, field) {
1656
1681
  if (!rawValue) {
1657
1682
  throw new Error(`Skill frontmatter is missing "${field}".`);
1658
1683
  }
1684
+ if (Array.isArray(rawValue)) {
1685
+ throw new Error(`Skill frontmatter field "${field}" must be a scalar.`);
1686
+ }
1659
1687
  if (rawValue.startsWith("'") && rawValue.endsWith("'") || rawValue.startsWith('"') && rawValue.endsWith('"')) {
1660
1688
  return rawValue.slice(1, -1);
1661
1689
  }
@@ -1665,8 +1693,11 @@ function parseArray(rawValue, field) {
1665
1693
  if (!rawValue) {
1666
1694
  throw new Error(`Skill frontmatter is missing "${field}".`);
1667
1695
  }
1696
+ if (Array.isArray(rawValue)) {
1697
+ return rawValue.map((item) => parseScalar(item.trim(), field));
1698
+ }
1668
1699
  if (!rawValue.startsWith("[") || !rawValue.endsWith("]")) {
1669
- throw new Error(`Skill frontmatter field "${field}" must be an inline array.`);
1700
+ throw new Error(`Skill frontmatter field "${field}" must be an array.`);
1670
1701
  }
1671
1702
  const body = rawValue.slice(1, -1).trim();
1672
1703
  if (body === "") {
@@ -2751,7 +2782,7 @@ function createCliProgram(deps = createDefaultCliDeps()) {
2751
2782
  memory.command("clear").description("Clear all memory entries.").action(async () => runMemoryClear(deps));
2752
2783
  const skill = program.command("skill").description("Skill operations.");
2753
2784
  skill.command("list").description("List installed and project skills.").action(async () => runSkillList(deps));
2754
- skill.command("add").description("Install a skill from a local Markdown file.").argument("<path-or-url>").action(async (pathOrUrl) => runSkillAdd(pathOrUrl, deps));
2785
+ skill.command("add").description("Install a skill from a local Markdown file or URL.\n\nTip: vet unknown skills first \u2014 va-claw skill add https://clawhub.ai/spclaudehome/Skill-vetter").argument("<path-or-url>").action(async (pathOrUrl) => runSkillAdd(pathOrUrl, deps));
2755
2786
  skill.command("remove").description("Remove an installed skill by name.").argument("<name>").action(async (name) => runSkillRemove(name, deps));
2756
2787
  skill.command("show").description("Show the raw Markdown content for a skill.").argument("<name>").action(async (name) => runSkillShow(name, deps));
2757
2788
  const channel = program.command("channel").description("Channel operations.");
package/docs/comic.svg ADDED
@@ -0,0 +1,264 @@
1
+ <svg viewBox="0 0 920 240" xmlns="http://www.w3.org/2000/svg" font-family="monospace">
2
+ <defs>
3
+ <style>
4
+ .label { font-family: monospace; font-size: 11px; font-weight: bold; }
5
+ .caption { font-family: monospace; font-size: 10px; }
6
+ .small { font-family: monospace; font-size: 8px; }
7
+ .code { font-family: monospace; font-size: 9px; }
8
+ </style>
9
+ </defs>
10
+
11
+ <!-- Background -->
12
+ <rect width="920" height="240" fill="#0a0a0f" rx="8"/>
13
+
14
+ <!-- Grid lines background -->
15
+ <g opacity="0.04" stroke="#00ffff" stroke-width="0.5">
16
+ <line x1="0" y1="40" x2="920" y2="40"/>
17
+ <line x1="0" y1="80" x2="920" y2="80"/>
18
+ <line x1="0" y1="120" x2="920" y2="120"/>
19
+ <line x1="0" y1="160" x2="920" y2="160"/>
20
+ <line x1="0" y1="200" x2="920" y2="200"/>
21
+ <line x1="40" y1="0" x2="40" y2="240"/>
22
+ <line x1="80" y1="0" x2="80" y2="240"/>
23
+ <line x1="120" y1="0" x2="120" y2="240"/>
24
+ <line x1="160" y1="0" x2="160" y2="240"/>
25
+ <line x1="200" y1="0" x2="200" y2="240"/>
26
+ <line x1="240" y1="0" x2="240" y2="240"/>
27
+ </g>
28
+
29
+ <!-- ═══ PANEL 1: The Pain (x=10) ═══ -->
30
+ <rect x="10" y="10" width="200" height="220" fill="#0d0d1a" rx="2"/>
31
+ <rect x="10" y="10" width="200" height="220" fill="none" stroke="#ff6b35" stroke-width="2" rx="2"/>
32
+ <!-- Panel number -->
33
+ <text x="18" y="26" class="small" fill="#ff6b35">01 / THE PAIN</text>
34
+ <line x1="10" y1="30" x2="210" y2="30" stroke="#ff6b35" stroke-width="1" opacity="0.5"/>
35
+
36
+ <!-- Monitor -->
37
+ <rect x="65" y="45" width="90" height="65" rx="2" fill="#0a0a1a" stroke="#00ffff" stroke-width="1.5"/>
38
+ <rect x="70" y="50" width="80" height="48" fill="#000d00"/>
39
+ <text x="74" y="63" class="small" fill="#ff4444">SESSION RESET</text>
40
+ <text x="74" y="75" class="small" fill="#ff6b35">Who are you?</text>
41
+ <text x="74" y="87" class="small" fill="#666666">No memory found.</text>
42
+ <text x="74" y="99" class="small" fill="#333">I don't know you▋</text>
43
+ <!-- Monitor stand -->
44
+ <rect x="104" y="110" width="12" height="8" fill="#1a1a2e" stroke="#00ffff" stroke-width="1"/>
45
+ <rect x="96" y="118" width="28" height="4" fill="#1a1a2e" stroke="#00ffff" stroke-width="1"/>
46
+
47
+ <!-- Frustrated person -->
48
+ <!-- Head -->
49
+ <rect x="24" y="52" width="24" height="24" rx="3" fill="#f5c58a" stroke="#cc9966" stroke-width="1"/>
50
+ <rect x="28" y="58" width="5" height="5" fill="#333"/>
51
+ <rect x="37" y="58" width="5" height="5" fill="#333"/>
52
+ <rect x="30" y="67" width="9" height="2" fill="#cc3333"/>
53
+ <!-- Hair -->
54
+ <rect x="24" y="50" width="24" height="6" rx="2" fill="#3a2000"/>
55
+ <!-- Sweat -->
56
+ <ellipse cx="50" cy="54" rx="3" ry="5" fill="#4488ff" opacity="0.7"/>
57
+ <!-- Body -->
58
+ <rect x="20" y="76" width="32" height="32" rx="2" fill="#2244bb" stroke="#1133aa" stroke-width="1"/>
59
+ <!-- Frustrated arms up -->
60
+ <rect x="6" y="72" width="15" height="7" rx="3" fill="#f5c58a" transform="rotate(-35 13 75)"/>
61
+ <rect x="52" y="72" width="15" height="7" rx="3" fill="#f5c58a" transform="rotate(35 59 75)"/>
62
+ <!-- Legs -->
63
+ <rect x="24" y="108" width="11" height="16" fill="#1a1a5e"/>
64
+ <rect x="37" y="108" width="11" height="16" fill="#1a1a5e"/>
65
+
66
+ <!-- Speech bubble: cry -->
67
+ <rect x="50" y="38" width="80" height="20" rx="10" fill="#1a0000" stroke="#ff4444" stroke-width="1"/>
68
+ <polygon points="58,58 65,58 62,64" fill="#1a0000" stroke="#ff4444" stroke-width="1"/>
69
+ <text x="90" y="52" class="small" fill="#ff4444" text-anchor="middle">WHY NO MEMORY?!</text>
70
+
71
+ <!-- Caption -->
72
+ <rect x="14" y="196" width="192" height="28" rx="2" fill="#1a0000"/>
73
+ <text x="110" y="210" class="caption" fill="#ff6b35" text-anchor="middle">Every new session,</text>
74
+ <text x="110" y="222" class="caption" fill="#ff4444" text-anchor="middle">your AI starts from zero. 😤</text>
75
+
76
+
77
+ <!-- ═══ PANEL 2: One Command (x=220) ═══ -->
78
+ <rect x="220" y="10" width="200" height="220" fill="#0d0d1a" rx="2"/>
79
+ <rect x="220" y="10" width="200" height="220" fill="none" stroke="#00ff41" stroke-width="2" rx="2"/>
80
+ <text x="228" y="26" class="small" fill="#00ff41">02 / 30 SECONDS</text>
81
+ <line x1="220" y1="30" x2="420" y2="30" stroke="#00ff41" stroke-width="1" opacity="0.5"/>
82
+
83
+ <!-- Terminal window -->
84
+ <rect x="230" y="38" width="180" height="105" rx="3" fill="#000d00" stroke="#00ff41" stroke-width="1.5"/>
85
+ <!-- Terminal title bar -->
86
+ <rect x="230" y="38" width="180" height="14" rx="3" fill="#001a00"/>
87
+ <circle cx="242" cy="45" r="4" fill="#ff4444"/>
88
+ <circle cx="254" cy="45" r="4" fill="#ffaa00"/>
89
+ <circle cx="266" cy="45" r="4" fill="#00ff41"/>
90
+ <text x="320" y="48" class="small" fill="#00ff41" text-anchor="middle" opacity="0.6">terminal</text>
91
+ <!-- Commands -->
92
+ <text x="236" y="66" class="code" fill="#00ff41">$ npm install -g va-claw</text>
93
+ <text x="236" y="78" class="code" fill="#666">added 1 package (4s)</text>
94
+ <text x="236" y="92" class="code" fill="#00ff41">$ va-claw install</text>
95
+ <text x="236" y="104" class="code" fill="#a855f7">✓ identity injected</text>
96
+ <text x="236" y="116" class="code" fill="#a855f7">✓ memory online</text>
97
+ <text x="236" y="128" class="code" fill="#00ff41">$ va-claw start</text>
98
+ <text x="236" y="140" class="code" fill="#a855f7">✓ daemon running ⏰</text>
99
+
100
+ <!-- Magic sparkles -->
101
+ <text x="240" y="170" font-size="18" fill="#ffff00">✨</text>
102
+ <text x="295" y="178" font-size="22" fill="#a855f7">⚡</text>
103
+ <text x="356" y="168" font-size="18" fill="#00ffff">✨</text>
104
+
105
+ <!-- Caption -->
106
+ <rect x="224" y="196" width="192" height="28" rx="2" fill="#001a00"/>
107
+ <text x="320" y="210" class="caption" fill="#00ff41" text-anchor="middle">One install. Zero extra cost.</text>
108
+ <text x="320" y="222" class="caption" fill="#00ffff" text-anchor="middle">Uses your existing subscription. 💰</text>
109
+
110
+
111
+ <!-- ═══ PANEL 3: The OpenClaw (x=430) ═══ -->
112
+ <rect x="430" y="10" width="220" height="220" fill="#0d0d1a" rx="2"/>
113
+ <rect x="430" y="10" width="220" height="220" fill="none" stroke="#ff4400" stroke-width="2" rx="2"/>
114
+ <text x="438" y="26" class="small" fill="#ff6b35">03 / YOUR OPENCLAW</text>
115
+ <line x1="430" y1="30" x2="650" y2="30" stroke="#ff4400" stroke-width="1" opacity="0.5"/>
116
+
117
+ <!-- Big lobster centered -->
118
+ <!-- Body -->
119
+ <rect x="500" y="75" width="60" height="45" rx="5" fill="#dd3300" stroke="#ff6b35" stroke-width="2"/>
120
+ <!-- Shell segments -->
121
+ <line x1="500" y1="90" x2="560" y2="90" stroke="#aa2200" stroke-width="1.5"/>
122
+ <line x1="500" y1="105" x2="560" y2="105" stroke="#aa2200" stroke-width="1.5"/>
123
+ <!-- Stripe highlights -->
124
+ <rect x="508" y="76" width="8" height="43" fill="#ff4400" rx="1" opacity="0.4"/>
125
+ <rect x="524" y="76" width="8" height="43" fill="#ff4400" rx="1" opacity="0.4"/>
126
+ <rect x="540" y="76" width="8" height="43" fill="#ff4400" rx="1" opacity="0.4"/>
127
+
128
+ <!-- Eyes on stalks -->
129
+ <line x1="512" y1="75" x2="504" y2="60" stroke="#ff6b35" stroke-width="2"/>
130
+ <line x1="548" y1="75" x2="556" y2="60" stroke="#ff6b35" stroke-width="2"/>
131
+ <circle cx="504" cy="60" r="8" fill="#dd3300" stroke="#ff6b35" stroke-width="1.5"/>
132
+ <circle cx="556" cy="60" r="8" fill="#dd3300" stroke="#ff6b35" stroke-width="1.5"/>
133
+ <circle cx="504" cy="60" r="4" fill="#00ff41"/>
134
+ <circle cx="556" cy="60" r="4" fill="#00ff41"/>
135
+ <circle cx="505" cy="59" r="1.5" fill="#000"/>
136
+ <circle cx="557" cy="59" r="1.5" fill="#000"/>
137
+
138
+ <!-- Antennae -->
139
+ <line x1="500" y1="62" x2="476" y2="40" stroke="#ff6b35" stroke-width="1.5"/>
140
+ <line x1="560" y1="62" x2="584" y2="40" stroke="#ff6b35" stroke-width="1.5"/>
141
+ <circle cx="476" cy="40" r="3" fill="#ffff00"/>
142
+ <circle cx="584" cy="40" r="3" fill="#ffff00"/>
143
+
144
+ <!-- Big left claw -->
145
+ <rect x="445" y="80" width="56" height="22" rx="4" fill="#dd3300" stroke="#ff6b35" stroke-width="1.5"/>
146
+ <rect x="440" y="73" width="24" height="14" rx="3" fill="#dd3300" stroke="#ff6b35" stroke-width="1.5"/>
147
+ <rect x="440" y="90" width="24" height="14" rx="3" fill="#aa2200" stroke="#ff6b35" stroke-width="1.5"/>
148
+
149
+ <!-- Big right claw -->
150
+ <rect x="559" y="80" width="56" height="22" rx="4" fill="#dd3300" stroke="#ff6b35" stroke-width="1.5"/>
151
+ <rect x="596" y="73" width="24" height="14" rx="3" fill="#dd3300" stroke="#ff6b35" stroke-width="1.5"/>
152
+ <rect x="596" y="90" width="24" height="14" rx="3" fill="#aa2200" stroke="#ff6b35" stroke-width="1.5"/>
153
+
154
+ <!-- Walking legs -->
155
+ <line x1="510" y1="120" x2="500" y2="148" stroke="#dd3300" stroke-width="2.5"/>
156
+ <line x1="520" y1="120" x2="513" y2="150" stroke="#dd3300" stroke-width="2.5"/>
157
+ <line x1="540" y1="120" x2="547" y2="150" stroke="#dd3300" stroke-width="2.5"/>
158
+ <line x1="550" y1="120" x2="560" y2="148" stroke="#dd3300" stroke-width="2.5"/>
159
+
160
+ <!-- Memory chip badge on body -->
161
+ <rect x="506" y="80" width="48" height="20" rx="2" fill="#a855f7" stroke="#cc77ff" stroke-width="1.5"/>
162
+ <text x="530" y="93" class="small" fill="#fff" text-anchor="middle" font-weight="bold">🧠 MEM</text>
163
+
164
+ <!-- Floating badges -->
165
+ <rect x="434" y="38" width="52" height="18" rx="2" fill="#001a00" stroke="#00ff41" stroke-width="1"/>
166
+ <text x="460" y="51" class="small" fill="#00ff41" text-anchor="middle">⏰ LOOP</text>
167
+
168
+ <rect x="572" y="38" width="72" height="18" rx="2" fill="#1a0030" stroke="#a855f7" stroke-width="1"/>
169
+ <text x="608" y="51" class="small" fill="#a855f7" text-anchor="middle">🎭 IDENTITY</text>
170
+
171
+ <!-- Caption -->
172
+ <rect x="434" y="162" width="212" height="28" rx="2" fill="#1a0000"/>
173
+ <text x="540" y="176" class="caption" fill="#ff6b35" text-anchor="middle">Claude Code + va-claw</text>
174
+ <text x="540" y="188" class="caption" fill="#ff4400" text-anchor="middle">= Your own OpenClaw 🦞</text>
175
+
176
+ <!-- ═══ PANEL 4: The Fleet (x=660) ═══ -->
177
+ <rect x="660" y="10" width="250" height="220" fill="#0d0d1a" rx="2"/>
178
+ <rect x="660" y="10" width="250" height="220" fill="none" stroke="#ff00ff" stroke-width="2" rx="2"/>
179
+ <text x="668" y="26" class="small" fill="#ff00ff">04 / SPAWN A FLEET</text>
180
+ <line x1="660" y1="30" x2="910" y2="30" stroke="#ff00ff" stroke-width="1" opacity="0.5"/>
181
+
182
+ <!-- Three mini claws -->
183
+ <!-- Claw A -->
184
+ <g transform="translate(672, 38) scale(0.55)">
185
+ <rect x="20" y="28" width="40" height="30" rx="4" fill="#dd3300" stroke="#ff6b35" stroke-width="2"/>
186
+ <line x1="20" y1="40" x2="60" y2="40" stroke="#aa2200" stroke-width="1.5"/>
187
+ <circle cx="30" cy="22" r="7" fill="#dd3300" stroke="#ff6b35" stroke-width="1.5"/>
188
+ <circle cx="50" cy="22" r="7" fill="#dd3300" stroke="#ff6b35" stroke-width="1.5"/>
189
+ <circle cx="30" cy="22" r="3.5" fill="#00ff41"/>
190
+ <circle cx="50" cy="22" r="3.5" fill="#00ff41"/>
191
+ <rect x="4" y="33" width="18" height="14" rx="3" fill="#dd3300" stroke="#ff6b35" stroke-width="1.5"/>
192
+ <rect x="58" y="33" width="18" height="14" rx="3" fill="#dd3300" stroke="#ff6b35" stroke-width="1.5"/>
193
+ <line x1="26" y1="58" x2="20" y2="76" stroke="#dd3300" stroke-width="2"/>
194
+ <line x1="34" y1="58" x2="30" y2="78" stroke="#dd3300" stroke-width="2"/>
195
+ <line x1="46" y1="58" x2="50" y2="78" stroke="#dd3300" stroke-width="2"/>
196
+ <line x1="54" y1="58" x2="60" y2="76" stroke="#dd3300" stroke-width="2"/>
197
+ <rect x="22" y="30" width="36" height="16" rx="2" fill="#a855f7" stroke="#cc77ff" stroke-width="1"/>
198
+ <text x="40" y="41" font-family="monospace" font-size="7" fill="#fff" text-anchor="middle">MEM</text>
199
+ </g>
200
+ <text x="700" y="118" class="small" fill="#00ff41" text-anchor="middle">claw-1</text>
201
+ <rect x="668" y="122" width="66" height="24" rx="2" fill="#001a00" stroke="#00ff41" stroke-width="1"/>
202
+ <text x="701" y="133" class="small" fill="#00ff41" text-anchor="middle">reviewing</text>
203
+ <text x="701" y="143" class="small" fill="#00ff41" text-anchor="middle">PRs... 🦞</text>
204
+
205
+ <!-- Claw B (center, slightly larger) -->
206
+ <g transform="translate(749, 30) scale(0.62)">
207
+ <rect x="20" y="28" width="40" height="30" rx="4" fill="#dd3300" stroke="#ff6b35" stroke-width="2"/>
208
+ <line x1="20" y1="40" x2="60" y2="40" stroke="#aa2200" stroke-width="1.5"/>
209
+ <circle cx="30" cy="22" r="7" fill="#dd3300" stroke="#ff6b35" stroke-width="1.5"/>
210
+ <circle cx="50" cy="22" r="7" fill="#dd3300" stroke="#ff6b35" stroke-width="1.5"/>
211
+ <circle cx="30" cy="22" r="3.5" fill="#00ff41"/>
212
+ <circle cx="50" cy="22" r="3.5" fill="#00ff41"/>
213
+ <rect x="4" y="33" width="18" height="14" rx="3" fill="#dd3300" stroke="#ff6b35" stroke-width="1.5"/>
214
+ <rect x="58" y="33" width="18" height="14" rx="3" fill="#dd3300" stroke="#ff6b35" stroke-width="1.5"/>
215
+ <line x1="26" y1="58" x2="20" y2="76" stroke="#dd3300" stroke-width="2"/>
216
+ <line x1="34" y1="58" x2="30" y2="78" stroke="#dd3300" stroke-width="2"/>
217
+ <line x1="46" y1="58" x2="50" y2="78" stroke="#dd3300" stroke-width="2"/>
218
+ <line x1="54" y1="58" x2="60" y2="76" stroke="#dd3300" stroke-width="2"/>
219
+ <rect x="22" y="30" width="36" height="16" rx="2" fill="#a855f7" stroke="#cc77ff" stroke-width="1"/>
220
+ <text x="40" y="41" font-family="monospace" font-size="7" fill="#fff" text-anchor="middle">MEM</text>
221
+ </g>
222
+ <text x="786" y="120" class="small" fill="#00ffff" text-anchor="middle">claw-2</text>
223
+ <rect x="754" y="124" width="66" height="24" rx="2" fill="#001a1a" stroke="#00ffff" stroke-width="1"/>
224
+ <text x="787" y="135" class="small" fill="#00ffff" text-anchor="middle">writing</text>
225
+ <text x="787" y="145" class="small" fill="#00ffff" text-anchor="middle">tests... 🦞</text>
226
+
227
+ <!-- Claw C -->
228
+ <g transform="translate(840, 38) scale(0.55)">
229
+ <rect x="20" y="28" width="40" height="30" rx="4" fill="#dd3300" stroke="#ff6b35" stroke-width="2"/>
230
+ <line x1="20" y1="40" x2="60" y2="40" stroke="#aa2200" stroke-width="1.5"/>
231
+ <circle cx="30" cy="22" r="7" fill="#dd3300" stroke="#ff6b35" stroke-width="1.5"/>
232
+ <circle cx="50" cy="22" r="7" fill="#dd3300" stroke="#ff6b35" stroke-width="1.5"/>
233
+ <circle cx="30" cy="22" r="3.5" fill="#00ff41"/>
234
+ <circle cx="50" cy="22" r="3.5" fill="#00ff41"/>
235
+ <rect x="4" y="33" width="18" height="14" rx="3" fill="#dd3300" stroke="#ff6b35" stroke-width="1.5"/>
236
+ <rect x="58" y="33" width="18" height="14" rx="3" fill="#dd3300" stroke="#ff6b35" stroke-width="1.5"/>
237
+ <line x1="26" y1="58" x2="20" y2="76" stroke="#dd3300" stroke-width="2"/>
238
+ <line x1="34" y1="58" x2="30" y2="78" stroke="#dd3300" stroke-width="2"/>
239
+ <line x1="46" y1="58" x2="50" y2="78" stroke="#dd3300" stroke-width="2"/>
240
+ <line x1="54" y1="58" x2="60" y2="76" stroke="#dd3300" stroke-width="2"/>
241
+ <rect x="22" y="30" width="36" height="16" rx="2" fill="#a855f7" stroke="#cc77ff" stroke-width="1"/>
242
+ <text x="40" y="41" font-family="monospace" font-size="7" fill="#fff" text-anchor="middle">MEM</text>
243
+ </g>
244
+ <text x="872" y="118" class="small" fill="#a855f7" text-anchor="middle">claw-3</text>
245
+ <rect x="840" y="122" width="66" height="24" rx="2" fill="#1a0030" stroke="#a855f7" stroke-width="1"/>
246
+ <text x="873" y="133" class="small" fill="#a855f7" text-anchor="middle">monitoring</text>
247
+ <text x="873" y="143" class="small" fill="#a855f7" text-anchor="middle">repos... 🦞</text>
248
+
249
+ <!-- Shared memory hub -->
250
+ <rect x="720" y="156" width="130" height="26" rx="3" fill="#1a001a" stroke="#ff00ff" stroke-width="1.5"/>
251
+ <text x="785" y="167" class="caption" fill="#ff00ff" text-anchor="middle" font-weight="bold">SHARED MEMORY</text>
252
+ <text x="785" y="178" class="small" fill="#a855f7" text-anchor="middle">~/.va-claw/memory.db</text>
253
+
254
+ <!-- Connection lines from claws to memory -->
255
+ <line x1="701" y1="147" x2="745" y2="156" stroke="#00ff41" stroke-width="1" stroke-dasharray="4,3" opacity="0.7"/>
256
+ <line x1="786" y1="150" x2="786" y2="156" stroke="#00ffff" stroke-width="1" stroke-dasharray="4,3" opacity="0.7"/>
257
+ <line x1="872" y1="147" x2="826" y2="156" stroke="#a855f7" stroke-width="1" stroke-dasharray="4,3" opacity="0.7"/>
258
+
259
+ <!-- Caption -->
260
+ <rect x="664" y="192" width="242" height="32" rx="2" fill="#12001a"/>
261
+ <text x="785" y="206" class="caption" fill="#ffff00" text-anchor="middle" font-weight="bold">va-claw start — spawn infinite claws.</text>
262
+ <text x="785" y="220" class="caption" fill="#ff00ff" text-anchor="middle">One subscription. One memory. Many workers.</text>
263
+
264
+ </svg>
package/index.html CHANGED
@@ -106,23 +106,90 @@
106
106
  }
107
107
 
108
108
  .pixel-border-violet {
109
- box-shadow:
110
- 4px 0 0 var(--violet),
111
- -4px 0 0 var(--violet),
112
- 0 4px 0 var(--violet),
109
+ box-shadow:
110
+ 4px 0 0 var(--violet),
111
+ -4px 0 0 var(--violet),
112
+ 0 4px 0 var(--violet),
113
113
  0 -4px 0 var(--violet);
114
114
  margin: 4px;
115
115
  }
116
116
 
117
117
  .pixel-border-cyan {
118
- box-shadow:
119
- 4px 0 0 var(--cyan),
120
- -4px 0 0 var(--cyan),
121
- 0 4px 0 var(--cyan),
118
+ box-shadow:
119
+ 4px 0 0 var(--cyan),
120
+ -4px 0 0 var(--cyan),
121
+ 0 4px 0 var(--cyan),
122
122
  0 -4px 0 var(--cyan);
123
123
  margin: 4px;
124
124
  }
125
125
 
126
+ .pixel-border-amber {
127
+ box-shadow:
128
+ 4px 0 0 var(--amber),
129
+ -4px 0 0 var(--amber),
130
+ 0 4px 0 var(--amber),
131
+ 0 -4px 0 var(--amber);
132
+ margin: 4px;
133
+ }
134
+
135
+ .pixel-border-green {
136
+ box-shadow:
137
+ 4px 0 0 var(--green),
138
+ -4px 0 0 var(--green),
139
+ 0 4px 0 var(--green),
140
+ 0 -4px 0 var(--green);
141
+ margin: 4px;
142
+ }
143
+
144
+ /* COMIC STRIP */
145
+ .comic-strip-section {
146
+ margin-bottom: 80px;
147
+ }
148
+
149
+ .comic-strip {
150
+ display: grid;
151
+ grid-template-columns: repeat(4, 1fr);
152
+ gap: 24px;
153
+ }
154
+
155
+ @media (max-width: 800px) {
156
+ .comic-strip {
157
+ grid-template-columns: repeat(2, 1fr);
158
+ }
159
+ }
160
+
161
+ @media (max-width: 500px) {
162
+ .comic-strip {
163
+ grid-template-columns: 1fr;
164
+ }
165
+ }
166
+
167
+ .comic-panel {
168
+ background: #080810;
169
+ padding: 12px;
170
+ position: relative;
171
+ cursor: default;
172
+ transition: transform 0.1s steps(2);
173
+ }
174
+
175
+ .comic-panel:hover {
176
+ transform: translate(-2px, -2px);
177
+ }
178
+
179
+ .panel-num {
180
+ font-family: 'Press Start 2P', cursive;
181
+ font-size: 9px;
182
+ margin-bottom: 8px;
183
+ opacity: 0.8;
184
+ }
185
+
186
+ .panel-svg {
187
+ width: 100%;
188
+ height: auto;
189
+ display: block;
190
+ image-rendering: pixelated;
191
+ }
192
+
126
193
  .btn {
127
194
  display: inline-block;
128
195
  padding: 16px 24px;
@@ -473,6 +540,200 @@
473
540
  </div>
474
541
  </section>
475
542
 
543
+ <!-- COMIC STRIP: WHY VA-CLAW EXISTS -->
544
+ <section class="comic-strip-section">
545
+ <h2 class="section-title neon-text" style="text-align:center; margin-bottom:40px; font-size:14px;">// WHY VA-CLAW EXISTS</h2>
546
+ <div class="comic-strip">
547
+
548
+ <!-- PANEL 1: The Problem -->
549
+ <div class="comic-panel pixel-border-amber">
550
+ <div class="panel-num" style="color:var(--amber)">01</div>
551
+ <svg viewBox="0 0 200 160" xmlns="http://www.w3.org/2000/svg" class="panel-svg">
552
+ <!-- Background -->
553
+ <rect width="200" height="160" fill="#0a0a0f"/>
554
+ <!-- Desk -->
555
+ <rect x="20" y="120" width="160" height="8" fill="#1a1a2e" stroke="#00ffff" stroke-width="1"/>
556
+ <!-- Monitor -->
557
+ <rect x="60" y="55" width="80" height="55" rx="2" fill="#0d0d1a" stroke="#00ffff" stroke-width="1.5"/>
558
+ <rect x="65" y="60" width="70" height="42" fill="#001a00"/>
559
+ <!-- Screen text: session reset -->
560
+ <text x="68" y="72" font-family="monospace" font-size="5" fill="#ff4444">SESSION RESET</text>
561
+ <text x="68" y="82" font-family="monospace" font-size="5" fill="#ff6b35">Who are you?</text>
562
+ <text x="68" y="92" font-family="monospace" font-size="5" fill="#ff4444">No memory found</text>
563
+ <text x="68" y="102" font-family="monospace" font-size="4" fill="#666">▋</text>
564
+ <!-- Monitor stand -->
565
+ <rect x="95" y="110" width="10" height="10" fill="#1a1a2e" stroke="#00ffff" stroke-width="1"/>
566
+ <!-- Person (pixel art style) -->
567
+ <!-- Head -->
568
+ <rect x="22" y="60" width="20" height="20" rx="2" fill="#ffcc99" stroke="#cc9966" stroke-width="1"/>
569
+ <rect x="26" y="65" width="4" height="4" fill="#333"/>
570
+ <rect x="32" y="65" width="4" height="4" fill="#333"/>
571
+ <rect x="27" y="73" width="8" height="2" fill="#cc6666"/>
572
+ <!-- Hair -->
573
+ <rect x="22" y="58" width="20" height="5" fill="#4a3000"/>
574
+ <!-- Body -->
575
+ <rect x="18" y="80" width="28" height="28" rx="2" fill="#2244aa" stroke="#1133aa" stroke-width="1"/>
576
+ <!-- Arms up frustrated -->
577
+ <rect x="4" y="78" width="14" height="6" rx="2" fill="#ffcc99" transform="rotate(-30 11 81)"/>
578
+ <rect x="46" y="78" width="14" height="6" rx="2" fill="#ffcc99" transform="rotate(30 53 81)"/>
579
+ <!-- Legs -->
580
+ <rect x="22" y="108" width="10" height="12" fill="#1a1a5e"/>
581
+ <rect x="32" y="108" width="10" height="12" fill="#1a1a5e"/>
582
+ <!-- Sweat drops / frustration -->
583
+ <text x="44" y="58" font-family="monospace" font-size="10" fill="#ff4444">😤</text>
584
+ <!-- Caption -->
585
+ <text x="100" y="148" font-family="monospace" font-size="4.5" fill="#ff6b35" text-anchor="middle">CLAUDE CODE FORGETS</text>
586
+ <text x="100" y="156" font-family="monospace" font-size="4.5" fill="#ff4444" text-anchor="middle">YOU. EVERY. SESSION.</text>
587
+ </svg>
588
+ </div>
589
+
590
+ <!-- PANEL 2: The Transformation -->
591
+ <div class="comic-panel pixel-border-cyan">
592
+ <div class="panel-num" style="color:var(--cyan)">02</div>
593
+ <svg viewBox="0 0 200 160" xmlns="http://www.w3.org/2000/svg" class="panel-svg">
594
+ <rect width="200" height="160" fill="#0a0a0f"/>
595
+ <!-- Terminal glow effect -->
596
+ <rect x="10" y="20" width="180" height="70" rx="3" fill="#001a00" stroke="#00ff41" stroke-width="1.5"/>
597
+ <rect x="14" y="24" width="172" height="62" fill="#000d00"/>
598
+ <!-- Terminal content -->
599
+ <text x="18" y="37" font-family="monospace" font-size="5.5" fill="#00ff41">$ npm install -g va-claw</text>
600
+ <text x="18" y="49" font-family="monospace" font-size="5" fill="#666">added 1 package in 4s</text>
601
+ <text x="18" y="59" font-family="monospace" font-size="5.5" fill="#00ff41">$ va-claw install</text>
602
+ <text x="18" y="69" font-family="monospace" font-size="5" fill="#a855f7">✓ identity injected</text>
603
+ <text x="18" y="79" font-family="monospace" font-size="5" fill="#a855f7">✓ memory online</text>
604
+ <!-- Magic sparkles coming from screen -->
605
+ <text x="15" y="110" font-family="monospace" font-size="14" fill="#ffff00">✨</text>
606
+ <text x="85" y="120" font-family="monospace" font-size="14" fill="#a855f7">✨</text>
607
+ <text x="155" y="105" font-family="monospace" font-size="14" fill="#00ffff">✨</text>
608
+ <!-- Arrow transformation -->
609
+ <text x="100" y="108" font-family="monospace" font-size="20" fill="#00ff41" text-anchor="middle">⚡</text>
610
+ <!-- Caption -->
611
+ <text x="100" y="140" font-family="monospace" font-size="5" fill="#00ff41" text-anchor="middle">ONE COMMAND.</text>
612
+ <text x="100" y="150" font-family="monospace" font-size="5" fill="#00ffff" text-anchor="middle">30 SECONDS.</text>
613
+ <text x="100" y="158" font-family="monospace" font-size="4" fill="#a855f7" text-anchor="middle">EVERYTHING CHANGES.</text>
614
+ </svg>
615
+ </div>
616
+
617
+ <!-- PANEL 3: The OpenClaw -->
618
+ <div class="comic-panel pixel-border-violet">
619
+ <div class="panel-num" style="color:var(--violet)">03</div>
620
+ <svg viewBox="0 0 200 160" xmlns="http://www.w3.org/2000/svg" class="panel-svg">
621
+ <rect width="200" height="160" fill="#0a0a0f"/>
622
+ <!-- Glow backdrop for claw -->
623
+ <ellipse cx="100" cy="85" rx="65" ry="55" fill="#1a0030" opacity="0.8"/>
624
+ <!-- Big pixel lobster / claw mascot -->
625
+ <!-- Body -->
626
+ <rect x="75" y="65" width="50" height="35" rx="4" fill="#ff4400" stroke="#ff6b35" stroke-width="1.5"/>
627
+ <!-- Shell segments -->
628
+ <line x1="75" y1="76" x2="125" y2="76" stroke="#cc3300" stroke-width="1"/>
629
+ <line x1="75" y1="87" x2="125" y2="87" stroke="#cc3300" stroke-width="1"/>
630
+ <!-- Eyes -->
631
+ <circle cx="88" cy="60" r="6" fill="#ff4400" stroke="#ff6b35" stroke-width="1"/>
632
+ <circle cx="112" cy="60" r="6" fill="#ff4400" stroke="#ff6b35" stroke-width="1"/>
633
+ <circle cx="88" cy="60" r="3" fill="#00ff41"/>
634
+ <circle cx="112" cy="60" r="3" fill="#00ff41"/>
635
+ <circle cx="89" cy="59" r="1" fill="#000"/>
636
+ <circle cx="113" cy="59" r="1" fill="#000"/>
637
+ <!-- Antennae -->
638
+ <line x1="88" y1="54" x2="72" y2="35" stroke="#ff6b35" stroke-width="1.5"/>
639
+ <line x1="112" y1="54" x2="128" y2="35" stroke="#ff6b35" stroke-width="1.5"/>
640
+ <circle cx="72" cy="35" r="2" fill="#ffff00"/>
641
+ <circle cx="128" cy="35" r="2" fill="#ffff00"/>
642
+ <!-- Left big claw -->
643
+ <rect x="35" y="68" width="40" height="18" rx="3" fill="#ff4400" stroke="#ff6b35" stroke-width="1.5"/>
644
+ <rect x="30" y="63" width="18" height="12" rx="2" fill="#ff4400" stroke="#ff6b35" stroke-width="1"/>
645
+ <rect x="30" y="77" width="18" height="12" rx="2" fill="#cc3300" stroke="#ff6b35" stroke-width="1"/>
646
+ <!-- Right big claw -->
647
+ <rect x="125" y="68" width="40" height="18" rx="3" fill="#ff4400" stroke="#ff6b35" stroke-width="1.5"/>
648
+ <rect x="152" y="63" width="18" height="12" rx="2" fill="#ff4400" stroke="#ff6b35" stroke-width="1"/>
649
+ <rect x="152" y="77" width="18" height="12" rx="2" fill="#cc3300" stroke="#ff6b35" stroke-width="1"/>
650
+ <!-- Legs -->
651
+ <line x1="85" y1="100" x2="78" y2="118" stroke="#ff4400" stroke-width="2"/>
652
+ <line x1="93" y1="100" x2="88" y2="120" stroke="#ff4400" stroke-width="2"/>
653
+ <line x1="107" y1="100" x2="112" y2="120" stroke="#ff4400" stroke-width="2"/>
654
+ <line x1="115" y1="100" x2="122" y2="118" stroke="#ff4400" stroke-width="2"/>
655
+ <!-- Memory chip on back -->
656
+ <rect x="86" y="68" width="28" height="16" rx="2" fill="#a855f7" stroke="#cc77ff" stroke-width="1"/>
657
+ <text x="100" y="79" font-family="monospace" font-size="5" fill="#fff" text-anchor="middle">MEM</text>
658
+ <!-- Status badges floating -->
659
+ <rect x="12" y="20" width="42" height="14" rx="2" fill="#003300" stroke="#00ff41" stroke-width="1"/>
660
+ <text x="33" y="30" font-family="monospace" font-size="4" fill="#00ff41" text-anchor="middle">🧠 MEMORY</text>
661
+ <rect x="146" y="20" width="44" height="14" rx="2" fill="#1a0030" stroke="#a855f7" stroke-width="1"/>
662
+ <text x="168" y="30" font-family="monospace" font-size="4" fill="#a855f7" text-anchor="middle">⏰ LOOP</text>
663
+ <rect x="74" y="125" width="52" height="14" rx="2" fill="#001a1a" stroke="#00ffff" stroke-width="1"/>
664
+ <text x="100" y="135" font-family="monospace" font-size="4" fill="#00ffff" text-anchor="middle">🎭 IDENTITY</text>
665
+ <!-- Caption -->
666
+ <text x="100" y="153" font-family="monospace" font-size="5" fill="#ff6b35" text-anchor="middle">YOUR CLAUDE CODE</text>
667
+ <text x="100" y="161" font-family="monospace" font-size="5" fill="#ff4400" text-anchor="middle">IS NOW AN OPENCLAW 🦞</text>
668
+ </svg>
669
+ </div>
670
+
671
+ <!-- PANEL 4: Multi-claw fleet -->
672
+ <div class="comic-panel pixel-border-green">
673
+ <div class="panel-num" style="color:var(--green)">04</div>
674
+ <svg viewBox="0 0 200 160" xmlns="http://www.w3.org/2000/svg" class="panel-svg">
675
+ <rect width="200" height="160" fill="#0a0a0f"/>
676
+ <!-- Three small claws working in parallel -->
677
+ <!-- Claw 1 -->
678
+ <g transform="translate(10, 30) scale(0.5)">
679
+ <rect x="50" y="40" width="40" height="28" rx="4" fill="#ff4400" stroke="#ff6b35" stroke-width="2"/>
680
+ <circle cx="62" cy="35" r="5" fill="#ff4400" stroke="#ff6b35" stroke-width="1.5"/>
681
+ <circle cx="78" cy="35" r="5" fill="#ff4400" stroke="#ff6b35" stroke-width="1.5"/>
682
+ <circle cx="62" cy="35" r="2.5" fill="#00ff41"/>
683
+ <circle cx="78" cy="35" r="2.5" fill="#00ff41"/>
684
+ <rect x="30" y="44" width="22" height="14" rx="3" fill="#ff4400" stroke="#ff6b35" stroke-width="1.5"/>
685
+ <rect x="88" y="44" width="22" height="14" rx="3" fill="#ff4400" stroke="#ff6b35" stroke-width="1.5"/>
686
+ <rect x="60" y="43" width="20" height="13" rx="1" fill="#a855f7" stroke="#cc77ff" stroke-width="1"/>
687
+ </g>
688
+ <!-- Claw 2 -->
689
+ <g transform="translate(75, 20) scale(0.5)">
690
+ <rect x="50" y="40" width="40" height="28" rx="4" fill="#ff4400" stroke="#ff6b35" stroke-width="2"/>
691
+ <circle cx="62" cy="35" r="5" fill="#ff4400" stroke="#ff6b35" stroke-width="1.5"/>
692
+ <circle cx="78" cy="35" r="5" fill="#ff4400" stroke="#ff6b35" stroke-width="1.5"/>
693
+ <circle cx="62" cy="35" r="2.5" fill="#00ff41"/>
694
+ <circle cx="78" cy="35" r="2.5" fill="#00ff41"/>
695
+ <rect x="30" y="44" width="22" height="14" rx="3" fill="#ff4400" stroke="#ff6b35" stroke-width="1.5"/>
696
+ <rect x="88" y="44" width="22" height="14" rx="3" fill="#ff4400" stroke="#ff6b35" stroke-width="1.5"/>
697
+ <rect x="60" y="43" width="20" height="13" rx="1" fill="#a855f7" stroke="#cc77ff" stroke-width="1"/>
698
+ </g>
699
+ <!-- Claw 3 -->
700
+ <g transform="translate(140, 30) scale(0.5)">
701
+ <rect x="50" y="40" width="40" height="28" rx="4" fill="#ff4400" stroke="#ff6b35" stroke-width="2"/>
702
+ <circle cx="62" cy="35" r="5" fill="#ff4400" stroke="#ff6b35" stroke-width="1.5"/>
703
+ <circle cx="78" cy="35" r="5" fill="#ff4400" stroke="#ff6b35" stroke-width="1.5"/>
704
+ <circle cx="62" cy="35" r="2.5" fill="#00ff41"/>
705
+ <circle cx="78" cy="35" r="2.5" fill="#00ff41"/>
706
+ <rect x="30" y="44" width="22" height="14" rx="3" fill="#ff4400" stroke="#ff6b35" stroke-width="1.5"/>
707
+ <rect x="88" y="44" width="22" height="14" rx="3" fill="#ff4400" stroke="#ff6b35" stroke-width="1.5"/>
708
+ <rect x="60" y="43" width="20" height="13" rx="1" fill="#a855f7" stroke="#cc77ff" stroke-width="1"/>
709
+ </g>
710
+ <!-- Work bubbles -->
711
+ <rect x="5" y="80" width="55" height="22" rx="2" fill="#001a00" stroke="#00ff41" stroke-width="1"/>
712
+ <text x="32" y="89" font-family="monospace" font-size="4" fill="#00ff41" text-anchor="middle">reviewing PR</text>
713
+ <text x="32" y="98" font-family="monospace" font-size="4" fill="#666" text-anchor="middle">claw-1 🦞</text>
714
+ <rect x="73" y="68" width="55" height="22" rx="2" fill="#001a1a" stroke="#00ffff" stroke-width="1"/>
715
+ <text x="100" y="77" font-family="monospace" font-size="4" fill="#00ffff" text-anchor="middle">writing tests</text>
716
+ <text x="100" y="86" font-family="monospace" font-size="4" fill="#666" text-anchor="middle">claw-2 🦞</text>
717
+ <rect x="140" y="80" width="55" height="22" rx="2" fill="#1a0030" stroke="#a855f7" stroke-width="1"/>
718
+ <text x="167" y="89" font-family="monospace" font-size="4" fill="#a855f7" text-anchor="middle">monitoring</text>
719
+ <text x="167" y="98" font-family="monospace" font-size="4" fill="#666" text-anchor="middle">claw-3 🦞</text>
720
+ <!-- Shared memory hub -->
721
+ <rect x="70" y="108" width="60" height="20" rx="3" fill="#1a001a" stroke="#ff00ff" stroke-width="1.5"/>
722
+ <text x="100" y="118" font-family="monospace" font-size="4" fill="#ff00ff" text-anchor="middle">SHARED MEMORY</text>
723
+ <text x="100" y="125" font-family="monospace" font-size="3.5" fill="#a855f7" text-anchor="middle">~/.va-claw/memory.db</text>
724
+ <!-- Connection lines -->
725
+ <line x1="32" y1="103" x2="90" y2="108" stroke="#00ff41" stroke-width="0.8" opacity="0.6" stroke-dasharray="3,2"/>
726
+ <line x1="100" y1="90" x2="100" y2="108" stroke="#00ffff" stroke-width="0.8" opacity="0.6" stroke-dasharray="3,2"/>
727
+ <line x1="167" y1="103" x2="110" y2="108" stroke="#a855f7" stroke-width="0.8" opacity="0.6" stroke-dasharray="3,2"/>
728
+ <!-- Caption -->
729
+ <text x="100" y="146" font-family="monospace" font-size="4.5" fill="#ffff00" text-anchor="middle">SPAWN A FLEET.</text>
730
+ <text x="100" y="156" font-family="monospace" font-size="4.5" fill="#00ff41" text-anchor="middle">ONE MEMORY. INFINITE CLAWS.</text>
731
+ </svg>
732
+ </div>
733
+
734
+ </div>
735
+ </section>
736
+
476
737
  <!-- THE PITCH -->
477
738
  <section class="pitch">
478
739
  <div class="pitch-grid">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "va-claw",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "Persistent memory, identity, and wake-loop daemon for Claude Code & Codex",
5
5
  "keywords": [
6
6
  "claude-code",
@@ -1 +1 @@
1
- {"fileNames":["../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.scripthost.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2022.full.d.ts","../../daemon/dist/cli-adapter.d.ts","../../identity/dist/types.d.ts","../../identity/dist/path.d.ts","../../identity/dist/storage.d.ts","../../identity/dist/render.d.ts","../../identity/dist/wizard.d.ts","../../identity/dist/index.d.ts","../../daemon/dist/types.d.ts","../../daemon/dist/runtime.d.ts","../../daemon/dist/service.d.ts","../../daemon/dist/index.d.ts","../../memory/dist/types.d.ts","../../memory/dist/memory-store.d.ts","../../memory/dist/default-store.d.ts","../../memory/dist/forgetting-curve.d.ts","../../memory/dist/index.d.ts","../../skills/dist/types.d.ts","../../skills/dist/frontmatter.d.ts","../../skills/dist/paths.d.ts","../../skills/dist/search.d.ts","../../skills/dist/store.d.ts","../../skills/dist/index.d.ts","../src/output.ts","../../channels/discord/dist/types.d.ts","../../channels/discord/dist/runtime.d.ts","../../channels/discord/dist/index.d.ts","../../../node_modules/.pnpm/@slack+bolt@file+vendor+slack-bolt/node_modules/@slack/bolt/index.d.ts","../../channels/slack/dist/types.d.ts","../../channels/slack/dist/message.d.ts","../../channels/slack/dist/cli.d.ts","../../channels/slack/dist/index.d.ts","../../../node_modules/.pnpm/grammy@file+vendor+grammy/node_modules/grammy/index.d.ts","../../channels/telegram/dist/types.d.ts","../../channels/telegram/dist/message.d.ts","../../channels/telegram/dist/cli.d.ts","../../channels/telegram/dist/index.d.ts","../../channels/dist/index.d.ts","../src/types.ts","../src/wait.ts","../src/channel-handlers.ts","../../../node_modules/.pnpm/commander@file+vendor+commander/node_modules/commander/index.d.ts","../src/deps-exports.ts","../src/install-files.ts","../src/deps.ts","../src/memory-status.ts","../src/platform.ts","../src/handlers.ts","../src/program.ts","../src/test-helpers.ts","../src/channel.test.ts","../src/index.ts","../src/install.test.ts","../src/node-shims.d.ts","../src/program.test.ts","../src/status.test.ts","../src/bin/va-claw.mts"],"fileIdsList":[[87,88],[87],[70,89,94,99],[91],[91,92,93],[90,91],[90],[96,116],[96,97,98],[95,96],[95],[114],[74,86,101,102],[111,112,116],[70,74],[79,85,101,105,106,116],[86,101,102,106,108,109],[86,101,103,106,107,108,109,110,111],[101,116],[116],[79,85],[74,101,116],[101,103,104,107,110],[74,79,85,101,107,116],[74,79,85,100],[64,71,72,73],[71],[70],[65,66,67,68,69],[65],[75,76],[75,76,77,78],[75],[80],[80,81,82,83,84]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7a3c8b952931daebdfc7a2897c53c0a1c73624593fa070e46bd537e64dcd20a","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"3cbad9a1ba4453443026ed38e4b8be018abb26565fa7c944376463ad9df07c41","impliedFormat":1},{"version":"9a8fe5579089e53ca02b72e9eaf63dddc327a90f6ad386bf67d160aa4b40eb54","impliedFormat":99},{"version":"c482a05324bdb183855141754506b813194543afd068d934f4797c4a0299c67a","impliedFormat":99},{"version":"0c97e331361352bccfa2d24e2e46625953a190534cf16e8e566b9a84e07b12ff","impliedFormat":99},{"version":"7fbec62b38299205ec520f27fc18ab5315733001fb166a2523f32bd856fafea8","impliedFormat":99},{"version":"7c5ed18df40661edfa1151e3002efde32b1cdf16818ba650fc1b55427274b020","impliedFormat":99},{"version":"184e07268b0c62bc9585ef90c2fb3971dd033e9a9d6b857768ecd5417a92d8ab","impliedFormat":99},{"version":"fe19936f3b0e52495d441d5de9b5b00acb8816cd8d9db7523dd388dc9978ff3b","impliedFormat":99},{"version":"b7b187dabcced7b1b0ff443ce65ab334cec0cebe177f42fbb049852660e85d91","impliedFormat":99},{"version":"3f50eb2387269096a4bbf8d14acb44eeba45c0a1004a066b377f8a2f355d0602","impliedFormat":99},{"version":"e3d37c73f00588d90a161cc3f92883fd983a5d362662bdbc0806e2b7217a5460","impliedFormat":99},{"version":"37c109122af17ca1520cae25912ca61aef54369a4792f736cff1f76ce575cc5f","impliedFormat":99},{"version":"17ed98c133e426c904a470318d1cd3a970d5e7e10fc8262a7c8879d8e748fe7d","impliedFormat":99},{"version":"0c944fc206e434588cad7f546e11542a01182aee7681624c146c8dd102aa9879","impliedFormat":99},{"version":"af244f92632e7736314e31d4f5151f07de5290528234ae4e12d9883e3bb78d8a","impliedFormat":99},{"version":"1b2024e488b72586da4f688c17f45a59fb661b22e1fd638bf0f07315ef3578a7","impliedFormat":99},{"version":"fac607f987cccf61a1939a414605b589c2dabc97c6b471f0d70c099b57991ed6","impliedFormat":99},{"version":"a7e24482fe91c3f8ee714141e552ec46da00129f405dc05172a467560171c8ba","impliedFormat":99},{"version":"1be3b35db0b3cc52c6ddbb0856d8bfefafcab55da493bd3a9baa1c11ea0aeac0","impliedFormat":99},{"version":"caaebf12b13b193a309b7e8b7d4a89b98e7f9443c2d6d43c05deb638a0794d41","impliedFormat":99},{"version":"cf987a22822823e5c4e5302c2008278f43de9510a59d0f1db1ca4bd69536c163","impliedFormat":99},{"version":"e576d668e2144c66277fd699ba021651e295acee67536dd9221213635de3c8f7","impliedFormat":99},{"version":"fa8bbdfa2d8652b546fbce728339f5c0ab018fad464ad67ee139c4f696b221bd","impliedFormat":99},{"version":"70f5d518f59953a68caad026587461c3457e41b917ca05e38a6065079a301a99","signature":"04ff5ed7e3ccf296fd2958eb338872e278a5a6e711e05d9cd96f72975deff652","impliedFormat":99},{"version":"cd209d521442f7935c05fa50cb7425a1d0ccc23e3542f1b09170605816a98f58","impliedFormat":99},{"version":"807e9c4a709269a7d361116b1217314016ab41d08742c3ebb6b6c5c8ede01feb","impliedFormat":99},{"version":"f4c952fa3af38c1877b21ca24d4d72877c05321030232e2a28f728a908ddc299","impliedFormat":99},{"version":"8cf25cddead8fb22e058aab944d4219414e6ca3d4fa5ec552804e3bfb0d54340","impliedFormat":99},{"version":"40086e5894444e5c648031cfb90d570acdf7a263b5747d1f822d3ee93f39bc82","impliedFormat":99},{"version":"efa66190d479f7dc16aee05d6a204bff6afb652e89d6c3e9f7744708996b6eaf","impliedFormat":99},{"version":"cacad4d33344acbf519310a3705bfba4d6bb27f0b69803b540c2afaead3e051c","impliedFormat":99},{"version":"a9e3fec728f35a727d4664d3573c30f3216f9dfc3c1c66f9652b6aa52f5d1784","impliedFormat":99},{"version":"e5d4ba0f91f9e4b1a6585cd3f8abb98ada1451636ecb1241e89ad791032c5701","impliedFormat":99},{"version":"bdc3309b437bcde30201fe9171a1a13674b7b2715d8d17822384d6569f628d86","impliedFormat":99},{"version":"689f94b862e0b8c55388f9f928c5509c9208b2229bd4d11f3e01c6fbc364a16f","impliedFormat":99},{"version":"61e3dbca3d14350fc2ec978e372036214d1d718ffb6679a6df0c2b1f1d5fdb95","impliedFormat":99},{"version":"1d2d5994bab19d84725b9b038be127a7d976c0a3f439f86273d32b6b7e9ed925","impliedFormat":99},{"version":"aa0c14112c392105bd85af1f5e46602be479d81302fb18e5d9ca1bad2928686b","impliedFormat":99},{"version":"8b018a5a4e0e3e3069ece573360d6a63fe1ae2fc5078a387ef0be97d6f96b138","signature":"673e6f305382d3bdd906291bfc891cb972809b0ca4553027fc2a54ec78f6dec3","impliedFormat":99},{"version":"fd4f3224de8adad2473b996989e4118200243aa4da1b8bdcdc2ace341e1ac0d2","signature":"0bf87e3b0657ac15c3cb7ffde7c1a46da50c873939a198170a7ff8d69fa0605b","impliedFormat":99},{"version":"8c20ec5e9eca09acc9ac89671bce8984450fed83163e795ff38da10b49059139","signature":"7d27b387e56a6b5b44ee17c28e53c7da02dd7e12ce0fa0ee345fd542e003cda4","impliedFormat":99},{"version":"274bb858881a6bb256e90d521c2af6528669f8217bb8015b07f68a4270df585a","impliedFormat":99},{"version":"769454a6085be589f1b572aa001dd91cf44e870e6a643b756768c0d5389fe553","signature":"150790343c1ae6c5358c658ed5291d075fc1464f9215cfc7228546af63cdc0b5","impliedFormat":99},{"version":"1f29aafeb40a2e493d1691354d009481928928d99131db83a6928b80e461442b","signature":"4d217500d0f64749fa2e0863b36fc66dbcc07858fb496864c399acb45fd43ab3","impliedFormat":99},{"version":"1e69e403f8d3b714a2a8b7485ca66be70f561dba85a4c319b0fec67762696776","signature":"46d1206f91056b2b38e82b69fa35ac2938c658774870f558b547df01ee3c06a3","impliedFormat":99},{"version":"906b729fe73bcf980b37339f24acfff52992f37428bb0dad4500e9525fa99a4e","signature":"b5aa395c3e4b60c85efbfc35045949d25320731c85e7ad13066f1507dfb78970","impliedFormat":99},{"version":"c7978b0988a8cb873dde1083c62c2d37cffddd919843fac0513cd823ba7f46c3","signature":"e47c786151590a097f1bcf3a6a5dcf12551610d95ef5d01d026255d0fc8053d2","impliedFormat":99},{"version":"26eb8d4e07cb3503f35d6f768d836ca5aeb840e58407888189e4986ec1a38f63","signature":"86bd85161d5e05ca053ec437910b1b110bf61604f24fc89b38ff992130adb0fe","impliedFormat":99},{"version":"19dde4b80d6e707774de8bb2aa5113f813476efe8c5b5a44ec5d6cb4c44c9f01","signature":"5e70adf3b4674ff195dfe85c27adab3e98c7cc23f9d429d0b660af4a63844f36","impliedFormat":99},{"version":"10caf49074cd091c816fdf55aa30c37733ed88b8efbe108ef10919c96c1fb88d","signature":"8d9cf5c341750a130826062da1c7de0106dfa12a03ec3bb2956c97ff7eb0f899","impliedFormat":99},{"version":"927f076313bc1e8e30a669437c4d7fb8471556517b6a5a7dedd319092046c000","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"5bca8bb637345ee45f08062a47984eba3834b8cb066c17cb6f040338939b2c7f","signature":"c7a52dedfeb79247b66876ae69b7c4c2dead9c73bc07fcc173ec69f44ab20894","impliedFormat":99},{"version":"5023f722ae51b2ef368c9b6fe67ed54202f7af1e9f92cd4be9a85e456b95398f","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"c393a5018d68ee7a4df3456a0713c7adbb3879493f31d14147377266cd4af681","affectsGlobalScope":true,"impliedFormat":99},{"version":"ec9d1213e89d727711f697d156a60b4d201b083c289bbb3a0cc8769c0007dc98","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"1feb3afb1188fac07959c9d5727cdd6f816e41447ce7111c64859f1fdddfefb8","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"bd616dd37494b3a981faab5c5fcbb98d7809d833a3bd9936fa53c6ac7da721ae","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012","impliedFormat":99}],"root":[86,[101,103],[105,119]],"options":{"composite":true,"declaration":true,"declarationMap":true,"module":199,"noEmitOnError":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9,"tsBuildInfoFile":"./.tsbuildinfo","verbatimModuleSyntax":true},"referencedMap":[[89,1],[88,2],[100,3],[93,4],[94,5],[92,6],[91,7],[98,8],[99,9],[97,10],[96,11],[119,12],[103,13],[113,14],[105,15],[107,16],[110,17],[114,18],[106,19],[115,14],[108,20],[86,21],[109,22],[117,14],[111,23],[118,14],[112,24],[101,25],[74,26],[72,27],[73,27],[71,28],[70,29],[68,30],[67,30],[69,30],[77,31],[79,32],[76,33],[81,34],[85,35],[83,34],[84,34]],"latestChangedDtsFile":"./types.d.ts","version":"5.9.3"}
1
+ {"fileNames":["../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.scripthost.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2022.full.d.ts","../../daemon/dist/cli-adapter.d.ts","../../identity/dist/types.d.ts","../../identity/dist/path.d.ts","../../identity/dist/storage.d.ts","../../identity/dist/render.d.ts","../../identity/dist/wizard.d.ts","../../identity/dist/index.d.ts","../../daemon/dist/types.d.ts","../../daemon/dist/runtime.d.ts","../../daemon/dist/service.d.ts","../../daemon/dist/index.d.ts","../../memory/dist/types.d.ts","../../memory/dist/memory-store.d.ts","../../memory/dist/default-store.d.ts","../../memory/dist/forgetting-curve.d.ts","../../memory/dist/index.d.ts","../../skills/dist/types.d.ts","../../skills/dist/frontmatter.d.ts","../../skills/dist/paths.d.ts","../../skills/dist/search.d.ts","../../skills/dist/store.d.ts","../../skills/dist/index.d.ts","../src/output.ts","../../channels/discord/dist/types.d.ts","../../channels/discord/dist/runtime.d.ts","../../channels/discord/dist/index.d.ts","../../../node_modules/.pnpm/@slack+bolt@file+vendor+slack-bolt/node_modules/@slack/bolt/index.d.ts","../../channels/slack/dist/types.d.ts","../../channels/slack/dist/message.d.ts","../../channels/slack/dist/cli.d.ts","../../channels/slack/dist/index.d.ts","../../../node_modules/.pnpm/grammy@file+vendor+grammy/node_modules/grammy/index.d.ts","../../channels/telegram/dist/types.d.ts","../../channels/telegram/dist/message.d.ts","../../channels/telegram/dist/cli.d.ts","../../channels/telegram/dist/index.d.ts","../../channels/dist/index.d.ts","../src/types.ts","../src/wait.ts","../src/channel-handlers.ts","../../../node_modules/.pnpm/commander@file+vendor+commander/node_modules/commander/index.d.ts","../src/deps-exports.ts","../src/install-files.ts","../src/deps.ts","../src/memory-status.ts","../src/platform.ts","../src/handlers.ts","../src/program.ts","../src/test-helpers.ts","../src/channel.test.ts","../src/index.ts","../src/install.test.ts","../src/node-shims.d.ts","../src/program.test.ts","../src/status.test.ts","../src/bin/va-claw.mts"],"fileIdsList":[[87,88],[87],[70,89,94,99],[91],[91,92,93],[90,91],[90],[96,116],[96,97,98],[95,96],[95],[114],[74,86,101,102],[111,112,116],[70,74],[79,85,101,105,106,116],[86,101,102,106,108,109],[86,101,103,106,107,108,109,110,111],[101,116],[116],[79,85],[74,101,116],[101,103,104,107,110],[74,79,85,101,107,116],[74,79,85,100],[64,71,72,73],[71],[70],[65,66,67,68,69],[65],[75,76],[75,76,77,78],[75],[80],[80,81,82,83,84]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7a3c8b952931daebdfc7a2897c53c0a1c73624593fa070e46bd537e64dcd20a","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"3cbad9a1ba4453443026ed38e4b8be018abb26565fa7c944376463ad9df07c41","impliedFormat":1},{"version":"9a8fe5579089e53ca02b72e9eaf63dddc327a90f6ad386bf67d160aa4b40eb54","impliedFormat":99},{"version":"c482a05324bdb183855141754506b813194543afd068d934f4797c4a0299c67a","impliedFormat":99},{"version":"0c97e331361352bccfa2d24e2e46625953a190534cf16e8e566b9a84e07b12ff","impliedFormat":99},{"version":"7fbec62b38299205ec520f27fc18ab5315733001fb166a2523f32bd856fafea8","impliedFormat":99},{"version":"7c5ed18df40661edfa1151e3002efde32b1cdf16818ba650fc1b55427274b020","impliedFormat":99},{"version":"184e07268b0c62bc9585ef90c2fb3971dd033e9a9d6b857768ecd5417a92d8ab","impliedFormat":99},{"version":"fe19936f3b0e52495d441d5de9b5b00acb8816cd8d9db7523dd388dc9978ff3b","impliedFormat":99},{"version":"b7b187dabcced7b1b0ff443ce65ab334cec0cebe177f42fbb049852660e85d91","impliedFormat":99},{"version":"3f50eb2387269096a4bbf8d14acb44eeba45c0a1004a066b377f8a2f355d0602","impliedFormat":99},{"version":"e3d37c73f00588d90a161cc3f92883fd983a5d362662bdbc0806e2b7217a5460","impliedFormat":99},{"version":"37c109122af17ca1520cae25912ca61aef54369a4792f736cff1f76ce575cc5f","impliedFormat":99},{"version":"17ed98c133e426c904a470318d1cd3a970d5e7e10fc8262a7c8879d8e748fe7d","impliedFormat":99},{"version":"0c944fc206e434588cad7f546e11542a01182aee7681624c146c8dd102aa9879","impliedFormat":99},{"version":"af244f92632e7736314e31d4f5151f07de5290528234ae4e12d9883e3bb78d8a","impliedFormat":99},{"version":"1b2024e488b72586da4f688c17f45a59fb661b22e1fd638bf0f07315ef3578a7","impliedFormat":99},{"version":"fac607f987cccf61a1939a414605b589c2dabc97c6b471f0d70c099b57991ed6","impliedFormat":99},{"version":"a7e24482fe91c3f8ee714141e552ec46da00129f405dc05172a467560171c8ba","impliedFormat":99},{"version":"1be3b35db0b3cc52c6ddbb0856d8bfefafcab55da493bd3a9baa1c11ea0aeac0","impliedFormat":99},{"version":"caaebf12b13b193a309b7e8b7d4a89b98e7f9443c2d6d43c05deb638a0794d41","impliedFormat":99},{"version":"cf987a22822823e5c4e5302c2008278f43de9510a59d0f1db1ca4bd69536c163","impliedFormat":99},{"version":"e576d668e2144c66277fd699ba021651e295acee67536dd9221213635de3c8f7","impliedFormat":99},{"version":"fa8bbdfa2d8652b546fbce728339f5c0ab018fad464ad67ee139c4f696b221bd","impliedFormat":99},{"version":"70f5d518f59953a68caad026587461c3457e41b917ca05e38a6065079a301a99","signature":"04ff5ed7e3ccf296fd2958eb338872e278a5a6e711e05d9cd96f72975deff652","impliedFormat":99},{"version":"cd209d521442f7935c05fa50cb7425a1d0ccc23e3542f1b09170605816a98f58","impliedFormat":99},{"version":"807e9c4a709269a7d361116b1217314016ab41d08742c3ebb6b6c5c8ede01feb","impliedFormat":99},{"version":"f4c952fa3af38c1877b21ca24d4d72877c05321030232e2a28f728a908ddc299","impliedFormat":99},{"version":"8cf25cddead8fb22e058aab944d4219414e6ca3d4fa5ec552804e3bfb0d54340","impliedFormat":99},{"version":"40086e5894444e5c648031cfb90d570acdf7a263b5747d1f822d3ee93f39bc82","impliedFormat":99},{"version":"efa66190d479f7dc16aee05d6a204bff6afb652e89d6c3e9f7744708996b6eaf","impliedFormat":99},{"version":"cacad4d33344acbf519310a3705bfba4d6bb27f0b69803b540c2afaead3e051c","impliedFormat":99},{"version":"a9e3fec728f35a727d4664d3573c30f3216f9dfc3c1c66f9652b6aa52f5d1784","impliedFormat":99},{"version":"e5d4ba0f91f9e4b1a6585cd3f8abb98ada1451636ecb1241e89ad791032c5701","impliedFormat":99},{"version":"bdc3309b437bcde30201fe9171a1a13674b7b2715d8d17822384d6569f628d86","impliedFormat":99},{"version":"689f94b862e0b8c55388f9f928c5509c9208b2229bd4d11f3e01c6fbc364a16f","impliedFormat":99},{"version":"61e3dbca3d14350fc2ec978e372036214d1d718ffb6679a6df0c2b1f1d5fdb95","impliedFormat":99},{"version":"1d2d5994bab19d84725b9b038be127a7d976c0a3f439f86273d32b6b7e9ed925","impliedFormat":99},{"version":"aa0c14112c392105bd85af1f5e46602be479d81302fb18e5d9ca1bad2928686b","impliedFormat":99},{"version":"8b018a5a4e0e3e3069ece573360d6a63fe1ae2fc5078a387ef0be97d6f96b138","signature":"673e6f305382d3bdd906291bfc891cb972809b0ca4553027fc2a54ec78f6dec3","impliedFormat":99},{"version":"fd4f3224de8adad2473b996989e4118200243aa4da1b8bdcdc2ace341e1ac0d2","signature":"0bf87e3b0657ac15c3cb7ffde7c1a46da50c873939a198170a7ff8d69fa0605b","impliedFormat":99},{"version":"8c20ec5e9eca09acc9ac89671bce8984450fed83163e795ff38da10b49059139","signature":"7d27b387e56a6b5b44ee17c28e53c7da02dd7e12ce0fa0ee345fd542e003cda4","impliedFormat":99},{"version":"274bb858881a6bb256e90d521c2af6528669f8217bb8015b07f68a4270df585a","impliedFormat":99},{"version":"769454a6085be589f1b572aa001dd91cf44e870e6a643b756768c0d5389fe553","signature":"150790343c1ae6c5358c658ed5291d075fc1464f9215cfc7228546af63cdc0b5","impliedFormat":99},{"version":"1f29aafeb40a2e493d1691354d009481928928d99131db83a6928b80e461442b","signature":"4d217500d0f64749fa2e0863b36fc66dbcc07858fb496864c399acb45fd43ab3","impliedFormat":99},{"version":"1e69e403f8d3b714a2a8b7485ca66be70f561dba85a4c319b0fec67762696776","signature":"46d1206f91056b2b38e82b69fa35ac2938c658774870f558b547df01ee3c06a3","impliedFormat":99},{"version":"906b729fe73bcf980b37339f24acfff52992f37428bb0dad4500e9525fa99a4e","signature":"b5aa395c3e4b60c85efbfc35045949d25320731c85e7ad13066f1507dfb78970","impliedFormat":99},{"version":"c7978b0988a8cb873dde1083c62c2d37cffddd919843fac0513cd823ba7f46c3","signature":"e47c786151590a097f1bcf3a6a5dcf12551610d95ef5d01d026255d0fc8053d2","impliedFormat":99},{"version":"26eb8d4e07cb3503f35d6f768d836ca5aeb840e58407888189e4986ec1a38f63","signature":"86bd85161d5e05ca053ec437910b1b110bf61604f24fc89b38ff992130adb0fe","impliedFormat":99},{"version":"21562e9c30697c8d69596f45fee9e92f78ec6f442f117a2dd58a3c2cb8013617","signature":"5e70adf3b4674ff195dfe85c27adab3e98c7cc23f9d429d0b660af4a63844f36","impliedFormat":99},{"version":"10caf49074cd091c816fdf55aa30c37733ed88b8efbe108ef10919c96c1fb88d","signature":"8d9cf5c341750a130826062da1c7de0106dfa12a03ec3bb2956c97ff7eb0f899","impliedFormat":99},{"version":"927f076313bc1e8e30a669437c4d7fb8471556517b6a5a7dedd319092046c000","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"5bca8bb637345ee45f08062a47984eba3834b8cb066c17cb6f040338939b2c7f","signature":"c7a52dedfeb79247b66876ae69b7c4c2dead9c73bc07fcc173ec69f44ab20894","impliedFormat":99},{"version":"5023f722ae51b2ef368c9b6fe67ed54202f7af1e9f92cd4be9a85e456b95398f","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"c393a5018d68ee7a4df3456a0713c7adbb3879493f31d14147377266cd4af681","affectsGlobalScope":true,"impliedFormat":99},{"version":"ec9d1213e89d727711f697d156a60b4d201b083c289bbb3a0cc8769c0007dc98","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"1feb3afb1188fac07959c9d5727cdd6f816e41447ce7111c64859f1fdddfefb8","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"bd616dd37494b3a981faab5c5fcbb98d7809d833a3bd9936fa53c6ac7da721ae","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012","impliedFormat":99}],"root":[86,[101,103],[105,119]],"options":{"composite":true,"declaration":true,"declarationMap":true,"module":199,"noEmitOnError":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9,"tsBuildInfoFile":"./.tsbuildinfo","verbatimModuleSyntax":true},"referencedMap":[[89,1],[88,2],[100,3],[93,4],[94,5],[92,6],[91,7],[98,8],[99,9],[97,10],[96,11],[119,12],[103,13],[113,14],[105,15],[107,16],[110,17],[114,18],[106,19],[115,14],[108,20],[86,21],[109,22],[117,14],[111,23],[118,14],[112,24],[101,25],[74,26],[72,27],[73,27],[71,28],[70,29],[68,30],[67,30],[69,30],[77,31],[79,32],[76,33],[81,34],[85,35],[83,34],[84,34]],"latestChangedDtsFile":"./types.d.ts","version":"5.9.3"}
@@ -63,7 +63,7 @@ export function createCliProgram(deps = createDefaultCliDeps()) {
63
63
  skill.command("list").description("List installed and project skills.").action(async () => runSkillList(deps));
64
64
  skill
65
65
  .command("add")
66
- .description("Install a skill from a local Markdown file.")
66
+ .description("Install a skill from a local Markdown file or URL.\n\nTip: vet unknown skills first — va-claw skill add https://clawhub.ai/spclaudehome/Skill-vetter")
67
67
  .argument("<path-or-url>")
68
68
  .action(async (pathOrUrl) => runSkillAdd(pathOrUrl, deps));
69
69
  skill
@@ -1 +1 @@
1
- {"version":3,"file":"program.js","sourceRoot":"","sources":["../src/program.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"program.js","sourceRoot":"","sources":["../src/program.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"fileNames":["../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.scripthost.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2022.full.d.ts","../src/types.ts","../src/frontmatter.ts","../src/frontmatter.test.ts","../src/paths.ts","../src/search.ts","../src/store.ts","../src/index.ts","../src/node-shims.d.ts","../src/skills.test.ts"],"fileIdsList":[[65,71],[64],[64,65,67,68,69],[71],[70,71],[64,65,67,68,71]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7a3c8b952931daebdfc7a2897c53c0a1c73624593fa070e46bd537e64dcd20a","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"3cbad9a1ba4453443026ed38e4b8be018abb26565fa7c944376463ad9df07c41","impliedFormat":1},{"version":"ff16278045de87cf1b72a627aff77bf7049a6a4eddd162b6dc15e1f2f3d8d8cd","signature":"a7e24482fe91c3f8ee714141e552ec46da00129f405dc05172a467560171c8ba","impliedFormat":99},{"version":"3b18002ef54ebbff63306b9fa04f938b769e9f9f25eeb49291df2bd421714efd","signature":"1be3b35db0b3cc52c6ddbb0856d8bfefafcab55da493bd3a9baa1c11ea0aeac0","impliedFormat":99},{"version":"c92743ff66307ee6ed463cddc8977156b3aadb08b95f330182fd31283d8e4058","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"7ec920ff31c91bd50c48b0fe66050199515683ed890004e8e4e1245ea18f1c85","signature":"caaebf12b13b193a309b7e8b7d4a89b98e7f9443c2d6d43c05deb638a0794d41","impliedFormat":99},{"version":"a22483fd4b54bec92940ecd80bfb59800c1e1a8efcf153c26c6669274524692a","signature":"cf987a22822823e5c4e5302c2008278f43de9510a59d0f1db1ca4bd69536c163","impliedFormat":99},{"version":"686a537b8ff45451b85ad59a6488db007fca79abe2cc944a10a6adf6d1495d1d","signature":"e576d668e2144c66277fd699ba021651e295acee67536dd9221213635de3c8f7","impliedFormat":99},{"version":"e0fd098e7f91eb8abbba5c0999009cc964e22670388cc8aa93a08cf2a8c9cac1","signature":"fa8bbdfa2d8652b546fbce728339f5c0ab018fad464ad67ee139c4f696b221bd","impliedFormat":99},{"version":"afa213381e0e3705091f3eca2213c9f2575c4f7cfa0b1b043dc94d55c1e9c7f9","affectsGlobalScope":true,"impliedFormat":99},{"version":"fc3d940f6ae8b85688edbcc337bd8b317c72371fbf0d393646fe5e09b6ef094b","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99}],"root":[[64,72]],"options":{"composite":true,"declaration":true,"declarationMap":true,"module":199,"noEmitOnError":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9,"tsBuildInfoFile":"./.tsbuildinfo","verbatimModuleSyntax":true},"referencedMap":[[66,1],[65,2],[70,3],[67,4],[68,2],[72,5],[69,6]],"latestChangedDtsFile":"./frontmatter.test.d.ts","version":"5.9.3"}
1
+ {"fileNames":["../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.scripthost.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/typescript@file+vendor+typescript/node_modules/typescript/lib/lib.es2022.full.d.ts","../src/types.ts","../src/frontmatter.ts","../src/frontmatter.test.ts","../src/paths.ts","../src/search.ts","../src/store.ts","../src/index.ts","../src/node-shims.d.ts","../src/skills.test.ts"],"fileIdsList":[[65,71],[64],[64,65,67,68,69],[71],[70,71],[64,65,67,68,71]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7a3c8b952931daebdfc7a2897c53c0a1c73624593fa070e46bd537e64dcd20a","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"3cbad9a1ba4453443026ed38e4b8be018abb26565fa7c944376463ad9df07c41","impliedFormat":1},{"version":"ff16278045de87cf1b72a627aff77bf7049a6a4eddd162b6dc15e1f2f3d8d8cd","signature":"a7e24482fe91c3f8ee714141e552ec46da00129f405dc05172a467560171c8ba","impliedFormat":99},{"version":"1c207126dfbf973bee379a3230142be03a1faa1bb6b175e6eb861e23fd9dcd72","signature":"1be3b35db0b3cc52c6ddbb0856d8bfefafcab55da493bd3a9baa1c11ea0aeac0","impliedFormat":99},{"version":"c92743ff66307ee6ed463cddc8977156b3aadb08b95f330182fd31283d8e4058","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"7ec920ff31c91bd50c48b0fe66050199515683ed890004e8e4e1245ea18f1c85","signature":"caaebf12b13b193a309b7e8b7d4a89b98e7f9443c2d6d43c05deb638a0794d41","impliedFormat":99},{"version":"a22483fd4b54bec92940ecd80bfb59800c1e1a8efcf153c26c6669274524692a","signature":"cf987a22822823e5c4e5302c2008278f43de9510a59d0f1db1ca4bd69536c163","impliedFormat":99},{"version":"686a537b8ff45451b85ad59a6488db007fca79abe2cc944a10a6adf6d1495d1d","signature":"e576d668e2144c66277fd699ba021651e295acee67536dd9221213635de3c8f7","impliedFormat":99},{"version":"e0fd098e7f91eb8abbba5c0999009cc964e22670388cc8aa93a08cf2a8c9cac1","signature":"fa8bbdfa2d8652b546fbce728339f5c0ab018fad464ad67ee139c4f696b221bd","impliedFormat":99},{"version":"afa213381e0e3705091f3eca2213c9f2575c4f7cfa0b1b043dc94d55c1e9c7f9","affectsGlobalScope":true,"impliedFormat":99},{"version":"fc3d940f6ae8b85688edbcc337bd8b317c72371fbf0d393646fe5e09b6ef094b","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99}],"root":[[64,72]],"options":{"composite":true,"declaration":true,"declarationMap":true,"module":199,"noEmitOnError":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9,"tsBuildInfoFile":"./.tsbuildinfo","verbatimModuleSyntax":true},"referencedMap":[[66,1],[65,2],[70,3],[67,4],[68,2],[72,5],[69,6]],"latestChangedDtsFile":"./frontmatter.test.d.ts","version":"5.9.3"}
@@ -13,7 +13,9 @@ export function parseSkillMarkdown(source, path) {
13
13
  }
14
14
  function parseFrontmatterBlock(block) {
15
15
  const values = new Map();
16
- for (const rawLine of block.split(/\r?\n/)) {
16
+ const lines = block.split(/\r?\n/);
17
+ for (let index = 0; index < lines.length; index += 1) {
18
+ const rawLine = lines[index];
17
19
  const line = rawLine.trim();
18
20
  if (line === "") {
19
21
  continue;
@@ -24,7 +26,30 @@ function parseFrontmatterBlock(block) {
24
26
  }
25
27
  const key = line.slice(0, separator).trim();
26
28
  const value = line.slice(separator + 1).trim();
27
- values.set(key, value);
29
+ if (value !== "") {
30
+ values.set(key, value);
31
+ continue;
32
+ }
33
+ const baseIndent = rawLine.length - rawLine.trimStart().length;
34
+ const items = [];
35
+ while (index + 1 < lines.length) {
36
+ const nextRawLine = lines[index + 1];
37
+ const nextLine = nextRawLine.trim();
38
+ if (nextLine === "") {
39
+ index += 1;
40
+ continue;
41
+ }
42
+ const nextIndent = nextRawLine.length - nextRawLine.trimStart().length;
43
+ if (nextIndent <= baseIndent) {
44
+ break;
45
+ }
46
+ if (!nextLine.startsWith("-")) {
47
+ throw new Error(`Invalid frontmatter line: ${nextRawLine}`);
48
+ }
49
+ items.push(nextLine.slice(1).trim());
50
+ index += 1;
51
+ }
52
+ values.set(key, items);
28
53
  }
29
54
  const name = parseScalar(values.get("name"), "name");
30
55
  const description = parseScalar(values.get("description"), "description");
@@ -36,6 +61,9 @@ function parseScalar(rawValue, field) {
36
61
  if (!rawValue) {
37
62
  throw new Error(`Skill frontmatter is missing "${field}".`);
38
63
  }
64
+ if (Array.isArray(rawValue)) {
65
+ throw new Error(`Skill frontmatter field "${field}" must be a scalar.`);
66
+ }
39
67
  if ((rawValue.startsWith("'") && rawValue.endsWith("'")) ||
40
68
  (rawValue.startsWith("\"") && rawValue.endsWith("\""))) {
41
69
  return rawValue.slice(1, -1);
@@ -46,8 +74,11 @@ function parseArray(rawValue, field) {
46
74
  if (!rawValue) {
47
75
  throw new Error(`Skill frontmatter is missing "${field}".`);
48
76
  }
77
+ if (Array.isArray(rawValue)) {
78
+ return rawValue.map((item) => parseScalar(item.trim(), field));
79
+ }
49
80
  if (!rawValue.startsWith("[") || !rawValue.endsWith("]")) {
50
- throw new Error(`Skill frontmatter field "${field}" must be an inline array.`);
81
+ throw new Error(`Skill frontmatter field "${field}" must be an array.`);
51
82
  }
52
83
  const body = rawValue.slice(1, -1).trim();
53
84
  if (body === "") {
@@ -1 +1 @@
1
- {"version":3,"file":"frontmatter.js","sourceRoot":"","sources":["../src/frontmatter.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"frontmatter.js","sourceRoot":"","sources":["../src/frontmatter.ts"],"names":[],"mappings":"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"}