mcptask-rails-runner 0.3.8-aarch64-linux → 0.3.9-aarch64-linux
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +43 -0
- data/lib/mcptask_rails_runner/version.rb +1 -1
- data/libexec/mcptask_runner +0 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: aae84a79d17e7f29d6fb265da68121b27134861a43208e753aba49c772d2763c
|
|
4
|
+
data.tar.gz: c2de18ebfad6f84f7a812c293e13d906df1bdd10af22eba84c57711818561aab
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a85de88512671ed7533ac386f7920feb710ac19808bef6a4d3df26b4ed1d89b6270c426bdf056715fcfc1f1f25a030a8fcdd2fe9d2177433b85b93160db4c8e8
|
|
7
|
+
data.tar.gz: 358d04118bc25ce52d6a9a1b16ed8b4c6982e96d26909dbcb257dcdd8e7e0b014989e772c6607c71dd30a6ac2aa6bfd931e408f8c8f741c81234f4ead6b538e9
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,49 @@ entries below describe wrapper changes only. Binary changes are listed in the
|
|
|
5
5
|
[mcptask-releases](https://github.com/jchsoft/mcptask-releases/releases)
|
|
6
6
|
release notes for the same tag.
|
|
7
7
|
|
|
8
|
+
## 0.3.9
|
|
9
|
+
|
|
10
|
+
No wrapper changes. Full notes in
|
|
11
|
+
[mcptask-releases v0.3.9](https://github.com/jchsoft/mcptask-releases/releases/tag/v0.3.9).
|
|
12
|
+
|
|
13
|
+
- **A ticket the runner declines as too large no longer ends the working day.**
|
|
14
|
+
Reading a bug report and concluding that it is a multi-day feature is a fair
|
|
15
|
+
judgement to reach, but the only word the runner had for it was "failure" — and
|
|
16
|
+
"failure" stops the loop. One such call, made 96 seconds into a run, exited the
|
|
17
|
+
process at 10:17 with seven hours of the day left: exit code zero, a clean run
|
|
18
|
+
in the scheduler's record, and nothing anywhere to say a day had been given up
|
|
19
|
+
over one oversized ticket. The judgement now has an outcome of its own. The
|
|
20
|
+
agent writes its scope assessment on the piece, logs the analysis as the work it
|
|
21
|
+
was, blocks the ticket so triage stops offering it, and the loop moves to the
|
|
22
|
+
next task. A second refusal of the same ticket does still stop the loop —
|
|
23
|
+
that means the block did not take — and it says so rather than exiting quietly.
|
|
24
|
+
|
|
25
|
+
- **A task belonging to a different project is discarded instead of worked.** The
|
|
26
|
+
runner never checked that the piece triage picked came from the project named in
|
|
27
|
+
CLAUDE.md. Upstream, one runner's answer was reaching every connected client, so
|
|
28
|
+
a runner installed for one project picked up another project's task and set
|
|
29
|
+
about it. Triage now reports which project the piece it fetched belongs to, and
|
|
30
|
+
a mismatch is thrown away.
|
|
31
|
+
|
|
32
|
+
- **One launcher log file per run, instead of one that grows forever.** Nothing
|
|
33
|
+
ever truncated the per-project log: 401 MB across projects on one machine, 277 MB
|
|
34
|
+
of it in a single file, and diagnosing a run meant locating its start marker
|
|
35
|
+
inside all of that. Each run gets its own file now, pruned at 30 days or 500 MB
|
|
36
|
+
per project, whichever bites first. Existing installs keep appending to their old
|
|
37
|
+
file until install is re-run, and that file is left alone rather than deleted —
|
|
38
|
+
the disk space is the operator's to reclaim.
|
|
39
|
+
|
|
40
|
+
- **The installer says which account a scheduled job will authenticate as.** On a
|
|
41
|
+
host carrying more than one mcptask account, regenerating a job could silently
|
|
42
|
+
swap its identity: nothing failed, nothing was logged as wrong, and the work
|
|
43
|
+
landed on the wrong dashboard until somebody decoded the token by hand.
|
|
44
|
+
|
|
45
|
+
- **The bundled skills follow the mcptask parameter renames.** The MCP tools are
|
|
46
|
+
moving to names that state which id form each parameter carries. The skills ship
|
|
47
|
+
the new names now with the old ones kept as a transitional note, so a host that
|
|
48
|
+
updates before the server change still matches whichever names its own server
|
|
49
|
+
currently expects.
|
|
50
|
+
|
|
8
51
|
## 0.3.8
|
|
9
52
|
|
|
10
53
|
No wrapper changes. Full notes in
|
|
@@ -10,5 +10,5 @@ module McptaskRailsRunner
|
|
|
10
10
|
# Binary::INSTALL_DIR. So the pin is per project and per foreground rake
|
|
11
11
|
# invocation; the installed copy is per machine, and the newest binary any of
|
|
12
12
|
# those projects offers is the one that stays.
|
|
13
|
-
VERSION = "0.3.
|
|
13
|
+
VERSION = "0.3.9"
|
|
14
14
|
end
|
data/libexec/mcptask_runner
CHANGED
|
Binary file
|