tinyship-feature
Installation
SKILL.md
TinyShip Feature Development
Step-by-step guide for adding new features to a TinyShip project, following the monorepo architecture patterns.
Step 0: Scope the Feature
Ask the user to clarify:
- What type? UI only / API only / full-stack
- What does it do? Brief description of the feature
- Does it need auth? Should it be protected?
- Does it consume credits? If AI-related, should it charge credits?
Step 1: Shared Logic (libs/)
Put domain/business logic in libs/ — never duplicate it across apps.