用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/potenlab/marketplace-potenlab --skill quick命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | quick |
| description | Quick task without full workflow. Use for "quick", "just add", "small change", "simple fix". |
| argument-hint | [task description] |
| disable-model-invocation | true |
| user-invocable | true |
For small tasks that don't need PRD/checkpoints.
✅ Use /quick for:
❌ Don't use for:
/quick "add logout button to header"
↓
Complexity check
↓
Implement (auto-apply UI rules if needed)
↓
Build + Lint + Test
↓
Show diff → Human approval → Commit
Quick task: "add logout button to header"
Checking complexity...
- Estimated files: 1-2
- Complexity: Low ✅
If too complex:
⚠️ This seems larger than a quick task:
- May need new API endpoint
- Touches 5+ files estimated
Recommend: /init-project or /checkpoint
Continue anyway? [y/n]
If task involves UI files:
🎨 UI task detected. Applying rules:
- No gradients
- No animations
- Use shadcn/ui
Do the work. Follow rules from .claude/rules/.
bun run build
bun run lint
bun run test --passWithNoTests 2>/dev/null || true
## Verification
| Check | Status |
|-------|--------|
| Build | ✅ |
| Lint | ✅ |
| Tests | ✅ |
Auto-fix lint if needed.
git diff --stat
## Changes
**Files**: 1 changed (+15/-2)
| File | Changes |
|------|---------|
| components/header.tsx | +15 / -2 |
### What Changed
- Added SignOutButton to header nav
- Imported from @/components/auth
## Ready to Commit
Task: Add logout button to header
Files: 1 changed (+15/-2)
Commit message:
"feat(ui): add logout button to header"
Approve?
Options:
git add -A
git commit -m "feat(ui): add logout button to header
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>"
✅ Done!
Commit: abc1234
Task: Add logout button to header
Files: 1 (+15/-2)
Executes all tasks in a specific phase using wave-based parallel execution (max 4 agents per wave). Spawns small-coder and high-coder agents based on progress.json complexity. Updates progress.json after EACH wave so completed tasks immediately unblock dependents. Accepts phase number as argument (/execute-phase 3) or asks via AskUserQuestion. Triggers on: execute phase, run phase, build phase, develop phase, start phase.
Generates Vitest test files from test-plan.md using the qa-specialist agent. Reads the test plan and vitest best practices, then spawns qa-specialist agents to produce .test.ts files in the root tests/ directory for features, shared tests, and Supabase integration tests. Tests verify behavior via database operations and RLS policies — no UI testing. Triggers on: generate test, generate tests, create tests, write tests, test generation.
Orchestrates sequential project planning. First validates user intent via AskUserQuestion (MANDATORY), then spawns ui-ux-specialist to create ui-ux-plan.md, then tech-lead-specialist to create dev-plan.md from ui-ux-plan.md, then spawns frontend-specialist and backend-specialist in parallel to create their detailed plans from dev-plan.md, then spawns qa-specialist to create test-plan.md from dev-plan.md and backend-plan.md. Triggers on: plan, create plan, plan project, project plan, full plan, prd to plan.