Start a new project, startup, or side project with guided workflow from idea to MVP
/plugin marketplace add kriscard/kriscard-claude-plugins/plugin install studio-startup@kriscard[--type=web|mobile|api|cli] [--name="Project Name"] [--phase=strategy|requirements|tech|implementation]This command starts the studio-startup orchestration workflow explicitly. It's an alternative to natural language triggering of the studio-startup skill.
When user runs /studio-startup:new, invoke the studio-startup skill using the Skill tool. If arguments are provided, pass them as context to the skill.
Before invoking skill, check if user has settings:
test -f .claude/studio-startup.local.md
Extract arguments if provided:
--type - Project type (web, mobile, api, cli)--name - Project name--phase - Starting phaseValidate values if provided.
Simply state the context and invoke the studio-startup skill:
User invoked /studio-startup:new command.
[Include any provided arguments]
Skill(skill="studio-startup")
The skill will handle everything from here - orchestration, phase execution, user interaction, and completion.
User: /studio-startup:new
Response:
"Starting studio-startup workflow...
Skill(skill="studio-startup")
User: /studio-startup:new --type=web --name="My SaaS App"
Response:
"Starting studio-startup workflow for web application 'My SaaS App'...
Skill(skill="studio-startup")
User: /studio-startup:new --phase=tech
Response:
"Starting studio-startup workflow from tech selection phase...
Skill(skill="studio-startup")