From saas-toolkit
Lightweight end-to-end feature implementation (DB -> backend -> frontend) for small features (2-3 files). For larger features, use /plan-feature + /build.
How this skill is triggered — by the user, by Claude, or both
Slash command
/saas-toolkit:add-featureThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Implements a single feature end-to-end without the formal planning overhead of `/dev`. Best for well-understood features that don't require architectural decisions.
Implements a single feature end-to-end without the formal planning overhead of /dev. Best for well-understood features that don't require architectural decisions.
Read the user's feature description. If anything is ambiguous, ask one round of clarifying questions.
Before implementing, quickly assess:
Dispatch explore-codebase agent (or Glob/Grep directly for simple lookups) to find:
Follow SaaS stack order:
npm run build to check for errors| Aspect | /dev | /add-feature |
|---|---|---|
| Planning | Formal spec + plan document | No planning phase |
| Scope | Multi-file features, new systems | Single focused feature |
| Exploration | Deep codebase analysis | Quick pattern lookup |
| Output | Spec → Plan → Code → Verify | Code → Verify |
Use /dev for complex features that need architectural decisions. Use /add-feature for straightforward additions.
npx claudepluginhub mickaelmamani/saas-toolkit --plugin saas-toolkitPlans and implements features spanning frontend, backend, API, database, scripts, and tests with a structured workflow.
Guides adding new features, endpoints, pages, or components with a plan-before-code loop, contract clarification, and end-to-end verification.
Orchestrates full-stack feature development across database, backend, frontend, and infrastructure using subagents with API-first principles. Ideal for architecture-to-deployment workflows.