@qiaolei81/copilot-session-viewer 0.1.6 → 0.1.7
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/CHANGELOG.md +15 -0
- package/README.md +8 -5
- package/package.json +1 -1
- package/views/session-vue.ejs +3 -5
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.1.7] - 2026-02-16
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- WIP status badge moved from sidebar info table to inline with the page title on session detail page, matching the time analysis page's pattern for better visibility and consistency
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
- npm provenance signing now explicitly checks out the release tag so the `SourceRepositoryRef` is available during `npm publish --provenance`
|
|
15
|
+
|
|
16
|
+
### Docs
|
|
17
|
+
- Added screenshots to README (homepage, session detail, time analysis)
|
|
18
|
+
- Sensitive info (session IDs, workspace paths, repo names) masked in screenshots
|
|
19
|
+
- Switched screenshot references to absolute GitHub raw URLs for npmjs.org compatibility
|
|
20
|
+
- Removed broken placeholder image and hardcoded version from README
|
|
21
|
+
|
|
8
22
|
## [0.1.6] - 2026-02-16
|
|
9
23
|
|
|
10
24
|
### Added
|
|
@@ -123,6 +137,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
123
137
|
- CORS restricted to localhost
|
|
124
138
|
- File upload size limits (50MB)
|
|
125
139
|
|
|
140
|
+
[0.1.7]: https://github.com/qiaolei81/copilot-session-viewer/releases/tag/v0.1.7
|
|
126
141
|
[0.1.6]: https://github.com/qiaolei81/copilot-session-viewer/releases/tag/v0.1.6
|
|
127
142
|
[0.1.3]: https://github.com/qiaolei81/copilot-session-viewer/releases/tag/v0.1.3
|
|
128
143
|
[0.1.2]: https://github.com/qiaolei81/copilot-session-viewer/releases/tag/v0.1.2
|
package/README.md
CHANGED
|
@@ -8,7 +8,14 @@
|
|
|
8
8
|
|
|
9
9
|
A modern web-based viewer for analyzing GitHub Copilot CLI session logs with virtual scrolling, infinite loading, time analysis, and AI-powered insights.
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
### Session List
|
|
12
|
+

|
|
13
|
+
|
|
14
|
+
### Session Detail — Event Stream with Virtual Scrolling
|
|
15
|
+

|
|
16
|
+
|
|
17
|
+
### Time Analysis — Gantt Timeline & Sub-Agent Breakdown
|
|
18
|
+

|
|
12
19
|
|
|
13
20
|
---
|
|
14
21
|
|
|
@@ -168,10 +175,6 @@ MIT License - see [LICENSE](LICENSE) file for details
|
|
|
168
175
|
|
|
169
176
|
---
|
|
170
177
|
|
|
171
|
-
**Status:** ✅ Active Development | **Version:** 0.1.3 | **Last Updated:** 2026-02-16
|
|
172
|
-
|
|
173
|
-
---
|
|
174
|
-
|
|
175
178
|
<div align="center">
|
|
176
179
|
|
|
177
180
|
**[🏠 Homepage](https://github.com/qiaolei81/copilot-session-viewer)** •
|
package/package.json
CHANGED
package/views/session-vue.ejs
CHANGED
|
@@ -1757,7 +1757,9 @@
|
|
|
1757
1757
|
<div class="container">
|
|
1758
1758
|
<div class="header">
|
|
1759
1759
|
<a href="/" class="home-btn">← Back to Home</a>
|
|
1760
|
-
<h1>📋 Session: {{ sessionId }}
|
|
1760
|
+
<h1>📋 Session: {{ sessionId }}
|
|
1761
|
+
<span v-if="metadata.sessionStatus === 'wip'" style="font-size: 12px; padding: 2px 8px; border-radius: 3px; background: rgba(210, 153, 34, 0.2); color: #d29922; border: 1px solid rgba(210, 153, 34, 0.4); vertical-align: middle; margin-left: 8px;">🔄 WIP</span>
|
|
1762
|
+
</h1>
|
|
1761
1763
|
<div style="display: flex; gap: 10px;">
|
|
1762
1764
|
<a :href="'/session/' + sessionId + '/time-analyze'" class="time-analyze-btn">⏱ Analysis</a>
|
|
1763
1765
|
<button @click="exportSession" class="export-btn" :disabled="exporting">
|
|
@@ -1774,10 +1776,6 @@
|
|
|
1774
1776
|
<div v-if="metadata.summary" class="session-summary-block">{{ metadata.summary }}</div>
|
|
1775
1777
|
<table class="session-info-table">
|
|
1776
1778
|
<tbody>
|
|
1777
|
-
<tr v-if="metadata.sessionStatus === 'wip'">
|
|
1778
|
-
<td>Status</td>
|
|
1779
|
-
<td><span class="badge-warning" style="padding: 2px 8px; border-radius: 3px; font-size: 12px;">🔄 WIP</span></td>
|
|
1780
|
-
</tr>
|
|
1781
1779
|
<tr v-if="metadata.copilotVersion">
|
|
1782
1780
|
<td>CLI Version</td>
|
|
1783
1781
|
<td>{{ metadata.copilotVersion }}</td>
|