Agent skill · Testing & QA

script-kit-agent-workflow

Autonomous fix-verify workflow for Script Kit GPUI. Use when fixing bugs, making changes, or completing tasks. Covers the mandatory build-test-verify loop, logging modes, and session completion protocol.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill script-kit-agent-workflow-johnlindquist-script-kit-next --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 3 KB
Bundled scripts: none
Path: skills/agent/script-kit-agent-workflow-johnlindquist-script-kit-next/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Script Kit Agent Workflow Mandatory workflow for all code changes. Do NOT ask users to test. Do NOT skip verification. ## Quick-Start Checklist (Do First) 1. Read CLAUDE.md before changing code 2. Check `.hive/issues.jsonl` for tasks/context 3. TDD: write failing test → implement → refactor 4. Update bead status when starting/completing work 5. Include `correlation_id` in all log entries/spans 6. UI changes: test via stdin JSON protocol (never CLI args) 7. Before every commit: `cargo check && cargo clippy --all-targets -- -D warnings && cargo test` ## The Fix-Verify Loop ``` 1. EXPLORE: Understand the problem - Use Task tool with explore agent for codebase search - Read relevant files, identify root cause before coding 2. FIX: Make the code change - Keep changes minimal and focused 3. BUILD: Compile and verify cargo check && cargo clippy --all-targets -- -D warnings 4. LAUNCH: Run the app with logging echo '{"type":"show"}' | SCRIPT_KIT_AI_LOG=1 ./target/debug/script-kit-gpui 2>&1 5. CHECK LOGS: Verify the fix grep -i "keyword" ~/.scriptkit/logs/script-kit-gpui.jsonl 6. VISUAL VERIFY (if UI change): - Write test script with captureScreenshot() - Save PNG to ./test-screenshots/ -

What's inside
Steps it walks through
  1. Quick-Start Checklist (Do First)
  2. The Fix-Verify Loop
  3. Log Modes
  4. Anti-Patterns (Never Do These)
  5. Success Indicators
  6. Session Completion ("Landing the Plane")
  7. References
Ships with 1 file
  • metadata.json
Commands it runs
git pull --rebase && git push && git status
More from claude-skill-registry
All skills →
About this skill
What does the script-kit-agent-workflow skill do?

Autonomous fix-verify workflow for Script Kit GPUI. Use when fixing bugs, making changes, or completing tasks. Covers the mandatory build-test-verify loop, logging modes, and session completion protocol.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill script-kit-agent-workflow-johnlindquist-script-kit-next --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going