Files
Mark Henderson 6eaa6d64ac feat: add Code OS project-info prompt template to scaffold
Adds .prompts/project-info.prompttemplate to the Turborepo scaffold so
every new user project gets a customized context file loaded by the Code
OS agent — including build commands, workspace structure, and shared
package import paths with the project's actual slug injected.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-21 17:27:34 -08:00
..

{{project-name}}

A full-stack monorepo managed by Vibn, powered by Turborepo.

Apps

App Path Purpose
product apps/product Core user-facing application
website apps/website Marketing and landing pages
admin apps/admin Internal admin tooling
storybook apps/storybook Component browser and design system

Shared Packages

Package Path Purpose
@{{project-slug}}/ui packages/ui Shared React components
@{{project-slug}}/tokens packages/tokens Design tokens (colors, spacing, typography)
@{{project-slug}}/types packages/types Shared TypeScript types
@{{project-slug}}/config packages/config Shared eslint and tsconfig

Getting Started

pnpm install
pnpm dev

Running a specific app

turbo run dev --filter=product
turbo run dev --filter=website

Building

pnpm build
# or a single app
turbo run build --filter=product