summaryrefslogtreecommitdiff
path: root/internal/task/project.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/task/project.go')
-rw-r--r--internal/task/project.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/internal/task/project.go b/internal/task/project.go
new file mode 100644
index 0000000..bd8a4fb
--- /dev/null
+++ b/internal/task/project.go
@@ -0,0 +1,11 @@
+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
+}