@cyanheads/mcp-ts-core 0.13.2 → 0.13.3

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.
@@ -311,7 +311,7 @@ Available skills:
311
311
  | `code-simplifier` | Post-session cleanup against `git diff` — modernize syntax, consolidate duplication, align with the codebase |
312
312
  | `polish-docs-meta` | Finalize docs, README, metadata, and agent protocol for shipping |
313
313
  | `git-wrapup` | Land working-tree changes as a commit stack — version bump, changelog, verify, commit by concern, release commit on top. No tag, no push to main; opens the release PR when the project declares release PR mode |
314
- | `release-pr-review` | Review pass on an open release PR — simplifier + correctness review, fixup commits autosquashed into the stack, PR body kept in sync. Release PR mode only |
314
+ | `release-pr-review` | Review pass on an open release PR — simplifier + correctness review, fixes as ordinary commits on top of the stack, PR body kept in sync. Release PR mode only |
315
315
  | `release-and-publish` | Fast-forward merge (release PR mode) + tag + push + npm + MCP Registry + GH Release + Docker. Picks up from `git-wrapup` |
316
316
  | `maintenance` | Investigate changelogs, adopt upstream changes, sync skills to agent dirs |
317
317
  | `orchestrations` | Chain task skills into a gated multi-phase pipeline — build-out, QA-fix, update-ship — when you can spawn sub-agents |
@@ -362,6 +362,8 @@ When you complete a skill's checklist, check the boxes and add a completion time
362
362
  | `bun run changelog:check` | Verify `CHANGELOG.md` is in sync (used by devcheck) |
363
363
  | `bun run bundle` | Build, pack, and clean a `.mcpb` for one-click Claude Desktop install |
364
364
 
365
+ **CI is one file.** `.github/workflows/codeql.yml` (scaffolded) is the only GitHub Actions workflow: CodeQL is GitHub-owned end to end, and the file runs only while the repo's CodeQL *default setup* is turned off. Verification — `devcheck`, tests, the release gates — runs locally; don't add a workflow that re-runs it.
366
+
365
367
  ---
366
368
 
367
369
  ## Bundling
@@ -72,8 +72,8 @@
72
72
  "@vitest/coverage-istanbul": "4.1.11",
73
73
  "depcheck": "^1.4.7",
74
74
  "fast-check": "^4.9.0",
75
- "ignore": "^7.0.7",
76
- "tsc-alias": "^1.9.2",
75
+ "ignore": "^7.0.9",
76
+ "tsc-alias": "^1.9.5",
77
77
  "typescript": "^7.0.2",
78
78
  "vitest": "^4.1.11"
79
79
  }
@@ -17,9 +17,10 @@ await createApp({
17
17
  tools: [echoTool, echoAppTool],
18
18
  resources: [echoResource, echoAppUiResource],
19
19
  prompts: [echoPrompt],
20
- // instructions: 'Server-level orientation forwarded to the model on every initialize.\n' +
21
- // '- Use shortcut `X` for the most common case\n' +
22
- // '- Tools require auth via the `inventory:read` scope',
20
+ // Server-level orientation forwarded to the model on every initialize: two to three
21
+ // cohesive sentences in one string literal, written for the calling agent (which tool
22
+ // opens a workflow, what chains into what). Operator configuration stays in the README.
23
+ // instructions: 'Resolve a name to an id with example_search, then pass that id to example_get for the full record. Results are paged; follow nextOffset until it is absent.',
23
24
 
24
25
  // Session posture in code rather than in a Dockerfile. MCP_SESSION_MODE still
25
26
  // wins when it is set. Add `require: 'stateful'` — `{ default: 'stateful',