@mrclrchtr/supi-debug 1.14.3 → 1.16.0

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.
package/README.md CHANGED
@@ -48,7 +48,7 @@ It also registers a **Debug** provider section for `/supi-context`.
48
48
  - **Collapsed** (default) — a one-line summary:
49
49
 
50
50
  ```
51
- 3 events — rtk/rewrite +2 more
51
+ 3 events — lsp/rewrite +2 more
52
52
  ```
53
53
 
54
54
  - **Expanded** — full details with timestamp, level, source/category, message, cwd,
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mrclrchtr/supi-core",
3
- "version": "1.14.3",
3
+ "version": "1.16.0",
4
4
  "description": "SuPi core — shared infrastructure for SuPi extensions (XML context tags, config system)",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -6,7 +6,7 @@
6
6
  import { createRegistry } from "../registry-utils.ts";
7
7
 
8
8
  export interface ContextProvider {
9
- /** Unique identifier — e.g. "rtk" */
9
+ /** Unique identifier — e.g. "lsp" */
10
10
  id: string;
11
11
  /** Human-readable label shown in the report */
12
12
  label: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mrclrchtr/supi-debug",
3
- "version": "1.14.3",
3
+ "version": "1.16.0",
4
4
  "description": "SuPi Debug extension — shared debug event inspection for SuPi extensions",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -30,7 +30,7 @@
30
30
  "README.md"
31
31
  ],
32
32
  "dependencies": {
33
- "@mrclrchtr/supi-core": "1.14.3"
33
+ "@mrclrchtr/supi-core": "1.16.0"
34
34
  },
35
35
  "bundledDependencies": [
36
36
  "@mrclrchtr/supi-core"
package/src/debug.ts CHANGED
@@ -323,7 +323,7 @@ export default function debugExtension(pi: ExtensionAPI) {
323
323
  promptSnippet,
324
324
  promptGuidelines,
325
325
  parameters: Type.Object({
326
- source: Type.Optional(Type.String({ description: "Filter by extension source, e.g. rtk" })),
326
+ source: Type.Optional(Type.String({ description: "Filter by extension source, e.g. lsp" })),
327
327
  level: Type.Optional(
328
328
  Type.Union([
329
329
  Type.Literal("debug"),