pi-gauntlet 5.2.1 → 5.2.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 +4 -0
- package/package.json +1 -1
- package/skills/linear/SKILL.md +10 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v5.2.2 - 2026-09-01
|
|
4
|
+
|
|
5
|
+
- `linear` skill: the once-per-session `linearis issues usage` sweep no longer requires authentication. `usage` prints local help and makes no API call, so gating it on `auth status` skipped the cheap staleness check exactly when the agent was already degraded; it now runs whenever the binary is present. Also drops a dead "or the MCP path is in use" skip clause - the sweep sits inside the present-binary branch, and MCP is the fallback only when the binary is missing. Prose only, no code or config surface. Follow-up to #22; spec `doc/specs/2026-09-01-gh-22-linear-cli-verification.md` amended to match.
|
|
6
|
+
|
|
3
7
|
## v5.2.1 - 2026-09-01
|
|
4
8
|
|
|
5
9
|
- `linear` skill: seven `linearis` invocations corrected against the installed CLI (2026.7.0) - the nonexistent `issues comment-edit` becomes `issues edit <comment>`, `reply` takes a root discussion thread ID, `edit-reply` takes `<reply>`, `files upload` takes `<file>` (two occurrences), `attachments create`'s issue positional is optional, and gotcha (e) now documents two distinct relation flag sets (`relations add` has no `--blocked-by`). Setup is **preferred, not required**: a missing or unauthenticated `linearis` degrades and reports instead of blocking the run (MCP stays the fallback for a missing binary only). Drift resistance added in place - a once-per-session `linearis issues usage` consult for the issue-domain rows, a visible verified-against stamp under the quick-reference table, and one narrow parser-shape row in the failure table. Fixes #22. Spec: `doc/specs/2026-09-01-gh-22-linear-cli-verification.md`.
|
package/package.json
CHANGED
package/skills/linear/SKILL.md
CHANGED
|
@@ -38,15 +38,16 @@ No `linearis` and no MCP: report inability, never fabricate. MCP is the fallback
|
|
|
38
38
|
**missing binary only** (`command -v linearis` fails); an installed-but-unauthenticated
|
|
39
39
|
`linearis` re-auths rather than rerouting to MCP.
|
|
40
40
|
|
|
41
|
-
**Session sweep.** When `linearis` is present
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
41
|
+
**Session sweep.** When `linearis` is present, run `linearis issues usage` once per
|
|
42
|
+
session, before the first issue operation, and treat its output as ground truth for the
|
|
43
|
+
**issue-domain rows** of the section 3 table (Read, Search, List, Create, Update,
|
|
44
|
+
Discuss, Reply, Edit). Non-issue domains such as labels, teams, users, cycles, projects,
|
|
45
|
+
attachments, files are outside this call's coverage and fall to the section 8 backstop,
|
|
46
|
+
same as any row the sweep didn't run or couldn't reach. Authentication is not required -
|
|
47
|
+
`usage` prints local help and makes no API call, so the sweep still runs on an
|
|
48
|
+
installed-but-unauthenticated CLI. If the call errors or returns nothing, note once that
|
|
49
|
+
the issue-domain rows are unverified this session and continue. The sweep lives inside
|
|
50
|
+
the present-binary branch only - strictly after the override check above - so
|
|
50
51
|
`tracker: github | none | <unknown>` still means zero probing.
|
|
51
52
|
|
|
52
53
|
Optional: each `## Issue tracker` override key below, with its degradation.
|