@jaypie/mcp 0.8.92 → 0.8.93

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.
@@ -9,7 +9,7 @@ import { gt } from 'semver';
9
9
  /**
10
10
  * Docs Suite - Documentation services (skill, version, release_notes)
11
11
  */
12
- const BUILD_VERSION_STRING = "@jaypie/mcp@0.8.92#ea103a82"
12
+ const BUILD_VERSION_STRING = "@jaypie/mcp@0.8.93#ff14510f"
13
13
  ;
14
14
  const __filename$1 = fileURLToPath(import.meta.url);
15
15
  const __dirname$1 = path.dirname(__filename$1);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jaypie/mcp",
3
- "version": "0.8.92",
3
+ "version": "0.8.93",
4
4
  "description": "Jaypie MCP",
5
5
  "repository": {
6
6
  "type": "git",
@@ -0,0 +1,12 @@
1
+ ---
2
+ version: 1.2.28
3
+ date: 2026-07-04
4
+ summary: Include route parameters in the automatic session report
5
+ ---
6
+
7
+ # @jaypie/express 1.2.28
8
+
9
+ ## Changes
10
+
11
+ - `expressHandler` and `expressStreamHandler` now include a `parameters` field (mirroring `req.params`) in the automatic `log.report()` call when the matched route defines params, e.g. `path: "/workflows/:id/messages"` now also reports `parameters: { id: "..." }`.
12
+ - `parameters` is omitted entirely when the route has no params.
@@ -0,0 +1,14 @@
1
+ ---
2
+ version: 1.2.62
3
+ date: 2026-07-04
4
+ summary: Pick up @jaypie/express 1.2.28 (report parameters) and @jaypie/logger 1.2.20 (exported JaypieLogger)
5
+ ---
6
+
7
+ ## Changes
8
+
9
+ - `@jaypie/express` dependency raised to `^1.2.28` — `expressHandler` and
10
+ `expressStreamHandler` now include a `parameters` field (mirroring
11
+ `req.params`) in the automatic session report when the matched route
12
+ defines params
13
+ - `@jaypie/logger` dependency raised to `^1.2.20` — `JaypieLogger` is now a
14
+ named export, and `report()`/`setup()`/`teardown()` gained TSDoc comments
@@ -0,0 +1,11 @@
1
+ ---
2
+ version: 1.2.20
3
+ date: 2026-07-04
4
+ summary: Export JaypieLogger class and document setup/report/teardown session management
5
+ ---
6
+
7
+ ## Changes
8
+
9
+ - Exported `JaypieLogger` as a named export from `@jaypie/logger` so its class members are visible to API Extractor and appear in generated API docs
10
+ - Added TSDoc comments to `report()`, `setup()`, and `teardown()`
11
+ - Documented the `log.setup()` / `log.report()` / `log.teardown()` session management pattern on jaypie.net (previously only covered in the internal `logs` skill)
@@ -0,0 +1,11 @@
1
+ ---
2
+ version: 0.8.93
3
+ date: 2026-07-04
4
+ summary: Document expressHandler/expressStreamHandler automatic parameters field in session report
5
+ ---
6
+
7
+ ## Changes
8
+
9
+ - `skill("express")` documents the automatic `log.report()` session report,
10
+ including the new `parameters` field (mirrors `req.params`)
11
+ - Release notes for `@jaypie/express` 1.2.28
@@ -0,0 +1,11 @@
1
+ ---
2
+ version: 1.2.52
3
+ date: 2026-07-04
4
+ summary: Re-export JaypieLogger from @jaypie/testkit/mock to match @jaypie/logger 1.2.20
5
+ ---
6
+
7
+ ## Changes
8
+
9
+ - `@jaypie/testkit/mock` re-exports `JaypieLogger` alongside the existing
10
+ `Logger`, `FORMAT`, `LEVEL`, `redactAuth`, `sanitizeAuth` mocks, matching
11
+ `@jaypie/logger@1.2.20`'s new named export
package/skills/express.md CHANGED
@@ -162,6 +162,24 @@ The Lambda adapter provides Express-compatible request properties:
162
162
  | `req._lambdaContext` | Original Lambda context |
163
163
  | `req._lambdaEvent` | Original Lambda event |
164
164
 
165
+ ## Session Report
166
+
167
+ `expressHandler` and `expressStreamHandler` automatically call `log.report()` with request metadata before the session's `log.teardown()` (see `skill("logs")`):
168
+
169
+ ```typescript
170
+ {
171
+ method: "GET",
172
+ path: "/workflows/:id/messages", // UUID segments normalized to :id
173
+ query: "limit=10",
174
+ contentType: "",
175
+ contentLength: 0,
176
+ status: "200",
177
+ parameters: { id: "123e4567-e89b-12d3-a456-426614174000" }, // req.params, only when non-empty
178
+ }
179
+ ```
180
+
181
+ `parameters` mirrors Express's `req.params` so the original route parameter values survive path normalization for aggregation.
182
+
165
183
  ## CDK Integration
166
184
 
167
185
  Deploy with `@jaypie/constructs`: