Initial commit: DevClaw with Gitea support

This commit is contained in:
2026-02-15 08:58:46 +00:00
parent 01ad5d326c
commit ff73115efc
4 changed files with 332 additions and 12 deletions

View File

@@ -22,8 +22,8 @@ export type Project = {
deployBranch: string;
/** Messaging channel for this project's group (e.g. "telegram", "whatsapp", "discord", "slack"). Stored at registration time. */
channel?: string;
/** Issue tracker provider type (github or gitlab). Auto-detected at registration, stored for reuse. */
provider?: "github" | "gitlab";
/** Issue tracker provider type (github, gitlab, or gitea). Auto-detected at registration, stored for reuse. */
provider?: "github" | "gitlab" | "gitea";
/** Project-level role execution: parallel (DEV+QA can run simultaneously) or sequential (only one role at a time). Default: parallel */
roleExecution?: "parallel" | "sequential";
maxDevWorkers?: number;