[rig-tasks] Add 10 rig samples — 2026-08-18 - #448
Draft
github-actions[bot] wants to merge 1 commit into
Draft
Conversation
Generated by daily rig evaluator:
- 431: JSONL File Analyzer (reused)
- 432: NPM Peer Dep Checker (reused)
- 433: TypeScript Barrel Module Writer (reused)
- 434: Git Remote Metadata Inspector (reused)
- 435: OS Environment Variable Scanner (reused)
- 436: Sequential Commit Pipeline (reused)
- 437: TypeScript Tuple Pattern Extractor (new)
- 438: TypeScript Interface Stub Writer (new)
- 439: Git Grep Search Workflow (new)
- 440: JSON Union Type Inferrer (new)
All 10 passed typecheck. Three programs required fixes:
- Task 6 (436): workflow body used (call, input) positional args → fixed to ({call}) destructuring + meta required
- Task 7 (437): string array concat type error → added explicit string[] annotations
- Task 9 (439): workflow body signature and missing meta → fixed
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Added 10 new rig sample files to
skills/rig/samples/.Typecheck failures
Three programs required fixes before final typecheck:
436-sequential-commit-pipeline — Workflow body used positional
(call)instead of destructured({ call });metafield was missing. Fixed by switching to({ call })destructuring and adding requiredmeta: { name, description }.437-ts-tuple-pattern-extractor —
content.match(regex) ?? []returnedRegExpMatchArray | []which TypeScript typed asnever[], breaking.concat(). Fixed by adding explicitstring[]type annotation.439-git-grep-search-workflow — Same workflow body destructuring issue and missing
metafield as 436. Fixed identically.Tasks run