Use when feeling stuck, lacking ideas, or asking 'what should I do next'. Analyzes project state, identifies opportunities, and suggests actionable next steps.
How this skill is triggered — by the user, by Claude, or both
Slash command
/inspiration-generator:inspiration-generatorThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
当你不知道该干什么、感到迷茫、或者需要新想法时,这个 skill 会分析项目现状并提供有针对性的灵感建议。
当你不知道该干什么、感到迷茫、或者需要新想法时,这个 skill 会分析项目现状并提供有针对性的灵感建议。
核心理念: 灵感来自对现状的深度理解 + 可能性的系统探索。
┌─────────────────┐
│ 1. 项目快照 │ ← 分析当前项目状态
└────────┬────────┘
▼
┌─────────────────┐
│ 2. 维度扫描 │ ← 从 7 个维度寻找机会
└────────┬────────┘
▼
┌─────────────────┐
│ 3. 灵感生成 │ ← 输出 3-5 个具体建议
└────────┬────────┘
▼
┌─────────────────┐
│ 4. 深度探索 │ ← 用户选择后详细展开
└─────────────────┘
快速分析项目当前状态:
# 检查 git 状态和最近变更
git status
git log --oneline -10
git diff --stat HEAD~5
# 查看项目结构
ls -la src/
关注:
从以下 7 个维度系统寻找灵感:
| 维度 | 关注点 | 示例灵感 |
|---|---|---|
| 🐛 质量改进 | bug、tech debt、代码异味 | 添加测试、重构冗余代码、修复 TODO |
| ⚡ 性能优化 | 加载速度、内存、渲染 | 懒加载、虚拟滚动、缓存策略 |
| 🎨 用户体验 | 交互、可访问性、反馈 | 加载状态、错误提示、键盘导航 |
| 🔧 开发体验 | 工具链、调试、文档 | 添加脚本、改进日志、补充文档 |
| 🧪 测试覆盖 | 单测、集成、E2E | 关键路径测试、边界条件测试 |
| 🔒 安全加固 | 输入验证、权限、敏感数据 | XSS 防护、CSRF 防护、数据脱敏 |
| 🚀 功能扩展 | 新特性、集成、自动化 | 新功能、第三方集成、CI/CD |
每个建议包含:
## 💡 [简短标题]
**类型:** [质量/性能/体验/开发/测试/安全/功能]
**难度:** ⭐/⭐⭐/⭐⭐⭐ (1-3小时/半天/1天+)
**价值:** [一句话说明为什么值得做]
**具体内容:**
[2-3 句话描述要做什么]
**切入点:**
- 从哪个文件/模块开始
- 第一步具体做什么
用户选择某个灵感后:
我来帮你找找灵感!让我先看看项目现状...
[分析 git log、TODO、代码结构]
基于分析,这里有 3 个建议:
1. 💡 **[标题]** - [一句话] (⭐)
2. 💡 **[标题]** - [一句话] (⭐⭐)
3. 💡 **[标题]** - [一句话] (⭐⭐⭐)
想深入了解哪个?或者我再生成几个其他方向的?
当用户说"想优化性能"或"想加新功能"时,聚焦该方向深入挖掘。
TODO、FIXME、HACK 注释❌ 给出太抽象的建议("改进代码质量") ❌ 一次给太多选项(超过 5 个) ❌ 忽略用户当前工作的上下文 ❌ 推荐与项目无关的技术 ❌ 只说问题不给解决方案
npx claudepluginhub leeszzz/zzz-plugins-marketplace --plugin inspiration-generatorGenerates and critically evaluates grounded improvement ideas for the current project's codebase. Triggers on 'what to improve', 'give me ideas', or similar requests to produce ranked ideation docs.
Generate and critically evaluate grounded improvement ideas for the current project by scanning the codebase. Use for 'what to improve', 'give ideas', or proactive project direction suggestions.
Brainstorm future features and improvements based on the current codebase. This is the ideation step BEFORE writing specs (/writing-specs). Use when user asks to brainstorm ideas, generate feature ideas, explore improvements, or mentions 브레인스톰, 아이디어, 기능 제안, 개선 아이디어, 뭐 만들까, 앞으로 뭐 하지. Also trigger for cleanup requests like 브레인스톰 정리, 구현된 아이디어 정리. Proactively trigger when the user wants creative exploration of what COULD be built.