Open
Conversation
Replace the complex install/sync CLI with a plugin-based delivery model. The MCP server remains the core runtime, now delivered through platform plugins instead of a CLI installation step. Key changes: - Add Claude Code plugin (plugins/claude/) with skill, hooks, and MCP config - Add Gemini CLI extension (plugins/gemini/) with TOML-frontmatter skill - Extract shared content to platform/ (skill-body.md, hooks/) - Remove CLI install/sync commands and supporting code (adapters, detector, generator, hooks_syncer, templates) - Simplify serve.py to work without config.yml - Move jinja2, gitpython, rich from runtime to dev dependencies - Update marketplace.json with deepwork plugin entry - Update all documentation (CLAUDE.md, README.md, architecture.md) - Delete obsolete .deepwork/config.yml, schemas/, doc_specs/ - Update tests: replace install/adapter tests with plugin structure tests 416 tests pass, 1 skipped (full e2e requiring external Claude CLI). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
nhorton
commented
Feb 21, 2026
| "name": "DeepWork" | ||
| }, | ||
| "category": "workflow", | ||
| "keywords": ["workflow", "automation", "quality-gates", "multi-step"], |
Contributor
Author
There was a problem hiding this comment.
Suggested change
| "keywords": ["workflow", "automation", "quality-gates", "multi-step"], | |
| "keywords": ["workflow", "automation", "quality-gates", "multi-step", "planning"], |
nhorton
commented
Feb 21, 2026
Contributor
Author
There was a problem hiding this comment.
I think this file can be removed. The utlity is not worth it, so just remove the use of this.
nhorton
commented
Feb 21, 2026
Contributor
Author
There was a problem hiding this comment.
This should go away too
nhorton
commented
Feb 21, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
plugins/claude/) and Gemini CLI extension (plugins/gemini/) with shared content extracted toplatform/Details
New: Plugin architecture
plugins/claude/— Claude Code plugin with.claude-plugin/plugin.json, skill, hooks (with symlink to sharedplatform/hooks/), and.mcp.jsonplugins/gemini/— Gemini CLI extension with TOML-frontmatter skillplatform/skill-body.md— canonical skill body (source of truth for both platforms)platform/hooks/check_version.sh— shared hook script (symlinked from bothplugins/claude/andsrc/deepwork/hooks/)Simplified CLI
main.pynow only registersserveandhookcommandsserve.pyworks withoutconfig.yml— creates.deepwork/tmp/lazilyrichdependency from CLI (replaced with plainclick.echo)Deleted code
src/deepwork/cli/install.py,sync.pysrc/deepwork/core/adapters.py,detector.py,generator.py,hooks_syncer.pysrc/deepwork/templates/(entire directory).deepwork/config.yml,.deepwork/schemas/,.deepwork/doc_specs/Updated documentation
CLAUDE.md,README.md,doc/architecture.md,CLAUDE_PLUGINS_README.mdall reflect the new plugin-based architectureTest plan
uv run pytest tests/ --ignore=tests/integration— 416 passed, 1 skipped/deepworkskill triggers correctly in a new Claude Code session with the plugin enabledget_workflows,start_workflow,finished_step) work viadeepwork servehooks.json🤖 Generated with Claude Code