clavix 7.2.0 → 7.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (27) hide show
  1. package/README.md +10 -0
  2. package/dist/core/adapters/agent-skills-adapter.d.ts +2 -1
  3. package/dist/core/adapters/agent-skills-adapter.js +10 -3
  4. package/dist/templates/agents/agents.md +17 -0
  5. package/dist/templates/skills/implement-templates/implementer-prompt.md +117 -0
  6. package/dist/templates/skills/implement-templates/quality-reviewer-prompt.md +121 -0
  7. package/dist/templates/skills/implement-templates/spec-reviewer-prompt.md +108 -0
  8. package/dist/templates/skills/implement.md +108 -21
  9. package/dist/templates/skills/plan.md +27 -4
  10. package/dist/templates/skills/prd.md +22 -6
  11. package/dist/templates/skills/using-clavix.md +269 -0
  12. package/dist/templates/skills/verify.md +98 -14
  13. package/dist/templates/slash-commands/_canonical/archive.md +1 -1
  14. package/dist/templates/slash-commands/_canonical/implement.md +1 -1
  15. package/dist/templates/slash-commands/_canonical/improve.md +1 -1
  16. package/dist/templates/slash-commands/_canonical/plan.md +1 -1
  17. package/dist/templates/slash-commands/_canonical/prd.md +1 -1
  18. package/dist/templates/slash-commands/_canonical/refine.md +1 -1
  19. package/dist/templates/slash-commands/_canonical/review.md +1 -1
  20. package/dist/templates/slash-commands/_canonical/start.md +1 -1
  21. package/dist/templates/slash-commands/_canonical/summarize.md +1 -1
  22. package/dist/templates/slash-commands/_canonical/verify.md +1 -1
  23. package/package.json +1 -1
  24. package/dist/templates/agents/agents 3.md +0 -200
  25. package/dist/templates/agents/agents 5.md +0 -200
  26. package/dist/templates/agents/octo 3.md +0 -237
  27. package/dist/templates/agents/octo 4.md +0 -237
@@ -1,9 +1,8 @@
1
1
  ---
2
2
  name: clavix-prd
3
- description: Create comprehensive PRDs through strategic questioning
4
- license: MIT
3
+ description: Create comprehensive Product Requirements Documents through strategic questioning. Use when planning a new feature or project that needs clear requirements.
4
+ license: Apache-2.0
5
5
  ---
6
-
7
6
  # Clavix PRD Skill
8
7
 
9
8
  Transform ideas into structured Product Requirements Documents through strategic questioning.
@@ -292,10 +291,27 @@ Display quality scores and improvement suggestions if needed.
292
291
 
293
292
  After PRD creation, guide user to:
294
293
 
294
+ **REQUIRED SUB-SKILL**: Use `clavix-plan` to generate implementation tasks
295
+
296
+ Do not skip directly to implementation. Follow the skill chain:
297
+
298
+ ```
299
+ clavix-prd (you are here)
300
+
301
+ ▼ REQUIRED
302
+ clavix-plan
303
+
304
+ ▼ REQUIRED
305
+ clavix-implement
306
+
307
+ ▼ REQUIRED (after all tasks)
308
+ clavix-verify
309
+ ```
310
+
295
311
  | If... | Recommend |
296
312
  |-------|-----------|
297
- | Ready for task breakdown | `/clavix-plan` - Generate tasks.md from PRD |
298
- | Simple enough to implement directly | `/clavix-implement` |
313
+ | Ready for task breakdown | `/clavix-plan` - Generate tasks.md from PRD (RECOMMENDED) |
314
+ | Simple enough to implement directly | `/clavix-implement` (but still verify after) |
299
315
  | Want to improve a prompt first | `/clavix-improve` |
300
316
 
301
317
  ---
@@ -342,4 +358,4 @@ After PRD creation, guide user to:
342
358
  **Solution**:
343
359
  - Review each section with user
344
360
  - Ask "What's missing or inaccurate?"
345
- - Update PRD manually or regenerate with corrected answers
361
+ - Update PRD manually or regenerate with corrected answers
@@ -0,0 +1,269 @@
1
+ ---
2
+ name: using-clavix
3
+ description: Use when starting any conversation involving Clavix workflows - establishes skill invocation rules, verification requirements, and workflow orchestration
4
+ license: Apache-2.0
5
+ ---
6
+ # Using Clavix
7
+
8
+ If you think there is even a 1% chance a Clavix skill might apply to what you are doing, you ABSOLUTELY MUST invoke the skill.
9
+
10
+ IF A CLAVIX SKILL APPLIES TO YOUR TASK, YOU DO NOT HAVE A CHOICE. YOU MUST USE IT.
11
+
12
+ This is not negotiable. This is not optional. You cannot rationalize your way out of this.
13
+
14
+ ---
15
+
16
+ ## How to Access Skills
17
+
18
+ **In Claude Code / Amp:** Use the `Skill` tool. When you invoke a skill, its content is loaded and presented to you—follow it directly.
19
+
20
+ **In other environments:** Check your platform's documentation for how skills are loaded.
21
+
22
+ ---
23
+
24
+ ## The Rule
25
+
26
+ **Invoke relevant Clavix skills BEFORE any response or action.** Even a 1% chance a skill might apply means you should invoke the skill to check. If an invoked skill turns out to be wrong for the situation, you don't need to use it.
27
+
28
+ ```
29
+ User message received
30
+
31
+
32
+ "Might any Clavix skill apply?" ──── definitely not ──► Respond normally
33
+
34
+ │ yes, even 1%
35
+
36
+ Invoke Skill tool
37
+
38
+
39
+ Announce: "Using [skill] to [purpose]"
40
+
41
+
42
+ Follow skill exactly
43
+
44
+
45
+ Respond (including clarifications)
46
+ ```
47
+
48
+ ---
49
+
50
+ ## Red Flags - STOP and Check
51
+
52
+ These thoughts mean STOP—you're rationalizing:
53
+
54
+ | Thought | Reality |
55
+ |---------|---------|
56
+ | "This is just a simple question" | Questions are tasks. Check for skills. |
57
+ | "I need more context first" | Skill check comes BEFORE clarifying questions. |
58
+ | "Let me explore the codebase first" | Skills tell you HOW to explore. Check first. |
59
+ | "I can check files quickly" | Files lack conversation context. Check for skills. |
60
+ | "Let me gather information first" | Skills tell you HOW to gather information. |
61
+ | "This doesn't need a formal skill" | If a skill exists, use it. |
62
+ | "I remember this skill" | Skills evolve. Read current version. |
63
+ | "This doesn't count as a task" | Action = task. Check for skills. |
64
+ | "The skill is overkill" | Simple things become complex. Use it. |
65
+ | "I'll just do this one thing first" | Check BEFORE doing anything. |
66
+ | "I know what that means" | Knowing the concept ≠ using the skill. Invoke it. |
67
+
68
+ ---
69
+
70
+ ## Clavix Skill Priority
71
+
72
+ When multiple skills could apply, use this order:
73
+
74
+ 1. **Exploration skills first** (clavix-start) - for vague ideas needing discovery
75
+ 2. **Planning skills second** (clavix-prd, clavix-plan) - for structuring requirements
76
+ 3. **Implementation skills third** (clavix-implement) - for executing tasks
77
+ 4. **Verification skills always** (clavix-verify) - NEVER skip after implementation
78
+
79
+ "Let's build X" → clavix-start or clavix-prd first, then clavix-plan, then clavix-implement.
80
+ "Fix this bug" → Use systematic-debugging, then clavix-implement if needed.
81
+
82
+ ---
83
+
84
+ ## Clavix Workflow Map
85
+
86
+ ```
87
+ [Vague Idea]
88
+
89
+
90
+ clavix-start ──► [Conversation] ──► clavix-summarize
91
+ │ │
92
+ │ ▼
93
+ │ [Mini-PRD/Prompt]
94
+ │ │
95
+ ▼ ▼
96
+ clavix-prd ◄───────────────────────────────┘
97
+
98
+
99
+ [Full PRD + Quick PRD]
100
+
101
+
102
+ clavix-plan
103
+
104
+
105
+ [tasks.md with Implementation Plan]
106
+
107
+
108
+ clavix-implement ◄──────────────────┐
109
+ │ │
110
+ ▼ │
111
+ [Code Changes] │
112
+ │ │
113
+ ▼ │
114
+ clavix-verify │
115
+ │ │
116
+ ├── Issues found? ────────────►│
117
+ │ Fix Loop │
118
+ ▼ │
119
+ [All Verified] ◄─────────────────────┘
120
+
121
+
122
+ clavix-archive (optional)
123
+ ```
124
+
125
+ ---
126
+
127
+ ## Required Skill Chains
128
+
129
+ These chains are MANDATORY. Do not skip steps.
130
+
131
+ ### Planning → Implementation Chain
132
+
133
+ ```
134
+ clavix-prd
135
+
136
+ ▼ REQUIRED
137
+ clavix-plan
138
+
139
+ ▼ REQUIRED
140
+ clavix-implement
141
+
142
+ ▼ REQUIRED
143
+ clavix-verify
144
+ ```
145
+
146
+ ### Implementation → Verification Chain
147
+
148
+ ```
149
+ clavix-implement (each task)
150
+
151
+ ▼ REQUIRED (after ALL tasks complete)
152
+ clavix-verify
153
+
154
+ ├── Issues found?
155
+ │ │
156
+ │ ▼
157
+ │ Fix the issues
158
+ │ │
159
+ │ ▼
160
+ │ Re-run clavix-verify (REQUIRED)
161
+ │ │
162
+ │ └── Repeat until all issues resolved
163
+
164
+ ▼ (only when all pass)
165
+ Done / clavix-archive
166
+ ```
167
+
168
+ ---
169
+
170
+ ## The Iron Laws
171
+
172
+ ### Iron Law 1: No Completion Without Verification
173
+
174
+ ```
175
+ NO COMPLETION CLAIMS WITHOUT FRESH VERIFICATION EVIDENCE
176
+ ```
177
+
178
+ If you haven't run the verification command in this message, you cannot claim it passes.
179
+
180
+ ### Iron Law 2: No Implementation Without Planning
181
+
182
+ ```
183
+ NO CODE CHANGES WITHOUT A PLAN OR TASK SPECIFICATION
184
+ ```
185
+
186
+ If you're implementing features, there should be a PRD or task list guiding the work.
187
+
188
+ ### Iron Law 3: No Skipping Fix Loops
189
+
190
+ ```
191
+ ISSUES FOUND = ISSUES FIXED + RE-VERIFIED
192
+ ```
193
+
194
+ If verification found issues, you must fix them AND re-verify. Proceeding without re-verification is forbidden.
195
+
196
+ ---
197
+
198
+ ## Verification Gate Pattern
199
+
200
+ **BEFORE claiming any status or expressing satisfaction:**
201
+
202
+ 1. **IDENTIFY**: What command proves this claim?
203
+ 2. **RUN**: Execute the FULL command (fresh, complete)
204
+ 3. **READ**: Full output, check exit code, count failures
205
+ 4. **VERIFY**: Does output confirm the claim?
206
+ - If NO: State actual status with evidence
207
+ - If YES: State claim WITH evidence
208
+
209
+ **Skip any step = lying, not verifying**
210
+
211
+ ---
212
+
213
+ ## Common Verification Requirements
214
+
215
+ | Claim | Requires | Not Sufficient |
216
+ |-------|----------|----------------|
217
+ | Tests pass | Test command output: 0 failures | Previous run, "should pass" |
218
+ | Linter clean | Linter output: 0 errors | Partial check, extrapolation |
219
+ | Build succeeds | Build command: exit 0 | Linter passing, logs look good |
220
+ | Bug fixed | Test original symptom: passes | Code changed, assumed fixed |
221
+ | Task complete | Verification evidence shown | "I implemented it" |
222
+ | Requirements met | Line-by-line checklist verified | Tests passing alone |
223
+
224
+ ---
225
+
226
+ ## Clavix Skill Reference
227
+
228
+ | Skill | When to Use |
229
+ |-------|-------------|
230
+ | `clavix-start` | Ideas are vague, need conversational exploration |
231
+ | `clavix-summarize` | Extract requirements from conversation into mini-PRD |
232
+ | `clavix-prd` | Create comprehensive PRD through strategic questions |
233
+ | `clavix-plan` | Transform PRD into actionable task breakdown |
234
+ | `clavix-implement` | Execute tasks from plan with progress tracking |
235
+ | `clavix-verify` | Audit implementation against PRD requirements |
236
+ | `clavix-review` | Review PR/code changes with criteria analysis |
237
+ | `clavix-refine` | Iterate on existing PRD or prompt |
238
+ | `clavix-improve` | Optimize a prompt with quality assessment |
239
+ | `clavix-archive` | Archive completed project outputs |
240
+
241
+ ---
242
+
243
+ ## Skill Types
244
+
245
+ **Rigid Skills** (clavix-implement, clavix-verify): Follow exactly. Don't adapt away from the discipline.
246
+
247
+ **Flexible Skills** (clavix-start, clavix-prd): Adapt principles to context, but maintain the core flow.
248
+
249
+ The skill itself tells you which type it is through its structure.
250
+
251
+ ---
252
+
253
+ ## User Instructions
254
+
255
+ Instructions say WHAT, not HOW. "Add X" or "Fix Y" doesn't mean skip workflows.
256
+
257
+ "Implement this feature" → Check for clavix-prd or clavix-plan first
258
+ "Just make it work" → Still requires verification after implementation
259
+ "Quick fix" → Still requires evidence before claiming success
260
+
261
+ ---
262
+
263
+ ## Remember
264
+
265
+ - Check for skills BEFORE any action
266
+ - Follow skill chains completely
267
+ - Never skip verification steps
268
+ - Issues found = must fix AND re-verify
269
+ - Evidence before claims, always
@@ -1,19 +1,33 @@
1
1
  ---
2
2
  name: clavix-verify
3
- description: Spec-driven technical audit against requirements and implementation plan
4
- license: MIT
3
+ description: Verify implementation against PRD requirements with systematic checking. Use after implementation to validate completeness.
4
+ license: Apache-2.0
5
5
  ---
6
-
7
6
  # Clavix Verify Skill
8
7
 
9
8
  Perform a **Spec-Driven Technical Audit** of your implementation. I don't just "run tests"—I verify that your code matches the **Plan** (`tasks.md`) and the **Requirements** (`full-prd.md`).
10
9
 
10
+ ---
11
+
12
+ ## The Iron Law
13
+
14
+ ```
15
+ ISSUES FOUND = ISSUES FIXED + RE-VERIFIED
16
+ ```
17
+
18
+ If verification found issues, you must fix them AND re-verify. Proceeding without re-verification is forbidden.
19
+
20
+ **Evidence before claims, always.**
21
+
22
+ ---
23
+
11
24
  ## What This Skill Does
12
25
 
13
26
  1. **Load the Spec** - Read `full-prd.md` and `tasks.md` to understand requirements and design
14
27
  2. **Read the Code** - Inspect actual source files for completed tasks
15
28
  3. **Compare & Analyze** - Check implementation accuracy, requirements coverage, code quality
16
29
  4. **Generate Review Comments** - Output structured issues (Critical, Major, Minor)
30
+ 5. **Enforce Fix Loop** - Issues must be fixed and re-verified before proceeding
17
31
 
18
32
  ---
19
33
 
@@ -176,9 +190,35 @@ Are there quality issues?
176
190
 
177
191
  ---
178
192
 
179
- ## Fixing Workflow (Optional Loop)
193
+ ## Fixing Workflow (MANDATORY Loop)
194
+
195
+ When issues are found, they MUST be fixed. This is not optional.
180
196
 
181
- When user says "Fix #1" or "Fix all critical":
197
+ ### The Fix Loop
198
+
199
+ ```
200
+ Issues Found in Report
201
+
202
+
203
+ User says "Fix #X" or "Fix all"
204
+
205
+
206
+ Implement Fix
207
+
208
+
209
+ Re-Verify (REQUIRED) ◄───┐
210
+ │ │
211
+ ├── Still issues? ──┘
212
+
213
+ ▼ (resolved)
214
+ Issue Marked Resolved
215
+
216
+
217
+ More issues? → Repeat
218
+
219
+ ▼ (all resolved)
220
+ Verification Complete
221
+ ```
182
222
 
183
223
  ### Step 1: Acknowledge
184
224
 
@@ -188,7 +228,7 @@ When user says "Fix #1" or "Fix all critical":
188
228
 
189
229
  Modify the code to resolve the specific issue.
190
230
 
191
- ### Step 3: Re-Verify
231
+ ### Step 3: Re-Verify (REQUIRED)
192
232
 
193
233
  Run a focused verification on just that file/issue:
194
234
 
@@ -196,6 +236,17 @@ Run a focused verification on just that file/issue:
196
236
  > - ✅ #1 now uses `apiClient` singleton
197
237
  > - Issue resolved"
198
238
 
239
+ **If the fix didn't work**, repeat steps 2-3. Do not proceed to next issue.
240
+
241
+ ### Step 4: Evidence
242
+
243
+ When claiming an issue is fixed:
244
+ - Show the code change made
245
+ - Show the verification output
246
+ - Reference specific file:line
247
+
248
+ **"Fixed" without evidence = not fixed.**
249
+
199
250
  ---
200
251
 
201
252
  ## Save Location
@@ -284,13 +335,13 @@ To verify implementation:
284
335
  **You are here:** Verify (auditing implementation)
285
336
 
286
337
  **Common flows:**
287
- - After implement → `/clavix:verify` → fix issues → verify again
288
- - Before merge → `/clavix:verify` → ensure quality
338
+ - After implement → `/clavix-verify` → fix issues → verify again
339
+ - Before merge → `/clavix-verify` → ensure quality
289
340
 
290
341
  **Related commands:**
291
- - `/clavix:implement` - Build features (what you're verifying)
292
- - `/clavix:plan` - See the tasks being checked
293
- - `/clavix:refine` - Update PRD if requirements were wrong
342
+ - `/clavix-implement` - Build features (what you're verifying)
343
+ - `/clavix-plan` - See the tasks being checked
344
+ - `/clavix-refine` - Update PRD if requirements were wrong
294
345
 
295
346
  ---
296
347
 
@@ -298,13 +349,46 @@ To verify implementation:
298
349
 
299
350
  **If all passed:**
300
351
  - ✅ Ready for next phase or merge
301
- - Consider `/clavix:archive` for completed projects
352
+ - Consider `/clavix-archive` for completed projects
353
+
354
+ **If failures exist (MANDATORY FIX LOOP):**
355
+
356
+ ```
357
+ Failures in report
358
+
359
+
360
+ Fix critical issues first
361
+
362
+
363
+ Re-run verification ◄───┐
364
+ │ │
365
+ ├── Still fails ──┘
366
+
367
+ ▼ (all pass)
368
+ Done
369
+ ```
302
370
 
303
- **If failures exist:**
304
371
  - Address critical issues first
305
372
  - Re-run verification after fixes
306
- - Repeat until passing
373
+ - **Repeat until passing** - Do NOT skip this
374
+ - Cannot claim "done" until all issues resolved
307
375
 
308
376
  **If OUTDATED issues:**
309
377
  - Update `tasks.md` or `full-prd.md` to reflect reality
310
378
  - Re-verify to clear the outdated flags
379
+
380
+ ---
381
+
382
+ ## Red Flags - STOP
383
+
384
+ If you catch yourself thinking:
385
+
386
+ | Thought | Reality |
387
+ |---------|---------|
388
+ | "It's probably fixed now" | RUN the verification |
389
+ | "Just this one issue can wait" | Fix it now |
390
+ | "I'll re-verify later" | Re-verify NOW |
391
+ | "The important ones are fixed" | ALL issues must be resolved |
392
+ | "Close enough" | Not done until verified |
393
+
394
+ **All of these mean: STOP. Follow the fix loop.**
@@ -274,7 +274,7 @@ Result: Project permanently deleted
274
274
 
275
275
  ---
276
276
 
277
- ## Agent Transparency (v7.2.0)
277
+ ## Agent Transparency (v7.2.2)
278
278
 
279
279
  ### Agent Manual (Universal Protocols)
280
280
  {{INCLUDE:agent-protocols/AGENT_MANUAL.md}}
@@ -615,7 +615,7 @@ I'll explain what's wrong and what you might need to do:
615
615
 
616
616
  ---
617
617
 
618
- ## Agent Transparency (v7.2.0)
618
+ ## Agent Transparency (v7.2.2)
619
619
 
620
620
  ### Agent Manual (Universal Protocols)
621
621
  {{INCLUDE:agent-protocols/AGENT_MANUAL.md}}
@@ -524,7 +524,7 @@ Wait for the user to decide what to do next.
524
524
 
525
525
  ---
526
526
 
527
- ## Agent Transparency (v7.2.0)
527
+ ## Agent Transparency (v7.2.2)
528
528
 
529
529
  ### Agent Manual (Universal Protocols)
530
530
  {{INCLUDE:agent-protocols/AGENT_MANUAL.md}}
@@ -229,7 +229,7 @@ Present the plan and ask:
229
229
 
230
230
  ---
231
231
 
232
- ## Agent Transparency (v7.2.0)
232
+ ## Agent Transparency (v7.2.2)
233
233
 
234
234
  ### Agent Manual (Universal Protocols)
235
235
  {{INCLUDE:agent-protocols/AGENT_MANUAL.md}}
@@ -354,7 +354,7 @@ The validation ensures generated PRDs are immediately usable for AI consumption
354
354
 
355
355
  ---
356
356
 
357
- ## Agent Transparency (v7.2.0)
357
+ ## Agent Transparency (v7.2.2)
358
358
 
359
359
  ### Agent Manual (Universal Protocols)
360
360
  {{INCLUDE:agent-protocols/AGENT_MANUAL.md}}
@@ -415,7 +415,7 @@ I'll update the PRD and add this to the refinement history. Confirm?
415
415
 
416
416
  ---
417
417
 
418
- ## Agent Transparency (v7.2.0)
418
+ ## Agent Transparency (v7.2.2)
419
419
 
420
420
  ### Agent Manual (Universal Protocols)
421
421
  {{INCLUDE:agent-protocols/AGENT_MANUAL.md}}
@@ -447,7 +447,7 @@ consistent with the project's conventions.
447
447
 
448
448
  ---
449
449
 
450
- ## Agent Transparency (v7.2.0)
450
+ ## Agent Transparency (v7.2.2)
451
451
 
452
452
  ### Agent Manual (Universal Protocols)
453
453
  {{INCLUDE:agent-protocols/AGENT_MANUAL.md}}
@@ -230,7 +230,7 @@ The goal is natural exploration of requirements, not a rigid questionnaire. Foll
230
230
 
231
231
  ---
232
232
 
233
- ## Agent Transparency (v7.2.0)
233
+ ## Agent Transparency (v7.2.2)
234
234
 
235
235
  ### Agent Manual (Universal Protocols)
236
236
  {{INCLUDE:agent-protocols/AGENT_MANUAL.md}}
@@ -409,7 +409,7 @@ The `/clavix:summarize` command extracts requirements from exploratory conversat
409
409
 
410
410
  ---
411
411
 
412
- ## Agent Transparency (v7.2.0)
412
+ ## Agent Transparency (v7.2.2)
413
413
 
414
414
  ### Agent Manual (Universal Protocols)
415
415
  {{INCLUDE:agent-protocols/AGENT_MANUAL.md}}
@@ -123,7 +123,7 @@ Implementation: BLOCKED - I'll analyze and report, not modify or fix
123
123
 
124
124
  ----
125
125
 
126
- ## Agent Transparency (v7.2.0)
126
+ ## Agent Transparency (v7.2.2)
127
127
 
128
128
  ### Agent Manual (Universal Protocols)
129
129
  {{INCLUDE:agent-protocols/AGENT_MANUAL.md}}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clavix",
3
- "version": "7.2.0",
3
+ "version": "7.2.2",
4
4
  "description": "Agentic-first prompt workflows. Markdown templates that teach AI agents how to optimize prompts, create PRDs, and manage implementation.\n\nSLASH COMMANDS (in your AI assistant):\n /clavix:improve Optimize prompts with auto-depth\n /clavix:prd Generate PRD through questions\n /clavix:plan Create task breakdown from PRD\n /clavix:implement Execute tasks with progress tracking\n /clavix:start Begin conversational session\n /clavix:summarize Extract requirements from conversation\n /clavix:refine Refine existing PRD or prompt\n /clavix:verify Verify implementation against requirements\n /clavix:review Review teammate PRs with criteria\n /clavix:archive Archive completed projects\n\nWorks with Claude Code, Cursor, Windsurf, and 20 AI coding tools.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",