liteagents 2.15.0 → 2.15.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.
package/CHANGELOG.md CHANGED
@@ -15,6 +15,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
15
15
  - Enhanced testing capabilities
16
16
  - Performance optimizations
17
17
 
18
+ ## [2.15.2] - 2026-07-24
19
+
20
+ ### Security
21
+
22
+ - **Cleared the last plugin audit finding via an `overrides` pin: `@hono/node-server` → 2.0.11.** The advisory [GHSA-frvp-7c67-39w9](https://github.com/advisories/GHSA-frvp-7c67-39w9) (moderate, Windows-only serve-static path traversal) is patched only in `@hono/node-server@2.0.5`+ — a **major** bump. The plugin's `@modelcontextprotocol/sdk@1.29.0` (latest) pins `@hono/node-server: ^1.19.9`, a `1.x` range that can never resolve to the fix, so `npm audit fix` couldn't clear it (upstream tracked in [modelcontextprotocol/typescript-sdk#2531](https://github.com/modelcontextprotocol/typescript-sdk/issues/2531), still open). Added the community-confirmed `overrides` block to the plugin's `package.json` forcing `@hono/node-server` to `^2.0.11` within the SDK subtree. Plugin `npm audit` is now **0 findings**. The path was already unreachable here (stdio server, no `@hono/node-server`/HTTP-transport usage); this just removes the audit noise. Note: `@hono/node-server@2.x` needs Node 20+, but the plugin never loads it, so its own `>=18` runtime floor is unchanged. 138 root tests green; remove the override once the SDK widens its range.
23
+
24
+ ## [2.15.1] - 2026-07-24
25
+
26
+ ### Security
27
+
28
+ - **Bumped the bundled `live-canvas-channel` plugin's transitive deps to patched versions.** `fast-uri` 3.1.2 → 3.1.4 (clears a **high**-severity host-confusion advisory), `body-parser` 2.2.2 → 2.3.0 (DoS via a silently-disabled size limit), and `hono` 4.12.25 → 4.12.31 (moderate). These come in via the plugin's `@modelcontextprotocol/sdk` and ship in the tarball's `package-lock.json`. All sit on unused transport paths — the plugin server is stdio (`StdioServerTransport`) + raw `node:http`, with no `@hono/node-server`/express/Streamable-HTTP surface — so this is defense-in-depth hardening of the bundled lockfile, not a runtime fix. `npm audit` in the plugin drops from 4 findings (incl. 1 high) to 1 residual moderate (`@hono/node-server` serve-static), which is gated on the MCP SDK's own dependency range and has no upstream fix yet. 138 root tests green.
29
+
30
+ ### Fixed
31
+
32
+ - **Publish workflow pinned to `npm@11` — npm 12.0.0's `npm publish --provenance` is broken.** The job ran `npm install -g npm@latest`, which started resolving to npm 12.0.0 (released 2026-07-09) on the Node 22 runner. npm 12's `libnpmpublish` provenance code does `require('sigstore')`, but the tarball bundles only the `@sigstore/*` scoped packages — so `--provenance` dies with `MODULE_NOT_FOUND` and the publish fails outright. npm@11 bundles `sigstore` and publishes fine. Pinned to the major rather than floating on `@latest`. Revisit once npm ships a provenance fix. CI only — no runtime or published-artifact change.
33
+
34
+ ### Changed
35
+
36
+ - **Agent/IDE scratch is gitignored and de-tracked (`.claude/`, `.litectx/`, `.idea/`).** Per-machine agent and IDE state is no part of the package — it regenerates locally and only added noise and churn. Now ignored, and any already-committed copies removed from tracking (local files kept on disk). Functional dot-paths (`.github/`, `.gitignore`, `.npmignore`, `.mcp.json`) stay tracked. Repo hygiene only.
37
+
18
38
  ---
19
39
 
20
40
  ## [2.15.0] - 2026-07-13
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "liteagents",
3
- "version": "2.15.0",
3
+ "version": "2.15.2",
4
4
  "description": "AI development toolkit with 11 specialized agents and 17 commands including live-canvas UI design with click-to-annotate feedback. Simple one-question installer for Claude, Opencode, Ampcode, and Droid.",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -16,12 +16,12 @@
16
16
  }
17
17
  },
18
18
  "node_modules/@hono/node-server": {
19
- "version": "1.19.14",
20
- "resolved": "https://registry.npmjs.org/@hono/node-server/-/node-server-1.19.14.tgz",
21
- "integrity": "sha512-GwtvgtXxnWsucXvbQXkRgqksiH2Qed37H9xHZocE5sA3N8O8O8/8FA3uclQXxXVzc9XBZuEOMK7+r02FmSpHtw==",
19
+ "version": "2.0.11",
20
+ "resolved": "https://registry.npmjs.org/@hono/node-server/-/node-server-2.0.11.tgz",
21
+ "integrity": "sha512-bjD221KPLoJTWUwso1J6fGKiTXEUFedG/s0visavY4zakFPkeGURMRNly+FhBHs7T8Dz4qHaZIMX9ZoJHSJtKA==",
22
22
  "license": "MIT",
23
23
  "engines": {
24
- "node": ">=18.14.1"
24
+ "node": ">=20"
25
25
  },
26
26
  "peerDependencies": {
27
27
  "hono": "^4"
@@ -114,21 +114,34 @@
114
114
  }
115
115
  },
116
116
  "node_modules/body-parser": {
117
- "version": "2.2.2",
118
- "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.2.2.tgz",
119
- "integrity": "sha512-oP5VkATKlNwcgvxi0vM0p/D3n2C3EReYVX+DNYs5TjZFn/oQt2j+4sVJtSMr18pdRr8wjTcBl6LoV+FUwzPmNA==",
117
+ "version": "2.3.0",
118
+ "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.3.0.tgz",
119
+ "integrity": "sha512-2cGmJupaNgg+QUwVLAucDuWuoMZ6EX9iHDRswZ5lsNYEmwPaRknMPCLZz07yTzVq/83p4o/wzbDZbBrTvGGTIw==",
120
120
  "license": "MIT",
121
121
  "dependencies": {
122
122
  "bytes": "^3.1.2",
123
- "content-type": "^1.0.5",
123
+ "content-type": "^2.0.0",
124
124
  "debug": "^4.4.3",
125
- "http-errors": "^2.0.0",
126
- "iconv-lite": "^0.7.0",
125
+ "http-errors": "^2.0.1",
126
+ "iconv-lite": "^0.7.2",
127
127
  "on-finished": "^2.4.1",
128
- "qs": "^6.14.1",
129
- "raw-body": "^3.0.1",
130
- "type-is": "^2.0.1"
128
+ "qs": "^6.15.2",
129
+ "raw-body": "^3.0.2",
130
+ "type-is": "^2.1.0"
131
+ },
132
+ "engines": {
133
+ "node": ">=18"
131
134
  },
135
+ "funding": {
136
+ "type": "opencollective",
137
+ "url": "https://opencollective.com/express"
138
+ }
139
+ },
140
+ "node_modules/body-parser/node_modules/content-type": {
141
+ "version": "2.0.0",
142
+ "resolved": "https://registry.npmjs.org/content-type/-/content-type-2.0.0.tgz",
143
+ "integrity": "sha512-j/O/d7GcZCyNl7/hwZAb606rzqkyvaDctLmckbxLzHvFBzTJHuGEdodATcP3yIRoDrLHkIATJuvzbFlp/ki2cQ==",
144
+ "license": "MIT",
132
145
  "engines": {
133
146
  "node": ">=18"
134
147
  },
@@ -435,9 +448,9 @@
435
448
  "license": "MIT"
436
449
  },
437
450
  "node_modules/fast-uri": {
438
- "version": "3.1.2",
439
- "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.2.tgz",
440
- "integrity": "sha512-rVjf7ArG3LTk+FS6Yw81V1DLuZl1bRbNrev6Tmd/9RaroeeRRJhAt7jg/6YFxbvAQXUCavSoZhPPj6oOx+5KjQ==",
451
+ "version": "3.1.4",
452
+ "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.4.tgz",
453
+ "integrity": "sha512-8JnbkQ4juDyvYs4mgFGQqg4yCYtFDtUtmp2QIQq11ZZe5CFQ5wcqm1rqDgAh/QdMySuBnPzMUiJUNZG5N/AiQw==",
441
454
  "funding": [
442
455
  {
443
456
  "type": "github",
@@ -572,9 +585,9 @@
572
585
  }
573
586
  },
574
587
  "node_modules/hono": {
575
- "version": "4.12.25",
576
- "resolved": "https://registry.npmjs.org/hono/-/hono-4.12.25.tgz",
577
- "integrity": "sha512-2NFaIyNVgJmBs/ecmtGzlmluTFs5cHEWGTdu0t1HBwYzoGXOL5nUQBRMXsXWla5i4KkG//QMzVP88m1+I3fdAQ==",
588
+ "version": "4.12.31",
589
+ "resolved": "https://registry.npmjs.org/hono/-/hono-4.12.31.tgz",
590
+ "integrity": "sha512-zJIHFrl6bq3RDd2YusFNCDlM8qUprxKswyi/OPzPyzKDdyBXDqWx8bZlZ7R+saTdSTatUmb3O7K4SspGPaEOQg==",
578
591
  "license": "MIT",
579
592
  "engines": {
580
593
  "node": ">=16.9.0"
@@ -1068,17 +1081,34 @@
1068
1081
  }
1069
1082
  },
1070
1083
  "node_modules/type-is": {
1071
- "version": "2.0.1",
1072
- "resolved": "https://registry.npmjs.org/type-is/-/type-is-2.0.1.tgz",
1073
- "integrity": "sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==",
1084
+ "version": "2.1.0",
1085
+ "resolved": "https://registry.npmjs.org/type-is/-/type-is-2.1.0.tgz",
1086
+ "integrity": "sha512-faYHw0anBbc/kWF3zFTEnxSFOAGUX9GFbOBthvDdLsIlEoWOFOtS0zgCiQYwIskL9iGXZL3kAXD8OoZ4GmMATA==",
1074
1087
  "license": "MIT",
1075
1088
  "dependencies": {
1076
- "content-type": "^1.0.5",
1089
+ "content-type": "^2.0.0",
1077
1090
  "media-typer": "^1.1.0",
1078
1091
  "mime-types": "^3.0.0"
1079
1092
  },
1080
1093
  "engines": {
1081
- "node": ">= 0.6"
1094
+ "node": ">= 18"
1095
+ },
1096
+ "funding": {
1097
+ "type": "opencollective",
1098
+ "url": "https://opencollective.com/express"
1099
+ }
1100
+ },
1101
+ "node_modules/type-is/node_modules/content-type": {
1102
+ "version": "2.0.0",
1103
+ "resolved": "https://registry.npmjs.org/content-type/-/content-type-2.0.0.tgz",
1104
+ "integrity": "sha512-j/O/d7GcZCyNl7/hwZAb606rzqkyvaDctLmckbxLzHvFBzTJHuGEdodATcP3yIRoDrLHkIATJuvzbFlp/ki2cQ==",
1105
+ "license": "MIT",
1106
+ "engines": {
1107
+ "node": ">=18"
1108
+ },
1109
+ "funding": {
1110
+ "type": "opencollective",
1111
+ "url": "https://opencollective.com/express"
1082
1112
  }
1083
1113
  },
1084
1114
  "node_modules/unpipe": {
@@ -13,5 +13,10 @@
13
13
  "dependencies": {
14
14
  "@modelcontextprotocol/sdk": "^1.0.0"
15
15
  },
16
+ "overrides": {
17
+ "@modelcontextprotocol/sdk": {
18
+ "@hono/node-server": "^2.0.11"
19
+ }
20
+ },
16
21
  "license": "MIT"
17
22
  }