@mkhuda/agent-ps 0.6.0 → 0.6.2
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 +21 -0
- package/README.md +1 -1
- package/agent-ps +0 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.6.2
|
|
4
|
+
|
|
5
|
+
A stop that worked is no longer reported as a failure.
|
|
6
|
+
|
|
7
|
+
- Killing a session's children leaves them waiting to be collected by a parent
|
|
8
|
+
that is itself about to be killed, and `ps` still lists them. They were
|
|
9
|
+
counted as survivors, so stopping a Claude session with six MCP servers under
|
|
10
|
+
it reported one of seven stopped when all seven had gone.
|
|
11
|
+
|
|
12
|
+
## 0.6.1
|
|
13
|
+
|
|
14
|
+
Stopping a session now stops what it started.
|
|
15
|
+
|
|
16
|
+
- `k` in the table stops the whole process tree, as `agent-ps stop` already
|
|
17
|
+
did. It was reading the agent rows rather than the process table, so a
|
|
18
|
+
session's MCP servers and helpers were left orphaned.
|
|
19
|
+
- A stop is no longer reported as failed when it worked. SIGKILL is delivered
|
|
20
|
+
after `os.kill` returns, and the check ran before the kernel had finished.
|
|
21
|
+
- When something does survive, the message names the PIDs instead of only
|
|
22
|
+
counting them.
|
|
23
|
+
|
|
3
24
|
## 0.6.0
|
|
4
25
|
|
|
5
26
|
Reclaiming what ended sessions leave behind.
|
package/README.md
CHANGED
|
@@ -376,7 +376,7 @@ install fetches. The build is reproducible: the same source always produces the
|
|
|
376
376
|
same bytes, so the committed executable can be checked against the tree.
|
|
377
377
|
|
|
378
378
|
```
|
|
379
|
-
|
|
379
|
+
fb81708bdedfee2dea7f83bf92cc3b4f32596a02af7d2e6383c92acd57790a4b agent-ps
|
|
380
380
|
```
|
|
381
381
|
|
|
382
382
|
Adding an agent takes one class and one line in the registry. See
|
package/agent-ps
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mkhuda/agent-ps",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.2",
|
|
4
4
|
"description": "A process table for coding agent sessions. Claude Code, Codex, OpenCode, Hermes, Pi, CommandCode and Copilot in one view, with models, idle time, disk use and one key to stop them.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|