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:
claude plugin install workflow@cctools-pluginsSkills and Agents
Section titled “Skills and Agents”| Type | Name | What It Does |
|---|---|---|
| Skill | /code-walk-thru | Walk through files in your editor to explain code or show changes |
| Skill | /log-work | Log work progress to WORKLOG/YYYYMMDD.md |
| Skill | /make-issue-spec | Create task specs at issues/YYYYMMDD-topic.md |
| Agent | ui-tester | Browser-based UI testing via Chrome DevTools MCP |
Skill Details
Section titled “Skill Details”/code-walk-thru
Section titled “/code-walk-thru”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/log-work
Section titled “/log-work”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 testsEach entry is appended to the day’s log file with a timestamp.
/make-issue-spec
Section titled “/make-issue-spec”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 APIThe generated spec includes sections for the problem description, proposed solution, acceptance criteria, and implementation notes.
ui-tester Agent
Section titled “ui-tester Agent”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 loginpage renders correctly and the form submits.