Skip to content

Workflow Plugin

The workflow plugin provides a collection of skills and agents to support everyday development workflows in Claude Code — from logging your progress to walking through code changes and testing your UI in a real browser.

Install the plugin via the Claude Code marketplace:

Terminal window
claude plugin install workflow@cctools-plugins
TypeNameWhat It Does
Skill/code-walk-thruWalk through files in your editor to explain code or show changes
Skill/log-workLog work progress to WORKLOG/YYYYMMDD.md
Skill/make-issue-specCreate task specs at issues/YYYYMMDD-topic.md
Skill/socratic-quizGuided Socratic questioning to deepen understanding of a topic
Agentui-testerBrowser-based UI testing via Chrome DevTools MCP

Walks through files in your editor to explain code or demonstrate changes. Useful for:

  • Onboarding teammates to a codebase
  • Reviewing what changed in a feature branch
  • Creating guided tours of complex logic

Simply invoke the skill and describe which files or changes you want to walk through:

/code-walk-thru walk me through the auth module

Logs your work progress to a daily file at WORKLOG/YYYYMMDD.md. This creates a structured record of what you accomplished, making it easy to write status updates, standup notes, or retrospectives.

/log-work implemented user auth and wrote tests

Each entry is appended to the day’s log file with a timestamp.

Creates structured task specifications at issues/YYYYMMDD-topic.md. Use this to document upcoming work, bugs, or feature requests in a consistent format.

/make-issue-spec add pagination to the users API

The generated spec includes sections for the problem description, proposed solution, acceptance criteria, and implementation notes.

Guides you to deeper understanding of a topic through adaptive, one-at-a-time questions rather than direct explanation. Useful for:

  • Testing your grasp of a concept before relying on it
  • Reasoning your way into an unfamiliar codebase or system
  • Studying for interviews or technical reviews

Trigger phrases include “quiz me”, “help me understand”, “teach me”, and “test my understanding”. You can also invoke the skill directly:

/socratic-quiz help me understand how the
WebSocket reconnect logic works

The skill asks one question at a time, adapts up or down based on your answers, and never reveals the answer directly — the goal is understanding, not evaluation. It ends with a brief summary of what you demonstrated and where to dig deeper, not a grade.

A sub-agent that performs browser-based UI testing using the Chrome DevTools MCP (Model Context Protocol) server. It can:

  • Navigate to pages and take screenshots
  • Click buttons, fill forms, and interact with the UI
  • Verify visual elements and page content
  • Run end-to-end test scenarios

To invoke the agent, describe the UI test you want to run:

Use your ui-tester agent to verify the login
page renders correctly and the form submits.