Convert requirements-clarity to plugin format with English prompts

Changes:
- Migrate from .claude/skills/ to .claude/plugins/ structure
- Add claude.json plugin metadata
- Create instructions.md with all English prompts (no Chinese)
- Update README.md for plugin distribution
- Update .gitignore to allow .claude/plugins/

Plugin structure:
- claude.json: Plugin metadata (name, version, components)
- instructions.md: Main skill prompt (100% English)
- README.md: Plugin documentation and usage guide

Maintains all functionality:
- 100-point scoring system
- Iterative clarification (≥90 threshold)
- PRD generation with 4 sections
- Auto-activation on vague requirements

Fixes #17

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
swe-agent[bot]
2025-10-21 01:06:53 +00:00
parent 4110ee4600
commit 4d3789d0dc
4 changed files with 72 additions and 74 deletions

View File

@@ -0,0 +1,11 @@
{
"name": "requirements-clarity",
"version": "1.0.0",
"description": "Automatically detect vague requirements and transform them into crystal-clear Product Requirements Documents (PRDs) through systematic clarification",
"author": "stellarlink",
"homepage": "https://github.com/cexll/myclaude",
"instructions": "instructions.md",
"components": {
"skills": ["requirements-clarity"]
}
}