feat: night-shift roadmap — guide+skill, streamable HTTP, cell-order sync, terminal interrupt #44
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: MCP CLI CI | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| paths: | |
| - "src/cli/**" | |
| - "src/plutoManagerTypes.ts" | |
| - "src/plutoManager.ts" | |
| - "src/mcp-server-http.ts" | |
| - "src/portUtils.ts" | |
| - "src/platformUtils.ts" | |
| - "src/helpers.ts" | |
| - "packages/advanced-pluto-mcp/**" | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "src/cli/**" | |
| - "src/plutoManagerTypes.ts" | |
| - "src/plutoManager.ts" | |
| - "src/mcp-server-http.ts" | |
| - "src/portUtils.ts" | |
| - "src/platformUtils.ts" | |
| - "src/helpers.ts" | |
| - "packages/advanced-pluto-mcp/**" | |
| workflow_call: {} | |
| jobs: | |
| build-mcp: | |
| name: Build MCP CLI | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: "22" | |
| cache: "npm" | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Type-check CLI sources | |
| run: npm run check-types --workspace=packages/advanced-pluto-mcp | |
| - name: Build CLI bundle | |
| run: npm run build:production --workspace=packages/advanced-pluto-mcp | |
| - name: Verify shebang and executable | |
| run: | | |
| head -1 packages/advanced-pluto-mcp/dist/cli.cjs | grep -q "#!/usr/bin/env node" | |
| test -x packages/advanced-pluto-mcp/dist/cli.cjs | |
| echo "CLI binary looks good" | |
| - name: Smoke test | |
| run: node packages/advanced-pluto-mcp/dist/cli.cjs --help | grep -q "Usage:" |