Expose canonical user URLs in team and workspace member JSON so the skill can resolve mentions without guessing profile slugs. Document team-first URL mentions and Linear collapsible syntax. Add a stubbed Claude forward eval that captures submitted Markdown. The frozen cases improved from 1/4 to 4/4 while preserving the verbatim-body control. Fixes #112
linear-cli skill eval
Measures whether the agent skill in skills/linear-cli/ leads a coding agent to use dedicated CLI subcommands instead of falling back to linear api (raw GraphQL) for common tasks — the concern raised in #207.
The subject agent is the OpenAI Codex CLI (codex exec), run once per trial in an isolated environment with a shimmed linear binary that records every invocation and returns canned successes. Grading is deterministic — no LLM judging.
What a run does
For each case × trial, the runner:
- Creates a fresh trial dir with its own
CODEX_HOME(copied codexauth.json+ the skill variant under test, nothing else), a fakeHOME(codex also discovers skills in~/.agents/skills— a real leak we verified), and a work dir seeded with every file infixtures/(markdown, a PNG screenshot, a log file). - Spawns
codex execwith an explicit environment:PATH= the recording shims (linear,curl,npx,npm) + the codex/deno bin dirs +/usr/bin:/bin; no Linear credentials anywhere. By default the subject runs under codex'sworkspace-writesandbox, which denies network and out-of-workdir writes to everything it executes. - Records the shim invocation log, codex's JSON event stream (for bypass detection and to verify the skill was actually read), the final answer, and whether fixtures were tampered with.
The linear shim passes --help/--version/schema through to the real CLI in this repo (accurate discovery, no network), returns canned successes for task commands, and fails closed on unknown subcommands. Canned output is consistency-aware: issue view reflects updates made earlier in the same trial (by scanning the trial's own log), query output honors the requested state/--unassigned filters, and issue update/create echo back what changed — otherwise subjects notice the fake world contradicting their edits and escalate to raw GraphQL to investigate, which contaminates the route signal (this exact artifact invalidated the first baseline run during harness development). Mutations never touch anything real; curl/npx/npm are logged and fail like a dead network.
Cases
See cases.ts — frozen before the baseline run. Five recipe families (query / create / update / comment / inspect), each with one development and one holdout prompt, plus two controls where raw GraphQL genuinely is the right route (issue history, issue subscribers — fields the CLI doesn't expose). Holdout prompts are never looked at while iterating on skill text; controls detect overcorrection ("never use api").
Experiment 2 (image attachments) adds a sixth family, image, plus a third control:
image-development— "attach the screenshot … so it is visible on the issue": the natural trap phrasing.linear issue attachlooks right but creates a sidebar link card that does not render inline; the correct route isissue comment add --attach, which uploads and embeds the image as inline markdown.image-holdout— the same goal phrased as adding a comment with the screenshot visible inline.control-sidebar-attachment— a log file that teammates should download: hereissue attachIS the right route. Detects overcorrection ("never use issue attach"). Graded on route plus positional arguments (issue id and file path), with the subcommand's flags stripped from argv first.
Recovery counts: a trial that first runs issue attach and then a correct issue comment add --attach passes — the real-world outcome is what matters — provided it never falls back to GraphQL or direct HTTP and leaves fixtures intact. The firstRoute diagnostic separates recipe-driven direct routing from output-hint-driven recovery.
Grading
grade.ts classifies each trial from the recorded invocations:
- routeOk — some invocation matches the case's expected dedicated subcommand (lookups like
issue viewbefore an update don't hurt), and the trial never usedlinear api, curl/npx/npm, or an HTTP bypass visible in the event-stream commands. For controls: usedlinear api, not direct HTTP. - fullSuccess (primary outcome) — routeOk + the taught subcommand with all required flags (order/alias insensitive; file flags must point at the expected fixture) + fixtures unmodified. For controls: the GraphQL query mentions the required field family.
Pre-declared outcome rules, set before the baseline run:
- The change is confirmed if post-change full success on supported tasks improves over baseline with one-sided Fisher exact p < 0.05, the holdout subset does not regress, and controls stay ≥ 5/6 on
linear api. - If the baseline already achieves ≥ 90% dedicated-route rate, the premise of #207 did not reproduce under this setup; that is reported as the finding rather than manufacturing harder prompts after the fact.
- Trials of one prompt are correlated; case-level counts are reported alongside trial-level totals.
Pre-declared outcome rules for experiment 2 (image attachments), set before its baseline run (image-baseline / image-post-change — experiment 1's committed baseline.jsonl / post-change.jsonl / comparison.md are frozen artifacts and are not rerun or overwritten):
- Primary outcome: image-family full success (
image-development+image-holdout, 3 trials each → 6 per condition). Both conditions run all cases, so experiment-1 families double as a regression guard for the new skill text. - Confirmed if post-change image-family full success is ≥ 5/6, each image case is ≥ 2/3, the holdout case does not regress, and the improvement over baseline has one-sided Fisher exact p < 0.05. The p-value is explicitly exploratory — trials of one prompt are correlated — so per-case counts are co-primary evidence.
- Premise did not reproduce if baseline image-family full success is already ≥ 5/6; that is reported as the finding, with no post-hoc prompt/grading/threshold changes.
- Partial baseline (2/6–4/6): at this n, Fisher cannot reach significance for most true improvements. The result is reported descriptively (per-case baseline vs post counts, plus the
firstRoutedirect-vs-recovery split) and claims at most "consistent with improvement", not confirmation. - Guards, post-change:
control-sidebar-attachmentmust stay 3/3 onissue attach; the two GraphQL controls must stay ≥ 5/6 onlinear api; no experiment-1 supported case may fall below 2/3 full success. - Any grading or prompt correction after the experiment-2 baseline invalidates it and requires a rerun.
The shim's canned task output is version-matched infrastructure, not part of the frozen experimental variables: it mirrors the real CLI's messaging for the repo state under test, so the baseline runs against canned output mirroring the pre-change CLI and the post-change condition against output mirroring the changed CLI (the changed runtime messaging is itself part of the intervention being measured). Prompts, expectations, and grading are the frozen part.
Running
Requires a logged-in codex CLI. Costs real model tokens (~36 low-effort runs per condition); never run in CI.
# baseline against the committed skill
deno task skill-eval --condition baseline --skill-dir skills/linear-cli
# after changing the skill
deno task skill-eval --condition post-change --skill-dir skills/linear-cli
# grade + compare
deno run --allow-read --allow-write evals/linear-cli-skill/grade.ts \
--compare evals/linear-cli-skill/results/baseline.jsonl \
evals/linear-cli-skill/results/post-change.jsonl \
-o evals/linear-cli-skill/results/comparison.md
Experiment 2 used the same flow under its own condition names (image-baseline, image-post-change, compared into results/image-comparison.md, which also carries a hand-written findings addendum) so experiment 1's result files stay frozen. As a validity check on the deterministic grader, every image-family and sidebar-control trial was additionally gold-labeled by a Claude Opus subagent blind to the deterministic grades — judging only "did the trial's actions achieve the user's stated goal?" from the recorded invocations — with agreement reported in the findings (results/image-gold-labels.jsonl).
Useful flags: --trials N, --cases id,id (subset for smoke tests), --effort low|medium|high, --model <name>, --concurrency N (default 2), --sandbox workspace-write|yolo (fallback if the codex sandbox is unavailable on your machine), --codex-bin <path>.
Results land in results/<condition>.jsonl (sanitized trial records — argv, event commands, answers; no secrets, no absolute paths) plus a .meta.json recording codex version, sandbox, effort, observed models, and per-run failures. Raw event streams stay in the run's temp dir only.
Known limitations
- The shim validates subcommands but not flags, so a hallucinated flag "succeeds" where the real CLI would error. Route choice — the thing under measurement — is unaffected; flag correctness is still graded from the log.
- Control grading checks the query mentions the required field family, not full GraphQL semantics (entity, pagination, variables). With 6 control trials per condition, eyeballing the committed records covers the rest.
- Canned outputs are plausible but static; an agent that cross-checks results may notice. Trials are graded on tool choice, which is decided before any output is seen.
- The shim source is readable by the subject (it's an executable on PATH); one baseline trial did read it, without changing its behavior. A subject that games the eval after reading the shim would be visible in the committed event commands.
- Results are specific to the recorded codex version, model, and reasoning effort.
Claude Markdown forward eval
run-claude-markdown.ts is a small forward test for Linear-specific Markdown behavior. It drives Claude Code through the local claude-agent adapter in safe mode, explicitly points Claude at a copied skill under test, and puts recording shims first on the subject shell's PATH. The subject shell receives an isolated home/config without Linear credentials, and each trial records and verifies that isolation before continuing. CLI discovery is answered offline. The fake linear command captures the submitted --body or --body-file Markdown; no Linear API mutation is performed.
deno task skill-eval-claude-markdown \
--condition mention-post-change \
--skill-dir skills/linear-cli
The frozen cases cover two differently phrased user mentions, one collapsible section, and a verbatim-comment control. The deterministic grader requires the canonical plain profile URL returned by the stubbed team-member lookup, rejects literal @name substitutes and GraphQL mutations, checks the balanced +++ [title] / +++ syntax, and ensures the new guidance does not rewrite content requested verbatim. Each result records a SHA-256 hash of the exact SKILL.md under test. Issue #112's single-trial-per-case baseline scored 1/4; after the skill update the same cases scored 4/4. See results/mention-baseline.jsonl and results/mention-post-change.jsonl for the captured commands and Markdown.