copilot-cli-trace-deck 0.1.0__tar.gz
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.
- copilot_cli_trace_deck-0.1.0/LICENSE +21 -0
- copilot_cli_trace_deck-0.1.0/PKG-INFO +63 -0
- copilot_cli_trace_deck-0.1.0/README.md +53 -0
- copilot_cli_trace_deck-0.1.0/pyproject.toml +25 -0
- copilot_cli_trace_deck-0.1.0/setup.cfg +4 -0
- copilot_cli_trace_deck-0.1.0/src/copilot_cli_trace_deck/__init__.py +1 -0
- copilot_cli_trace_deck-0.1.0/src/copilot_cli_trace_deck/__main__.py +5 -0
- copilot_cli_trace_deck-0.1.0/src/copilot_cli_trace_deck/data/__init__.py +5 -0
- copilot_cli_trace_deck-0.1.0/src/copilot_cli_trace_deck/data/sessions.py +628 -0
- copilot_cli_trace_deck-0.1.0/src/copilot_cli_trace_deck/models.py +61 -0
- copilot_cli_trace_deck-0.1.0/src/copilot_cli_trace_deck/server.py +3 -0
- copilot_cli_trace_deck-0.1.0/src/copilot_cli_trace_deck/web/__init__.py +1 -0
- copilot_cli_trace_deck-0.1.0/src/copilot_cli_trace_deck/web/pages.py +2305 -0
- copilot_cli_trace_deck-0.1.0/src/copilot_cli_trace_deck/web/server.py +315 -0
- copilot_cli_trace_deck-0.1.0/src/copilot_cli_trace_deck.egg-info/PKG-INFO +63 -0
- copilot_cli_trace_deck-0.1.0/src/copilot_cli_trace_deck.egg-info/SOURCES.txt +18 -0
- copilot_cli_trace_deck-0.1.0/src/copilot_cli_trace_deck.egg-info/dependency_links.txt +1 -0
- copilot_cli_trace_deck-0.1.0/src/copilot_cli_trace_deck.egg-info/entry_points.txt +2 -0
- copilot_cli_trace_deck-0.1.0/src/copilot_cli_trace_deck.egg-info/requires.txt +1 -0
- copilot_cli_trace_deck-0.1.0/src/copilot_cli_trace_deck.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Lanbao
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: copilot-cli-trace-deck
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Render GitHub Copilot CLI agent debug logs into a clear, inspectable trace view.
|
|
5
|
+
Requires-Python: >=3.10
|
|
6
|
+
Description-Content-Type: text/markdown
|
|
7
|
+
License-File: LICENSE
|
|
8
|
+
Requires-Dist: watchdog<7,>=6
|
|
9
|
+
Dynamic: license-file
|
|
10
|
+
|
|
11
|
+
# copilot-cli-trace-deck
|
|
12
|
+
Render GitHub Copilot CLI agent debug logs into a clear, inspectable trace view.
|
|
13
|
+
|
|
14
|
+
## Screenshots
|
|
15
|
+
|
|
16
|
+
### Main View
|
|
17
|
+
|
|
18
|
+

|
|
19
|
+
|
|
20
|
+
### Summary View
|
|
21
|
+
|
|
22
|
+

|
|
23
|
+
|
|
24
|
+
### Log View
|
|
25
|
+
|
|
26
|
+

|
|
27
|
+
|
|
28
|
+
### Flow View
|
|
29
|
+
|
|
30
|
+

|
|
31
|
+
|
|
32
|
+
## Run
|
|
33
|
+
|
|
34
|
+
Run the app directly from the workspace with `uv`:
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
uv run copilot-cli-trace-deck
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
By default the server listens on `http://127.0.0.1:9887` and opens that URL in your browser.
|
|
41
|
+
|
|
42
|
+
Live updates are pushed over Server-Sent Events and triggered by file-system changes in the session-state directory, so the home, summary, logs, and flow pages update without browser polling.
|
|
43
|
+
|
|
44
|
+
You can also pass the session-state source and server options:
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
uv run copilot-cli-trace-deck ~/.copilot/session-state --host 127.0.0.1 --port 9887
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
To skip opening a browser while still printing the local URL:
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
uv run copilot-cli-trace-deck --quiet
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
## Install As A Command
|
|
57
|
+
|
|
58
|
+
Install the project as a local tool and run it directly from your shell:
|
|
59
|
+
|
|
60
|
+
```bash
|
|
61
|
+
uv tool install .
|
|
62
|
+
copilot-cli-trace-deck --help
|
|
63
|
+
```
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# copilot-cli-trace-deck
|
|
2
|
+
Render GitHub Copilot CLI agent debug logs into a clear, inspectable trace view.
|
|
3
|
+
|
|
4
|
+
## Screenshots
|
|
5
|
+
|
|
6
|
+
### Main View
|
|
7
|
+
|
|
8
|
+

|
|
9
|
+
|
|
10
|
+
### Summary View
|
|
11
|
+
|
|
12
|
+

|
|
13
|
+
|
|
14
|
+
### Log View
|
|
15
|
+
|
|
16
|
+

|
|
17
|
+
|
|
18
|
+
### Flow View
|
|
19
|
+
|
|
20
|
+

|
|
21
|
+
|
|
22
|
+
## Run
|
|
23
|
+
|
|
24
|
+
Run the app directly from the workspace with `uv`:
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
uv run copilot-cli-trace-deck
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
By default the server listens on `http://127.0.0.1:9887` and opens that URL in your browser.
|
|
31
|
+
|
|
32
|
+
Live updates are pushed over Server-Sent Events and triggered by file-system changes in the session-state directory, so the home, summary, logs, and flow pages update without browser polling.
|
|
33
|
+
|
|
34
|
+
You can also pass the session-state source and server options:
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
uv run copilot-cli-trace-deck ~/.copilot/session-state --host 127.0.0.1 --port 9887
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
To skip opening a browser while still printing the local URL:
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
uv run copilot-cli-trace-deck --quiet
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
## Install As A Command
|
|
47
|
+
|
|
48
|
+
Install the project as a local tool and run it directly from your shell:
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
uv tool install .
|
|
52
|
+
copilot-cli-trace-deck --help
|
|
53
|
+
```
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "copilot-cli-trace-deck"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Render GitHub Copilot CLI agent debug logs into a clear, inspectable trace view."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
dependencies = [
|
|
12
|
+
"watchdog>=6,<7",
|
|
13
|
+
]
|
|
14
|
+
|
|
15
|
+
[project.scripts]
|
|
16
|
+
copilot-cli-trace-deck = "copilot_cli_trace_deck.__main__:main"
|
|
17
|
+
|
|
18
|
+
[tool.setuptools]
|
|
19
|
+
package-dir = {"" = "src"}
|
|
20
|
+
|
|
21
|
+
[tool.setuptools.packages.find]
|
|
22
|
+
where = ["src"]
|
|
23
|
+
|
|
24
|
+
[tool.uv]
|
|
25
|
+
package = true
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Copilot CLI Trace Deck package."""
|