~/sparks/studio.ts TYPECHECK PASSED 1// Studio config — the whole firm, in one file.2export const SparksFullStack : Studio = {3 totalYearsOfExperience: 20+,4 foundedIn: 2021,5 team: TeamSizes.small,6 technicalSkills: [7 'TypeScript', 'React', 'Next.js', 'Swift', 'Kotlin',8 'Python', 'Go', 'Postgres', 'Redis', 'AWS', 'GCP',9 'LLMs', 'RAG', 'agents', 'vector DBs', 'Terraform',10 ],11 practices: ['AI', 'Web', 'Mobile', 'Infra', 'Perf + SEO'],12 shipsWith: {13 accountExecs: false,14 offshoreSubcontractors: false,15 founderOnEveryCommit: true,16 },17 firstCall: { cost: 0, deck: false },18 responseTime: '< 2h, founder reply',19 clientSatisfaction: 4.9 // ★★★★★ 2021–2620} as const;21 22// first call is free. no decks. no sales calls.›$ npx create-sparks-project