Pro Workflow
A Claude Code plugin with correction memory: every fix becomes a rule, plus topic wikis, hooks and dozens of skills
Install
/plugin marketplace add rohitg00/pro-workflow
/plugin install pro-workflow@pro-workflowThis is third-party code. Review the repository files before installing.
What it does
The plugin keeps everything in a single SQLite store. When you correct the agent it proposes a rule, which after approval is saved and loaded at the start of every session. /wiki init creates persistent topic wikis with a full-text index, and relevant snippets are injected when the topic comes up again. Hooks add git and secret guards, cost tracking and state saving before compaction, and /wrap-up audits changes and writes a handoff doc at the end of a session.
Who it is for. For developers who work in Claude Code daily and are tired of repeating the same corrections.
Good fit when
- The agent repeats the same mistakes across sessions
- You need a persistent knowledge base on a topic reachable from any session
- You want ready hooks against secret leaks and context loss
Not a fit when
- You need one narrow skill rather than a large bundle with hooks
- Third-party hooks in Claude Code are not allowed on your team
Example request
Remember this rule: do not mock the database in testsLimitations
The full bundle with hooks and the store works in Claude Code; other agents get only skills and commands via skills add. The SQLite components need an npm build, otherwise /doctor reports KB: missing. The many hooks noticeably change agent behavior.
How to disable. Uninstall the pro-workflow plugin via /plugin in Claude Code.
Security check
- Installs hooks that run scripts on session events
- Keeps rules and notes history in a local database
README in short
The README frames the problem of repeated corrections and a SQLite-based answer: correction memory, knowledge wikis and quality gates. It installs via the Claude Code plugin marketplace or skills add for other agents, with a manual option. First commands are listed: /doctor, /wrap-up, /learn-rule and /wiki init. GitHub does not detect a license.
FAQ
What if /doctor reports KB: missing?
Go to the plugin folder and run npm install and npm run build, as the README says.
Does it work in Cursor?
Skills and commands install via npx skills add rohitg00/pro-workflow, but hooks and the store are Claude Code only.
Related
Open-source personal AI assistant on your own machine: answers in Telegram, Slack, Discord and WhatsApp, extended with skills and plugins
A self-improving agent from Nous Research with a TUI, messaging gateway, cron jobs and skills it writes itself
An open source coding agent for the terminal and desktop with build and plan modes
Anthropic's coding agent for the terminal, IDE and GitHub: understands your codebase, runs tasks and handles git