package task // Project represents a registered codebase that agents can operate on. type Project struct { ID string `json:"id"` Name string `json:"name"` RemoteURL string `json:"remote_url"` LocalPath string `json:"local_path"` Type string `json:"type"` // "web" | "android" DeployScript string `json:"deploy_script"` // optional path or command }