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.
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.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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/ -
- Quick-Start Checklist (Do First)
- The Fix-Verify Loop
- Log Modes
- Anti-Patterns (Never Do These)
- Success Indicators
- Session Completion ("Landing the Plane")
- References
git pull --rebase && git push && git status
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.
