@i-scope/debugger 0.2.0 → 0.2.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/README.md +15 -7
  3. package/package.json +5 -2
package/CHANGELOG.md CHANGED
@@ -4,6 +4,22 @@ All notable changes to this package will be documented here. The format
4
4
  is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and
5
5
  this project adheres to [Semantic Versioning](https://semver.org/).
6
6
 
7
+ ## [0.2.2] — 2026-09-02
8
+
9
+ ### Changed
10
+
11
+ - README: Cursor / VS Code MCP path is **iScope: Enable MCP** (extension
12
+ 0.1.6+), not a hand-written `.cursor/mcp.json`. Canonical server id
13
+ `iscope-debug` (was `iscope-debugger` in the sample).
14
+
15
+ ## [0.2.1] — 2026-09-02
16
+
17
+ ### Changed
18
+
19
+ - README license badge and footer use the unpkg tarball URL instead of
20
+ relative `./LICENSE`. npmjs.com resolved that link to a 404 package
21
+ `@i-scope/LICENSE`.
22
+
7
23
  ## [0.1.0] — 2026-05-19
8
24
 
9
25
  ### Added
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![npm version](https://img.shields.io/npm/v/%40i-scope%2Fdebugger.svg?label=npm)](https://www.npmjs.com/package/@i-scope/debugger)
4
4
  [![npm downloads](https://img.shields.io/npm/dm/%40i-scope%2Fdebugger.svg)](https://www.npmjs.com/package/@i-scope/debugger)
5
- [![License: MIT](https://img.shields.io/npm/l/%40i-scope%2Fdebugger.svg)](./LICENSE)
5
+ [![License: MIT](https://img.shields.io/npm/l/%40i-scope%2Fdebugger.svg)](https://unpkg.com/@i-scope/debugger/LICENSE)
6
6
  [![Node](https://img.shields.io/node/v/%40i-scope%2Fdebugger.svg)](#)
7
7
 
8
8
  Official single-install entry point for the **iScope Debugger SDK** —
@@ -27,10 +27,11 @@ individually in your own `package.json`.
27
27
 
28
28
  | Persona | Recommended install | Entry point |
29
29
  |---------|---------------------|-------------|
30
- | AI agent through MCP | `@i-scope/debugger` (full set) | `import ... from '@i-scope/mcp-server'`; or wire `.cursor/mcp.json` |
30
+ | AI agent through MCP (Cursor / VS Code) | Marketplace extension `i-scope.iscope-debugger` | Command Palette → **iScope: Enable MCP** |
31
+ | AI agent through MCP (Claude Code / other) | `@i-scope/mcp-server` (`npx -y`) | client's `mcp.json` — see `@i-scope/mcp-server` README |
31
32
  | DAP host integration (WebStorm, Neovim DAP, custom IDE) | `@i-scope/debugger` (full set) | `import { AjsDebugSession } from '@i-scope/dap-adapter'` |
32
33
  | CLI / custom Node tooling | `@i-scope/debugger` (full set) OR point-pick `@i-scope/iscope-bridge-client` standalone | `import { IScopeBridge } from '@i-scope/iscope-bridge-client'` |
33
- | VS Code / Cursor end-user | **Do NOT install this.** Install the `.vsix` extension from Marketplace — it bundles everything. | F5 in `.ajs` / `.ts` files |
34
+ | VS Code / Cursor F5 debug | **Do NOT install this npm meta.** Install the Marketplace extension — it bundles the DAP stack. | F5 in `.ajs` / `.ts` files; MCP via **iScope: Enable MCP** |
34
35
 
35
36
  Note that `@i-scope/debugger` (this package, published on **npmjs.com**)
36
37
  and the unscoped `iscope-debugger` (the VS Code / Cursor extension
@@ -77,13 +78,20 @@ MCP tools) that verify the above and return a structured verdict.
77
78
 
78
79
  ## Quick start — MCP integration (most common path)
79
80
 
80
- After `npm install @i-scope/debugger`, point your MCP client (Cursor,
81
- Claude Code, …) at the bundled server. Example `.cursor/mcp.json`:
81
+ **Cursor / VS Code:** install
82
+ [iScope .ajs Debugger](https://marketplace.visualstudio.com/items?itemName=i-scope.iscope-debugger)
83
+ and run **iScope: Enable MCP**. That writes the `npx -y @i-scope/mcp-server`
84
+ entry into workspace `.cursor/mcp.json` or `.vscode/mcp.json`. Then
85
+ `Developer: Reload Window` in **this editor** (not Oscilloscope).
86
+
87
+ **Other MCP clients** (Claude Code, …), after `npm install @i-scope/debugger`
88
+ or with `npx` only — example Cursor-style file if the client uses
89
+ `mcpServers` (server id `iscope-debug`):
82
90
 
83
91
  ```json
84
92
  {
85
93
  "mcpServers": {
86
- "iscope-debugger": {
94
+ "iscope-debug": {
87
95
  "command": "npx",
88
96
  "args": ["-y", "@i-scope/mcp-server"]
89
97
  }
@@ -108,4 +116,4 @@ for the full tool reference.
108
116
 
109
117
  ## License
110
118
 
111
- MIT — see [`LICENSE`](./LICENSE).
119
+ MIT — see [`LICENSE`](https://unpkg.com/@i-scope/debugger/LICENSE).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@i-scope/debugger",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
4
4
  "license": "MIT",
5
5
  "description": "iScope Debugger — meta-package. Single-install entry point for the full debugger SDK: DAP adapter for IDE integrations, MCP server for AI agents, Win32 native helper bridge, source-map / VLST / COM-protocol building blocks. Pure dependency umbrella; no runtime code of its own.",
6
6
  "keywords": [
@@ -20,7 +20,7 @@
20
20
  "homepage": "https://gitlab.com/i-scope/Debugger",
21
21
  "repository": {
22
22
  "type": "git",
23
- "url": "https://gitlab.com/i-scope/Debugger.git",
23
+ "url": "git+https://gitlab.com/i-scope/Debugger.git",
24
24
  "directory": "packages/debugger"
25
25
  },
26
26
  "bugs": {
@@ -31,6 +31,9 @@
31
31
  "CHANGELOG.md",
32
32
  "LICENSE"
33
33
  ],
34
+ "scripts": {
35
+ "build": "node -e \"process.exit(0)\""
36
+ },
34
37
  "engines": {
35
38
  "node": ">=20"
36
39
  },