@zhixuan92/multi-model-agent 5.0.0 → 5.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +307 -0
  3. package/package.json +29 -10
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Zhang Zhixuan
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,307 @@
1
+ # @zhixuan92/multi-model-agent
2
+
3
+ [![npm](https://img.shields.io/npm/v/@zhixuan92/multi-model-agent?label=npm)](https://www.npmjs.com/package/@zhixuan92/multi-model-agent)
4
+
5
+ Local HTTP daemon that delegates tool-using work to sub-agents on different LLM providers. One process serves Claude Code, Codex CLI, Gemini CLI, and Cursor via installable skills.
6
+
7
+ *Renamed from `@zhixuan92/multi-model-agent-mcp` in 3.0.0 — the package no longer uses MCP. See [CHANGELOG](https://github.com/zhixuan312/multi-model-agent/blob/master/CHANGELOG.md).*
8
+
9
+ ## Why
10
+
11
+ Your flagship model reasoning about architecture is money well spent. That same model grepping files, writing boilerplate, and running tests is waste.
12
+
13
+ | Project | MMA — MiniMax-M2.7 | MMA — DeepSeek V4 Pro | Flagship: Claude Opus 4.7 |
14
+ |---|---|---|---|
15
+ | Feature impl (30 files, ~50 tasks) | **$1.50** · **33× ROI** · ~35 min | **~$2.50** · **20× ROI** · ~15 min | $50 · 1× · *baseline* |
16
+ | Full web SPA (59 tasks) | **$5.65** · **12× ROI** · ~50 min | **~$9** · **7.5× ROI** · ~22 min | $68 · 1× · *baseline* |
17
+ | Backend microservice (91 tasks) | **$8.21** · **13× ROI** · ~1.5 hrs | **~$14** · **7.5× ROI** · ~40 min | $104 · 1× · *baseline* |
18
+
19
+ Plus structural quality: implementation and review run on **different** model families — different blind spots, catches what self-review can't.
20
+
21
+ ## Initial setup
22
+
23
+ Four steps, in order.
24
+
25
+ ### 1. Install CLI + skills
26
+
27
+ ```bash
28
+ npm i -g @zhixuan92/multi-model-agent # standalone binary (Bun embedded) — npm uses Node ≥18 only to install; the daemon needs no Node/Bun
29
+ mmagent sync-skills # auto-detect all clients (idempotent install + update)
30
+ # or pin a specific target:
31
+ mmagent sync-skills --target=claude-code # claude-code | gemini-cli | codex-cli | cursor
32
+ ```
33
+
34
+ | Client | Install location | Loaded |
35
+ |---|---|---|
36
+ | Claude Code | `~/.claude/skills/` | next session |
37
+ | Gemini CLI | Gemini CLI skill directory | next session (requires version with external-skill support) |
38
+ | Codex CLI | `~/.codex/skills/` | next session |
39
+ | Cursor | Cursor extension manifest | restart Cursor |
40
+
41
+ ### 2. Choose your main model — intentionally
42
+
43
+ Your **main model** is **the model you'd use without mmagent** — the cost baseline for every per-task headline (`$X actual / $Y saved vs <mainModel> (Z× ROI)`).
44
+
45
+ - Heavy Claude Code user → `claude-opus-4-7`
46
+ - ChatGPT-led workflow → `gpt-5.5`
47
+ - Gemini-led workflow → `gemini-3.1-pro`
48
+
49
+ Both `X-MMA-Client` and `X-MMA-Main-Model` are required on tool routes (`400 client_required` / `400 main_model_required` if missing). The 4.3.0 auto-detect chain was reverted in 4.4.0 — the claude-agent-sdk used by claude-tier workers wrote JSONL files into the same `~/.claude/projects/<slug>/` the resolver was reading, so auto-detect could return a worker's model as the calling agent's "main". The calling client is the only reliable source.
50
+
51
+ ```bash
52
+ export MMAGENT_CLIENT=claude-code # or codex-cli, gemini-cli, cursor
53
+ export MMAGENT_MAIN_MODEL=claude-opus-4-7 # whatever your calling agent runs on
54
+ ```
55
+
56
+ ### 3. Write the config
57
+
58
+ Paste this into your shell — it creates `~/.multi-model/config.json` with the minimum-viable starter config (overwrites any existing file at that path):
59
+
60
+ ```bash
61
+ mkdir -p ~/.multi-model && cat > ~/.multi-model/config.json <<'EOF'
62
+ {
63
+ "agents": {
64
+ "standard": {
65
+ "type": "claude-compatible",
66
+ "model": "deepseek-v4-pro",
67
+ "baseUrl": "https://api.deepseek.com/anthropic",
68
+ "apiKeyEnv": "DEEPSEEK_API_KEY"
69
+ },
70
+ "complex": {
71
+ "type": "codex",
72
+ "model": "gpt-5.5"
73
+ }
74
+ }
75
+ }
76
+ EOF
77
+ ```
78
+
79
+ That's the whole minimum-viable file. All other knobs (`server.*`, `defaults.timeoutMs`, `defaults.tools`, …) have sane built-in defaults — see [Configuration reference](#configuration-reference).
80
+
81
+ ### 4. Start the daemon + verify
82
+
83
+ Two ways — pick one:
84
+
85
+ **Option A — let your AI client auto-spawn it.** Open your client (Claude Code / Codex CLI / etc.) and call any mma-* skill; the skill's preflight check spawns `mmagent serve` on `127.0.0.1:7337` and reuses it for every subsequent call.
86
+
87
+ **Option B — start it manually.** Useful when you want the daemon up before opening a client:
88
+
89
+ ```bash
90
+ mmagent serve # 127.0.0.1:7337 by default
91
+ curl -s http://localhost:7337/health # → {"status":"ok"}
92
+ ```
93
+
94
+ For an always-on background install (survives reboots): [launchd / systemd templates](./scripts/README.md).
95
+
96
+ ## Updating
97
+
98
+ ```bash
99
+ npm install -g @zhixuan92/multi-model-agent@latest
100
+ pkill -f "mmagent serve" # stop the running daemon
101
+ mmagent sync-skills # reconcile installed skills with the new bundle
102
+ # next AI-client session respawns the daemon via the skill preflight
103
+ ```
104
+
105
+ A drift warning prints on `mmagent serve` if installed skills are older than the daemon. To rotate the auth token: `rm ~/.multi-model/auth-token && mmagent serve`.
106
+
107
+ ## Skills
108
+
109
+ Skills are the surface your AI client sees. `mmagent sync-skills` writes them to the client's skill directory and keeps them reconciled across upgrades; the client then picks the right one based on what you ask. You don't call them by hand — you describe the work, the client routes it to the matching skill, the skill calls the matching REST endpoint.
110
+
111
+ ### Work-delegation skills
112
+
113
+ | Skill | Target endpoint | Use when |
114
+ |---|---|---|
115
+ | `mma-delegate` | `POST /delegate` | Ad-hoc implementation or research tasks **without** a plan file — run them in parallel on cheap workers. |
116
+ | `mma-execute-plan` | `POST /execute-plan` | A plan / spec markdown exists on disk with numbered task headings; implement one or more tasks from it. |
117
+ | `mma-investigate` | `POST /investigate` | Answer a question about *this* codebase ("how does X work", "where is Y called") without burning main-context tokens on grep + reads. |
118
+ | `mma-explore` | (orchestrator playbook — no dedicated route) | Fans out `mma-investigate` + `mma-research` + `mma-journal-recall` in parallel and synthesises 3–5 distinct directions. Run before `superpowers:brainstorming`. Not for "where is X" questions (use `mma-investigate`). |
119
+ | `mma-research` | `POST /research` | External multi-source research with citations — arxiv, semantic_scholar, github_search, brave-with-`site:`-filters — for a focused question. |
120
+ | `mma-debug` | `POST /debug` | A test fails, a build breaks, or behavior is unexpected — delegate the reproduce/trace, keep the hypothesis on the main agent. |
121
+ | `mma-review` | `POST /review` | Source-code review (pre-merge, post-implementation, security-focused). One worker per file, in parallel. |
122
+ | `mma-audit` | `POST /audit` | Audit a spec / plan / design doc / recommendation doc for executability blockers (contradictions, ambiguity, recommendation-coherence gaps). Default is the comprehensive sweep; `security` and `performance` are narrow opt-in lenses. |
123
+ | `mma-journal-record` | `POST /journal-record` | Record a durable project learning into the cross-agent journal — what was tried, what happened, the lesson — integrated into a graph of ADR "node" files under `.mmagent/journal/` (create / refine / supersede / merge with typed edges). |
124
+ | `mma-journal-recall` | `POST /journal-recall` | Recall relevant prior learnings from the journal for a question or situation — traverses the node graph rather than keyword-filtering. |
125
+
126
+ ### Plumbing skills
127
+
128
+ | Skill | Target endpoint | Use when |
129
+ |---|---|---|
130
+ | `mma-context-blocks` | `POST/DELETE /context-blocks` | The same large doc (>~2 KB) will be referenced by 2+ subsequent mma-* calls — register once, pass the ID instead of re-uploading. |
131
+ | `mma-retry` | `POST /retry` | A previous batch came back partial — re-run only the failed indices without re-dispatching the whole batch. |
132
+
133
+ The `multi-model-agent` skill (no `mma-` prefix) is a top-level overview your client reads first to pick which `mma-*` skill applies.
134
+
135
+ ### Two generic usage samples
136
+
137
+ **Sample 1 — implement a feature from a plan**
138
+
139
+ ```
140
+ You: "Execute tasks 3, 4, and 5 from docs/plans/auth-rewrite.md"
141
+
142
+ Client picks mma-execute-plan (plan file on disk, multiple independent tasks)
143
+
144
+ mmagent dispatches 3 workers in parallel on the standard agent (e.g. MiniMax-M2.7),
145
+ each runs cross-agent review on the complex agent, returns a structured report.
146
+
147
+ You see one consolidated headline: "$0.04 actual / $1.20 saved vs claude-opus-4-7 (30× ROI)"
148
+ ```
149
+
150
+ **Sample 2 — debug a failing test (multiple skills chained)**
151
+
152
+ ```
153
+ You: "tests/auth/session.test.ts is failing intermittently after the token-refresh refactor — figure it out and fix it"
154
+
155
+ Step 1 — mma-context-blocks
156
+ The failing test output + the refactor diff are ~8 KB and will be referenced by every
157
+ downstream call. Register once, get a contextBlockId, reuse it.
158
+
159
+ Step 2 — mma-debug
160
+ Worker reproduces the failure, traces across session.ts + token-refresh.ts, returns a
161
+ root-cause hypothesis: "race between refresh-in-flight and session.invalidate()".
162
+ Main agent stays on the hypothesis, decides the fix shape.
163
+
164
+ Step 3 — mma-delegate
165
+ Dispatch the actual code change as an ad-hoc task (no plan file). Worker writes the
166
+ fix, runs the failing test 20× to confirm the race is gone.
167
+
168
+ Step 4 — mma-review (with the acceptance checklist in the brief)
169
+ Reviewer worker checks the diff against the acceptance criteria: (a) failing
170
+ test now passes, (b) no other auth tests regressed, (c) refresh path still
171
+ emits the expected telemetry.
172
+
173
+ Total cost: ~$0.08. Main-context tokens consumed: just the hypotheses and the verdicts.
174
+ ```
175
+
176
+ ## Configuration reference
177
+
178
+ ### Lookup order
179
+
180
+ `--config <path>` → `$MMAGENT_CONFIG` → `<cwd>/.multi-model-agent.json` → `~/.multi-model/config.json`.
181
+
182
+ ### Agent types
183
+
184
+ | Type | Auth | When to pick |
185
+ |---|---|---|
186
+ | `claude` | Local Claude Code OAuth (`claude login`) | Stay on Claude end-to-end with subscription auth |
187
+ | `codex` | Codex CLI subscription (`codex login`) | OpenAI flagship work without juggling API keys |
188
+ | `openai-compatible` | `apiKey` or `apiKeyEnv` | Any OpenAI-compatible endpoint — MiniMax, Groq, Together, local vLLM, plus OpenAI direct |
189
+ | `claude-compatible` | `apiKey` or `apiKeyEnv` | Vendors exposing an Anthropic-format endpoint (DeepSeek's `/anthropic`, etc.) — preserves thinking content blocks across multi-turn tool use |
190
+
191
+ DeepSeek V4 Pro under `claude-compatible` keeps reasoning ON; under `openai-compatible` it works but auto-disables thinking.
192
+
193
+ ### Tuning
194
+
195
+ Every `defaults` knob has a built-in. Override only when you need to.
196
+
197
+ | Field | Default | What it does |
198
+ |---|---|---|
199
+ | `defaults.timeoutMs` | `3600000` (60 min) | Hard task-level wall-clock cap (bumped from 30 min in 3.9.0) |
200
+ | `defaults.stallTimeoutMs` | `1200000` (20 min) | Aborts in-flight runs idle for this long (bumped from 10 min in 3.9.0) |
201
+ | `defaults.tools` | `"full"` | Tool surface: `none` / `readonly` / `no-shell` / `full` |
202
+ | `defaults.sandboxPolicy` | `"cwd-only"` | Path-traversal + symlink confinement to the request's `cwd` |
203
+
204
+ ### Telemetry
205
+
206
+ **Off by default.** Opt in via `mmagent telemetry enable` (or `MMAGENT_TELEMETRY=1`), or set in config:
207
+
208
+ ```json
209
+ {
210
+ "agents": { "...": "..." },
211
+ "telemetry": { "enabled": true }
212
+ }
213
+ ```
214
+
215
+ Every upload batch is signed with a per-install Ed25519 key (TOFU; lives at `~/.multi-model/identity.json`); receivers can verify it came from the install whose `installId` it claims. Full disclosure: [PRIVACY.md](https://github.com/zhixuan312/multi-model-agent/blob/master/PRIVACY.md).
216
+
217
+ ### Verbose / diagnostics
218
+
219
+ ```json
220
+ {
221
+ "agents": { "...": "..." },
222
+ "diagnostics": { "log": true, "verbose": true }
223
+ }
224
+ ```
225
+
226
+ Or per-run via `mmagent serve --verbose --log`. JSONL goes to `~/.multi-model/logs/mmagent-<date>.jsonl`; large request bodies (>16 KB UTF-8) spill to `~/.multi-model/logs/requests/<batchId>.json`.
227
+
228
+ > **Note:** verbose logs may include prompts, file paths, and other task content — disable for production servers handling sensitive data.
229
+
230
+ ### Auth token
231
+
232
+ Generated on first `mmagent serve`. Retrieve with `mmagent print-token`, or set `MMAGENT_AUTH_TOKEN` to override.
233
+
234
+ ## REST API
235
+
236
+ 16 endpoints. All tool endpoints are async: they return `202 { batchId, statusUrl }` immediately and the executor runs in the background. Poll `GET /batch/:id` for the terminal envelope.
237
+
238
+ | Endpoint | Purpose |
239
+ |---|---|
240
+ | `POST /delegate?cwd=<abs>` | Fan out ad-hoc tasks to sub-agents |
241
+ | `POST /audit?cwd=<abs>` | Audit a document (or a code-execution plan via `subtype: 'plan'`) |
242
+ | `POST /review?cwd=<abs>` | Review code (pass acceptance checklists in the brief for verification-style checks) |
243
+ | `POST /debug?cwd=<abs>` | Debug a failure with a hypothesis |
244
+ | `POST /execute-plan?cwd=<abs>` | Implement from a plan file |
245
+ | `POST /retry?cwd=<abs>` | Re-run specific tasks from a previous batch |
246
+ | `POST /investigate?cwd=<abs>` | Codebase Q&A — structured answer with file:line citations + confidence |
247
+ | `POST /research?cwd=<abs>` | External multi-source research — arxiv, semantic_scholar, github_search, brave-with-`site:`-filters — for a focused question |
248
+ | `POST /journal-record?cwd=<abs>` | Record one learning into the project's cross-agent journal graph (`.mmagent/journal/`) — create / refine / supersede / merge |
249
+ | `POST /journal-recall?cwd=<abs>` | Recall relevant prior learnings from the journal graph for a question or situation |
250
+ | `GET /batch/:id[?taskIndex=N]` | Poll a batch: `202 text/plain` (pending) or `200 application/json` (terminal). `?taskIndex=N` slices on complete state |
251
+ | `POST /context-blocks?cwd=<abs>` | Register a reusable context block |
252
+ | `DELETE /context-blocks/:id?cwd=<abs>` | Delete a context block |
253
+ | `POST /control/batch-slice` | Slice an in-flight batch — return a subset of its tasks by index |
254
+ | `GET /health` | Liveness probe (unauthenticated, loopback-only) |
255
+ | `GET /status` | Server status (authenticated, loopback-only) |
256
+
257
+ All tool endpoints require bearer auth: `Authorization: Bearer <token>`.
258
+
259
+ ## Operator commands
260
+
261
+ ```bash
262
+ mmagent serve [--verbose] [--log] # start daemon
263
+ mmagent info [--json] # cliVersion, bind/port, token fingerprint, daemon identity
264
+ mmagent status [--json] # health + stats from a running daemon
265
+ mmagent logs [--follow] [--batch=<id>] # tail today's diagnostic log
266
+ mmagent print-token # print the current auth token
267
+ mmagent sync-skills [--target=<client>] [--all-targets] [--dry-run] [--json] # idempotent install + update + reconcile
268
+ mmagent disable [--target=<client>] [--all-targets] [--dry-run] [--json] # remove skills + pin off (survives upgrades)
269
+ mmagent enable [--target=<client>] [--all-targets] [--dry-run] [--json] # clear the pin + reinstall skills
270
+ mmagent telemetry status # show consent state + source
271
+ mmagent telemetry enable # opt in
272
+ mmagent telemetry disable # opt out + delete local queue
273
+ mmagent telemetry reset-id # rotate the local Ed25519 identity
274
+ mmagent telemetry dump-queue # print the locally-queued events as JSON
275
+ ```
276
+
277
+ ## Architecture
278
+
279
+ `mmagent serve` runs a loopback HTTP server. Each tool call dispatches to a labor agent (standard or complex), runs a cross-agent review cycle, and returns a structured report. Tasks run in parallel; each has a wall-clock timeout.
280
+
281
+ Full design rationale: [DIRECTION.md](https://github.com/zhixuan312/multi-model-agent/blob/master/DIRECTION.md). Layer map and request lifecycle: [docs/ARCHITECTURE.md](https://github.com/zhixuan312/multi-model-agent/blob/master/docs/ARCHITECTURE.md).
282
+
283
+ ## Troubleshooting
284
+
285
+ | Symptom | Fix |
286
+ |---|---|
287
+ | Port 7337 already in use | `lsof -nP -i :7337` → kill the stale process |
288
+ | Daemon stale after upgrade | `pkill -f "mmagent serve"`; the skill preflight respawns it on next client session |
289
+ | Skill version mismatch | `mmagent sync-skills` and restart your client |
290
+ | `401 unauthorized` from a skill | `export MMAGENT_AUTH_TOKEN=$(mmagent print-token)` |
291
+ | `pkill` reports success but `mmagent info` still shows the old PID | The pattern didn't match — try `kill <pid-from-mmagent-info>` directly |
292
+ | TLS `handshake_failure` to a known-good telemetry endpoint | Local DNS cache is stale. `sudo dscacheutil -flushcache && sudo killall -HUP mDNSResponder` (macOS); restart the daemon so its process re-resolves |
293
+ | Local telemetry queue stops draining | Daemon's flusher is in exponential backoff after a transport failure (capped at 1 hr). Restart the daemon to force an immediate boot-flush |
294
+
295
+ ## What's new in 4.9.0
296
+
297
+ - **Delegate skill passthrough.** `POST /delegate` tasks accept an optional `skills: string[]`. Each name is resolved from the caller's skill store (by `X-MMA-Client`), staged into an ephemeral per-task directory, and delivered natively — Claude workers via a local SDK plugin, Codex workers via an ephemeral `CODEX_HOME`. Unknown names hard-fail just that task; omitting `skills` is byte-for-byte the previous behavior.
298
+
299
+ Full history: [CHANGELOG](https://github.com/zhixuan312/multi-model-agent/blob/master/CHANGELOG.md).
300
+
301
+ ## Full documentation
302
+
303
+ → **[github.com/zhixuan312/multi-model-agent](https://github.com/zhixuan312/multi-model-agent)**
304
+
305
+ ## License
306
+
307
+ [MIT](./LICENSE) — Copyright (c) 2026 Zhang Zhixuan
package/package.json CHANGED
@@ -1,6 +1,23 @@
1
1
  {
2
2
  "name": "@zhixuan92/multi-model-agent",
3
- "version": "5.0.0",
3
+ "version": "5.0.1",
4
+ "description": "Standalone HTTP server for multi-model-agent. Routes tool-invocation work to Claude, Codex, or OpenAI-compatible sub-agents with async-polling REST dispatch and installable skills for Claude Code, Gemini CLI, Codex CLI, and Cursor.",
5
+ "keywords": [
6
+ "llm",
7
+ "claude",
8
+ "codex",
9
+ "openai",
10
+ "agent",
11
+ "multi-model",
12
+ "delegation",
13
+ "http-server"
14
+ ],
15
+ "license": "MIT",
16
+ "homepage": "https://github.com/zhixuan312/multi-model-agent#readme",
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "git+https://github.com/zhixuan312/multi-model-agent.git"
20
+ },
4
21
  "bin": {
5
22
  "mmagent": "bin/mmagent.mjs",
6
23
  "multi-model-agent": "bin/mmagent.mjs"
@@ -9,18 +26,20 @@
9
26
  "postinstall": "node postinstall.mjs"
10
27
  },
11
28
  "optionalDependencies": {
12
- "@zhixuan92/mmagent-darwin-arm64": "5.0.0",
13
- "@zhixuan92/mmagent-darwin-x64": "5.0.0",
14
- "@zhixuan92/mmagent-linux-x64": "5.0.0",
15
- "@zhixuan92/mmagent-linux-arm64": "5.0.0",
16
- "@zhixuan92/mmagent-linux-x64-musl": "5.0.0",
17
- "@zhixuan92/mmagent-linux-arm64-musl": "5.0.0",
18
- "@zhixuan92/mmagent-windows-x64": "5.0.0",
19
- "@zhixuan92/mmagent-windows-arm64": "5.0.0"
29
+ "@zhixuan92/mmagent-darwin-arm64": "5.0.1",
30
+ "@zhixuan92/mmagent-darwin-x64": "5.0.1",
31
+ "@zhixuan92/mmagent-linux-x64": "5.0.1",
32
+ "@zhixuan92/mmagent-linux-arm64": "5.0.1",
33
+ "@zhixuan92/mmagent-linux-x64-musl": "5.0.1",
34
+ "@zhixuan92/mmagent-linux-arm64-musl": "5.0.1",
35
+ "@zhixuan92/mmagent-windows-x64": "5.0.1",
36
+ "@zhixuan92/mmagent-windows-arm64": "5.0.1"
20
37
  },
21
38
  "files": [
22
39
  "bin",
23
- "postinstall.mjs"
40
+ "postinstall.mjs",
41
+ "README.md",
42
+ "LICENSE"
24
43
  ],
25
44
  "engines": {
26
45
  "node": ">=18"