Overview
Creates a new project in your Bilt account. This is typically the first step in any app development workflow.Projects are automatically associated with your API token’s user account.
Parameters
Project name. Must be unique within your account.
- Max length: 255 characters
- Format: Alphanumeric, hyphens, underscores
- Example:
"my-todo-app"
Human-readable project description.
- Max length: 1000 characters
- Example:
"A simple todo list application with user authentication"
Project visibility setting.
- Options:
"PUBLIC"or"PRIVATE" - Default:
"PUBLIC" - PUBLIC: Visible to others, can be shared
- PRIVATE: Only visible to you
Response
Unique project identifier (UUID format)
Project name as provided
Project description (null if not provided)
Project visibility:
"public" or "private"ISO 8601 timestamp of creation
ISO 8601 timestamp of last update
Example Usage
Agent Workflow Example
Best Practices
Use descriptive names
Use descriptive names
Choose clear, specific project names that indicate the app’s purpose.✅ Good:
"ecommerce-dashboard", "blog-cms", "todo-app"❌ Avoid: "test", "project1", "app"Include descriptions for complex projects
Include descriptions for complex projects
Add descriptions when the project name alone doesn’t fully convey the scope.
Start with PUBLIC visibility
Start with PUBLIC visibility
Public projects are easier to share and showcase. Switch to PRIVATE only if needed.
Store project IDs
Store project IDs
Save the returned
id for subsequent operations:Error Handling
Rate Limits
Limit10 projects created per hour
Total ProjectsUp to 100 active projects per account (free tier)
Contact support@bilt.me for higher limits on paid plans
Related Tools
bilt_list_projects
View all projects
bilt_get_project
Get project details
bilt_send_message
Start building
Next Steps
After creating a project:- Get a session - Use bilt_get_session
- Send build instructions - Use bilt_send_message
- Monitor progress - Check status with bilt_get_messages
- Deploy - Send deployment message when ready
