mcptask-rails-runner 0.3.4-aarch64-linux → 0.3.5-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 +26 -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: 88707e270a19a7d7eea09955ab5a98a1f5749781e17f6948b295fb9469e151c1
|
|
4
|
+
data.tar.gz: 7bd7dc041c22d377010276d6070327742031e15c7f14670406034747a3ca1f75
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8240a0d51c1a2eec19c7070ef3b15d316da20864e91ab7fb79a7bce89156f7fffd11faed89b989e734b8390b2ff457b87de45e09f5ea4058153d63f7aaff55a9
|
|
7
|
+
data.tar.gz: 31a38c09bbccba2dda2d4ca99ec13cc8aa196fdbbc69afb816287e81ca52e75428c2b9cbfd2453ab8020431d69d4ca54cfc6e629774c5dc7cdb5f2ffc051936a
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,32 @@ 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.5
|
|
9
|
+
|
|
10
|
+
No wrapper changes — this release carries a new binary. Full notes in
|
|
11
|
+
[mcptask-releases v0.3.5](https://github.com/jchsoft/mcptask-releases/releases/tag/v0.3.5);
|
|
12
|
+
what a host running the scheduled job will notice:
|
|
13
|
+
|
|
14
|
+
- **A run that overflows its context now reports what it produced.** A task
|
|
15
|
+
whose pull request was already open was being called `error` with "task
|
|
16
|
+
exceeds token limit". That filed a bug piece for work that had shipped, and
|
|
17
|
+
because the quota decider stops a day on any error, one nearly-finished task
|
|
18
|
+
ended the rest of the day's runs. It now reports `overflow_pr_open`, the task
|
|
19
|
+
stays in progress, and the loop carries on to the next one.
|
|
20
|
+
- **The session that replaces an overflowed one is told how to survive.** The
|
|
21
|
+
in-process restart used to get one sentence of encouragement while the
|
|
22
|
+
cross-process handoff carried the whole context budget; both now get the same
|
|
23
|
+
rules, plus a measured account of where the previous session's window went —
|
|
24
|
+
which file it re-read ten times, which edit kept missing.
|
|
25
|
+
- **The runner now logs what each attempt cost.** One `[context_cost]` line per
|
|
26
|
+
attempt: tool calls, tool output in kB, files read whole, ranged reads, failed
|
|
27
|
+
edits. Diagnosing the run that prompted all of the above meant grepping 1.3 MB
|
|
28
|
+
of stream by hand.
|
|
29
|
+
- **Hosts pinned to a non-Claude model get their dashboard todo list back.** On
|
|
30
|
+
third-party models behind a local proxy the child never called `TodoWrite`, so
|
|
31
|
+
the card rendered empty; the instruction is now explicit for those hosts and
|
|
32
|
+
stays out of the way for Claude's own models, which do it natively.
|
|
33
|
+
|
|
8
34
|
## 0.3.4
|
|
9
35
|
|
|
10
36
|
The install stops taking things away from the host it is setting up. All three
|
|
@@ -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.5"
|
|
14
14
|
end
|
data/libexec/mcptask_runner
CHANGED
|
Binary file
|