Lines 1-21javascript
1import http from "node:http";
2import https from "node:https";
HighSandbox Evasion Gated Capability
Source gates dangerous network, credential, or execution behavior behind CI, host, platform, time, or geo fingerprint checks.
dist/gitlab.jsView on unpkg · L1 3export const GITLAB_LABEL_DEFINITIONS = [
4 { name: "qa-found", color: "#428BCA", description: "QA reported the issue." },
5 { name: "codex-ready", color: "#1F75CB", description: "Codex may triage or attempt a fix." },
6 { name: "codex-running", color: "#A8D695", description: "A Codex runner is actively processing the issue." },
7 { name: "fix-proposed", color: "#69D100", description: "A fix merge request has been created." },
8 { name: "needs-info", color: "#F0AD4E", description: "More evidence is required before work can continue." },
9 { name: "human-needed", color: "#D9534F", description: "Human review or a decision is required." },
10 { name: "blocking", color: "#D9534F", description: "Blocks QA acceptance or release." },
11 { name: "non-blocking", color: "#A8D695", description: "Does not block QA acceptance or release." },
12 { name: "verification-passed", color: "#69D100", description: "QA verification passed." },
13 { name: "verification-failed", color: "#D9534F", description: "QA verification failed." },
15const DEFAULT_TOKEN_ENV = "FLOWSPEC_GITLAB_TOKEN";
16const QDM_TOKEN_ENV = "QDM_GITLAB_TOKEN";
17const DEFAULT_TIMEOUT_MS = 30_000;
18export class GitLabClient {