debug-run 0.5.5 → 0.5.6

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.
@@ -18,10 +18,14 @@ Use the `debug-run` CLI tool to programmatically debug applications via the Debu
18
18
 
19
19
  ## Prerequisites
20
20
 
21
- Ensure debug-run is installed in the project:
21
+ debug-run is available via npx (no installation required) or can be installed globally:
22
22
 
23
23
  ```bash
24
- npm install # in the debug-run directory
24
+ # Run directly with npx
25
+ npx debug-run --help
26
+
27
+ # Or install globally
28
+ npm install -g debug-run
25
29
  ```
26
30
 
27
31
  Check available adapters:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "debug-run",
3
- "version": "0.5.5",
3
+ "version": "0.5.6",
4
4
  "description": "CLI tool enabling AI agents to programmatically debug code via DAP",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",