copilot-debugger 0.1.0 → 0.1.1

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 (2) hide show
  1. package/README.md +14 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,14 +2,12 @@
2
2
 
3
3
  Local developer viewer for VS Code Copilot Chat sessions.
4
4
 
5
- > [!WARNING]
6
- > This application was created primarily with generative artificial intelligence. The code may contain bugs, security issues, or unexpected behavior. Use it at your own risk. Before deploying it or adapting it for your own needs, carefully review and verify the code.
7
-
8
5
  ## Contents
9
6
 
10
7
  - [What It Is](#what-it-is)
11
8
  - [Installation](#installation)
12
9
  - [Troubleshooting](#troubleshooting)
10
+ - [Screenshots](#screenshots)
13
11
  - [Author](#author)
14
12
  - [Contribute](#contribute)
15
13
  - [License](#license)
@@ -87,6 +85,19 @@ VSCODE_WORKSPACE_STORAGE_ROOT="/path/to/workspaceStorage" npm run dev
87
85
  - Broken or incomplete data: Copilot Chat log formats are not a stable public API and may change between VS Code versions.
88
86
  - TypeScript errors after changes: run `npm run typecheck` before debugging runtime behavior.
89
87
 
88
+ ## Screenshots
89
+
90
+ <table>
91
+ <tr>
92
+ <td width="280"><a href="docs/cd1.png"><img src="docs/cd1.png" alt="Copilot Debugger session list" width="280" height="160"></a></td>
93
+ <td width="280"><a href="docs/cd2.png"><img src="docs/cd2.png" alt="Copilot Debugger session detail" width="280" height="160"></a></td>
94
+ </tr>
95
+ <tr>
96
+ <td width="280"><a href="docs/cd3.png"><img src="docs/cd3.png" alt="Copilot Debugger debug log detail" width="280" height="160"></a></td>
97
+ <td width="280" height="160">Application previews are shown here.</td>
98
+ </tr>
99
+ </table>
100
+
90
101
  ## Author
91
102
 
92
103
  - Mirek Holec
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "copilot-debugger",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "private": false,
5
5
  "description": "Copilot Debugger is a local viewer for VS Code Copilot Chat transcript and debug sessions.",
6
6
  "type": "module",