mcptask-rails-runner 0.3.21-x86_64-linux → 0.3.22-x86_64-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 +57 -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: 9491db6f5086e5b5b2c9780e5fcdff5dd4067d3551b3bd3d78318160cacfc904
|
|
4
|
+
data.tar.gz: '091f02c865ff4aa0b856540fdf7ae679b56fdac78ef9c067145248ecebe0cc57'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '09b2bdc13c96b7a30a9ee85fc05e7a08ccbe82208225bc9f5887fa0c7a7208f242f9c87977e42b0f3f28eaa66c51e6beafe00239412ac85b285584bd28d1402f'
|
|
7
|
+
data.tar.gz: 0d012fd6af2a98bfac657a7bcb970325d856fd610dd6723fff5a2515de75821708e2ab331690c7a20c4312274885df7a88c5041b8b390c889c2db4b803dc84a8
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,63 @@ 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.22
|
|
9
|
+
|
|
10
|
+
No wrapper changes. Full notes in
|
|
11
|
+
[mcptask-releases v0.3.22](https://github.com/jchsoft/mcptask-releases/releases/tag/v0.3.22).
|
|
12
|
+
|
|
13
|
+
**Upgrading takes two commands this time, not one.** The usual
|
|
14
|
+
`mcptask_runner update --self` replaces the binary, and that is enough for the
|
|
15
|
+
loop changes below. It is *not* enough for the skills and helpers: those are a
|
|
16
|
+
data pack the binary carries, and they are only written into a project by
|
|
17
|
+
|
|
18
|
+
```
|
|
19
|
+
mcptask_runner update
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
Run it in each host project after updating the binary. Skipping it leaves the
|
|
23
|
+
old `/test-runner` and `/ci-runner` in place, and on a project that is not
|
|
24
|
+
Rails those name commands it cannot run — which is the very thing this version
|
|
25
|
+
fixes. A host that has locally edited a skill keeps its edit; `FORCE=1` takes
|
|
26
|
+
the new one and leaves a `.bak`.
|
|
27
|
+
|
|
28
|
+
Binary changes carried by this version:
|
|
29
|
+
|
|
30
|
+
- **The bundled CI and test skills stop naming a framework.** `/test-runner`
|
|
31
|
+
and `/ci-runner` used to spell out `bin/rails test`, `test:system` and
|
|
32
|
+
RuboCop, and `check_test_lock` recognised a running suite by six regexes,
|
|
33
|
+
five of which were Ruby. On a Django, Node or Swift host the commands did
|
|
34
|
+
not run and the concurrency guard waved every real test command through —
|
|
35
|
+
blind on exactly the projects a universal runner exists for. Both now read
|
|
36
|
+
what the project declares in `.claude/test-commands.json`, which
|
|
37
|
+
`mcptask_runner init` writes and `update` backfills; when the file is absent
|
|
38
|
+
the toolchain is detected from `go.mod`, `Gemfile`, `package.json`,
|
|
39
|
+
`manage.py`, `pyproject.toml` or `Package.swift`, and when nothing is
|
|
40
|
+
recognised the runner says so instead of guessing a command.
|
|
41
|
+
|
|
42
|
+
- **Two more places the prompt spoke Rails to everyone.** The auto-squash
|
|
43
|
+
workflow told every project to run `bin/rails assets:precompile
|
|
44
|
+
RAILS_ENV=test` between its unit and system suites, and the manual
|
|
45
|
+
screenshot step named a Rails class. Neither is measured by what it breaks —
|
|
46
|
+
the first costs a turn or invites a plausible substitute, the second is
|
|
47
|
+
silently ignored — but both contradict the claim the product makes.
|
|
48
|
+
|
|
49
|
+
- **A failed task now waits an hour, not the rest of the day.** A task that
|
|
50
|
+
fails is set aside and the runner moves on; the day no longer ends over one
|
|
51
|
+
piece.
|
|
52
|
+
|
|
53
|
+
- **The dashboard can take a piece off the skip list.** A piece set aside
|
|
54
|
+
earlier in the day can be released from the card, and the runner picks it up
|
|
55
|
+
again without a restart.
|
|
56
|
+
|
|
57
|
+
- **A closed socket is described by whoever actually saw it close.** Two paths
|
|
58
|
+
reported a dropped dashboard connection — the read loop, which knows the
|
|
59
|
+
close code the server sent, and a failed write, which knows only that the
|
|
60
|
+
socket was gone. Whichever finished first wrote the notice, so a close with
|
|
61
|
+
a code could be reported as a bare transport error. The reader's account now
|
|
62
|
+
wins, which is what makes "the server closed it, code 1001" trustworthy when
|
|
63
|
+
you are deciding whether to go and look at the server.
|
|
64
|
+
|
|
8
65
|
## 0.3.21
|
|
9
66
|
|
|
10
67
|
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.22"
|
|
14
14
|
end
|
data/libexec/mcptask_runner
CHANGED
|
Binary file
|