├── .claude-plugin └── plugin.json ├── .dev-marketplace └── .claude-plugin │ └── marketplace.json ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── assets └── demo.gif ├── hooks └── hooks.json ├── scripts └── improve-prompt.py ├── skills └── prompt-improver │ ├── SKILL.md │ └── references │ ├── examples.md │ ├── question-patterns.md │ └── research-strategies.md └── tests ├── test_hook.py ├── test_integration.py └── test_skill.py /.claude-plugin/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severity1/claude-code-prompt-improver/HEAD/.claude-plugin/plugin.json -------------------------------------------------------------------------------- /.dev-marketplace/.claude-plugin/marketplace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severity1/claude-code-prompt-improver/HEAD/.dev-marketplace/.claude-plugin/marketplace.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severity1/claude-code-prompt-improver/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severity1/claude-code-prompt-improver/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severity1/claude-code-prompt-improver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severity1/claude-code-prompt-improver/HEAD/README.md -------------------------------------------------------------------------------- /assets/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severity1/claude-code-prompt-improver/HEAD/assets/demo.gif -------------------------------------------------------------------------------- /hooks/hooks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severity1/claude-code-prompt-improver/HEAD/hooks/hooks.json -------------------------------------------------------------------------------- /scripts/improve-prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severity1/claude-code-prompt-improver/HEAD/scripts/improve-prompt.py -------------------------------------------------------------------------------- /skills/prompt-improver/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severity1/claude-code-prompt-improver/HEAD/skills/prompt-improver/SKILL.md -------------------------------------------------------------------------------- /skills/prompt-improver/references/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severity1/claude-code-prompt-improver/HEAD/skills/prompt-improver/references/examples.md -------------------------------------------------------------------------------- /skills/prompt-improver/references/question-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severity1/claude-code-prompt-improver/HEAD/skills/prompt-improver/references/question-patterns.md -------------------------------------------------------------------------------- /skills/prompt-improver/references/research-strategies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severity1/claude-code-prompt-improver/HEAD/skills/prompt-improver/references/research-strategies.md -------------------------------------------------------------------------------- /tests/test_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severity1/claude-code-prompt-improver/HEAD/tests/test_hook.py -------------------------------------------------------------------------------- /tests/test_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severity1/claude-code-prompt-improver/HEAD/tests/test_integration.py -------------------------------------------------------------------------------- /tests/test_skill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/severity1/claude-code-prompt-improver/HEAD/tests/test_skill.py --------------------------------------------------------------------------------