npx claudepluginhub 15195999826/lomomarketplace --plugin lomo-kitsThis skill uses the workspace's default tool permissions.
- 功能已经写完了,想快速验证是否正常工作
Runs fast smoke tests validating critical paths like health checks, UI, auth, and APIs post-deployment using curl, Playwright, or Bash scripts.
Guides manual QA testing of app features with checklists for happy paths, edge cases, cross-browser compatibility, mobile support, and structured workflows before deployment.
Runs smoke tests for login, signup, checkout, navigation, and search flows in web apps. Validates critical functionality before releases, deployments, or CI/CD.
Share bugs, ideas, or general feedback.
/smoke-test # 测试最近改动的功能
/smoke-test 删除记忆按钮 # 测试指定功能
/smoke-test /api/memories 接口 # 测试指定 API
读取最近改动的代码(git diff 或指定范围),自动生成测试用例:
🔍 检测到以下功能点需要测试:
1. DELETE /api/memories/:id → 应返回 200
2. 删除后 GET /api/memories/:id → 应返回 404
3. 删除按钮点击 → 应弹出确认框
4. 确认删除 → 列表应自动刷新
同时选择合适的测试方式:
🧪 冒烟测试报告
- 测试用例: 4 个
- 迭代轮数: 2 轮
- 第 1 轮: ❌ 测试 2 失败(删除后仍返回 200)→ 修复 delete handler
- 第 2 轮: ✅ 全部通过
- 构建检查: tsc --noEmit ✅
附修复的 diff 摘要(如果有修复的话)。