This commit is contained in:
2026-05-17 12:43:53 -07:00
commit 7c8def0aaa
7507 changed files with 1419399 additions and 0 deletions

11
dist/tools/security.d.ts vendored Normal file
View File

@@ -0,0 +1,11 @@
/** Gitea repos agents can NEVER push to, commit to, or write issues on. */
export declare const PROTECTED_GITEA_REPOS: Set<string>;
/** Coolify project UUID for the VIBN platform — agents cannot deploy here. */
export declare const PROTECTED_COOLIFY_PROJECT = "f4owwggokksgw0ogo0844os0";
/**
* Specific Coolify app UUIDs that must never be deployed by an agent.
* Belt-and-suspenders check in case the project UUID filter is bypassed.
*/
export declare const PROTECTED_COOLIFY_APPS: Set<string>;
export declare function assertGiteaWritable(repo: string): void;
export declare function assertCoolifyDeployable(appUuid: string): void;