@jaypie/mcp 0.7.14 → 0.7.16

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.7.14#00cead11"
12
+ const BUILD_VERSION_STRING = "@jaypie/mcp@0.7.16#d8b8c444"
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.7.14",
3
+ "version": "0.7.16",
4
4
  "description": "Jaypie MCP",
5
5
  "repository": {
6
6
  "type": "git",
@@ -0,0 +1,19 @@
1
+ ---
2
+ version: 1.2.13
3
+ date: 2026-02-05
4
+ summary: Fix request stream not ending for GET requests without body in Lambda streaming mode
5
+ ---
6
+
7
+ ## Fixes
8
+
9
+ - **Lambda Streaming**: Fixed GET requests without a body hanging when using `createLambdaStreamHandler` with `expressHandler`. The issue was that the request stream never emitted 'end' for bodyless requests, causing middleware (like `express.json()`) that waits for the stream to hang forever.
10
+
11
+ ## Technical Details
12
+
13
+ The `LambdaRequest` class now always schedules a `process.nextTick` to push `null` to the stream (signaling end), even for requests without a body. Previously, this was only done for requests WITH a body, leaving GET requests in a perpetual "waiting" state.
14
+
15
+ This fix complements the 1.2.12 fix - together they fully resolve issue #187:
16
+ - **1.2.12**: Fixed `safeSendJson` setting content-type before flushing headers
17
+ - **1.2.13**: Fixed request stream never ending for bodyless requests
18
+
19
+ Fixes #187
@@ -0,0 +1,9 @@
1
+ ---
2
+ version: 1.2.11
3
+ date: 2026-02-05
4
+ summary: Update @jaypie/express dependency with streaming request fix
5
+ ---
6
+
7
+ ## Dependencies
8
+
9
+ - Updated `@jaypie/express` to 1.2.13 (fixes GET requests hanging in Lambda streaming mode)
@@ -0,0 +1,9 @@
1
+ ---
2
+ version: 0.7.16
3
+ date: 2025-02-07
4
+ summary: Update skill docs to reflect stacks/ to workspaces/ directory rename
5
+ ---
6
+
7
+ ## Changes
8
+
9
+ - Updated monorepo, cdk, jaypie, cicd-deploy, and cicd-actions skills to reference `workspaces/` instead of `stacks/`
package/skills/cdk.md CHANGED
@@ -80,10 +80,10 @@ const bucket = new JaypieBucket(this, "AssetsBucket", {
80
80
 
81
81
  ## Stack Structure
82
82
 
83
- Organize stacks in the `stacks/` directory:
83
+ Organize stacks in the `workspaces/` directory:
84
84
 
85
85
  ```
86
- stacks/
86
+ workspaces/
87
87
  ├── cdk/
88
88
  │ ├── src/
89
89
  │ │ ├── app.ts # CDK app entry
@@ -187,7 +187,7 @@ runs:
187
187
  path: |
188
188
  node_modules
189
189
  packages/*/node_modules
190
- stacks/*/node_modules
190
+ workspaces/*/node_modules
191
191
  key: ${{ runner.os }}-node-${{ inputs.node-version }}-${{ hashFiles('**/package-lock.json') }}
192
192
  restore-keys: |
193
193
  ${{ runner.os }}-node-${{ inputs.node-version }}-
@@ -198,8 +198,8 @@ runs:
198
198
  with:
199
199
  path: |
200
200
  packages/*/dist
201
- stacks/*/dist
202
- stacks/*/.open-next
201
+ workspaces/*/dist
202
+ workspaces/*/.open-next
203
203
  key: ${{ runner.os }}-build-${{ github.sha }}
204
204
  restore-keys: |
205
205
  ${{ runner.os }}-build-
@@ -255,7 +255,7 @@ inputs:
255
255
  working-directory:
256
256
  description: 'Working directory for CDK commands'
257
257
  required: false
258
- default: 'stacks/cdk'
258
+ default: 'workspaces/cdk'
259
259
  require-approval:
260
260
  description: 'CDK approval mode (never, any-change, broadening)'
261
261
  required: false
@@ -248,7 +248,7 @@ jobs:
248
248
  Use consistent stack naming with environment and nonce:
249
249
 
250
250
  ```typescript
251
- // stacks/cdk/src/app.ts
251
+ // workspaces/cdk/src/app.ts
252
252
  const env = process.env.PROJECT_ENV || "sandbox";
253
253
  const nonce = process.env.PROJECT_NONCE || "dev";
254
254
 
package/skills/jaypie.md CHANGED
@@ -53,7 +53,7 @@ project/
53
53
  ├── packages/ # npm packages
54
54
  │ ├── api/ # Express API
55
55
  │ └── lib/ # Shared library
56
- ├── stacks/ # CDK infrastructure
56
+ ├── workspaces/ # CDK infrastructure
57
57
  │ └── cdk/ # CDK app
58
58
  └── package.json # Root workspace config
59
59
  ```
@@ -138,7 +138,7 @@ npm install --save-dev @jaypie/eslint @jaypie/testkit eslint rimraf sort-package
138
138
  | Directory | Purpose |
139
139
  |-----------|---------|
140
140
  | `packages/` | npm packages (default workspace) |
141
- | `stacks/` | CDK-deployed infrastructure and sites |
141
+ | `workspaces/` | CDK-deployed infrastructure and sites |
142
142
 
143
143
  ## Scripts Reference
144
144