Plugin Claude Code
Plugin marketplace listing 1 plugin: threadwork.
Plugin Claude Code
Plugin marketplace listing 1 plugin: threadwork.
Plugin Claude Code
Structured development workflows with persistent memory via Beads.
Instructions file
Instructions for JPM1118/Threadwork, covering claude.md, project overview, testing, architecture and plugin structure.
Agent
The code-reviewer agent evaluates completed project milestones against original specifications and quality standards.
Command
Start a brainstorming session to explore a feature or problem before implementation planning.
Command
Create a structured implementation plan using Beads as the source of truth. The plan becomes an epic with tasks that persist across sessions and conversation compaction.
Command
Execute the landing strategy determined by the finishing skill. This command handles the actual merge/PR creation and cleanup.
Command
Initialize Threadwork in the current project. This command detects your project's existing configuration and proposes sensible defaults.
Hook
Runs when a session starts on startup, resume, clear and compact, executing run-hook.cmd. From JPM1118/Threadwork.
Skill Claude CodeCodex
Create a structured implementation plan using Beads as the source of truth. The plan becomes an epic with tasks that persist across sessions and conversation compaction.
Skill Claude CodeCodex
Execute a single task from a Beads-backed plan using Test-Driven Development (RED-GREEN-REFACTOR flow).
Skill Claude CodeCodex
Explore a problem space and produce a design document that can inform implementation planning.
Skill Claude CodeCodex
Dispatch code review subagents at critical points and handle review feedback systematically.
Skill Claude CodeCodex
Use when tests have race conditions, timing dependencies, or inconsistent pass/fail behavior - replaces arbitrary timeouts with condition polling to wait for actual state changes, eliminating flaky tests from timing guesses.
Skill Claude CodeCodex
Make bugs "structurally impossible" by validating at every layer data traverses.
Skill Claude CodeCodex
Resolve multiple independent problems concurrently by deploying separate agents to different failure domains.
Skill Claude CodeCodex
Execute Beads-backed implementation plans with controlled, staged implementation and review checkpoints between batches.
Skill Claude CodeCodex
Assess feature completeness and determine the appropriate landing strategy (merge directly or create PR).
Skill Claude CodeCodex
Use when completing tasks, implementing major features, or before merging to verify work meets requirements - dispatches code-reviewer subagent to review implementation against plan or requirements before proceeding.
Skill Claude CodeCodex
Fix problems at their source rather than at symptom locations. This skill complements systematic-debugging with deeper investigation techniques.
Skill Claude CodeCodex
Use when you have developed a broadly useful skill and want to contribute it upstream via pull request - guides process of branching, committing, pushing, and creating PR to contribute skills back to upstream repository.
Skill Claude CodeCodex
Execute implementation plans using independent subagents per task with automated code review between tasks.
Skill Claude CodeCodex
Resolve issues through root cause discovery rather than random fix attempts. This skill prevents thrashing and achieves 95%+ first-time fix rates.
Skill Claude CodeCodex
Use when writing or changing tests, adding mocks, or tempted to add test-only methods to production code - prevents testing mock behavior, production pollution with test-only methods, and mocking without understanding dependencies.