Spaces:
Sleeping
Sleeping
File size: 24,571 Bytes
b301207 352809d b301207 2110b7e b301207 352809d b301207 352809d 392da6f b301207 352809d b301207 352809d 2f69cda 2110b7e 0a4ad36 b301207 352809d b301207 352809d b301207 352809d 2110b7e 352809d b301207 352809d 2110b7e 352809d 2110b7e 352809d b301207 352809d 2110b7e 0a4ad36 2110b7e 0ccacbd 45ccfad 2110b7e 3f62e5f 2110b7e 3f62e5f 2110b7e a368118 2110b7e bc7ffd5 2110b7e 45ccfad 2110b7e 352809d b301207 2110b7e b224590 2110b7e b224590 352809d b224590 352809d b224590 352809d b224590 352809d b224590 b301207 b224590 352809d b224590 352809d b224590 352809d b224590 352809d dc0de6c b224590 352809d b224590 b301207 352809d b224590 352809d b224590 0a4ad36 b224590 2110b7e b224590 2110b7e 0a4ad36 9419fa5 b224590 9419fa5 b224590 9419fa5 0a4ad36 9419fa5 b224590 9419fa5 392da6f b224590 0ccacbd b224590 0ccacbd b224590 352809d 0ccacbd 7eac194 b224590 0ccacbd b224590 0ccacbd 352809d 392da6f 352809d bc7ffd5 392da6f bc7ffd5 392da6f bc7ffd5 392da6f bc7ffd5 392da6f bc7ffd5 392da6f bc7ffd5 0a4ad36 bc7ffd5 b224590 352809d 392da6f 352809d 2110b7e 0a4ad36 352809d 2f69cda 352809d 2f69cda 352809d b301207 352809d b301207 392da6f b301207 352809d b301207 392da6f b301207 352809d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 | import os
import json
import argparse
from typing import TypedDict, List, Dict, Any
from dotenv import load_dotenv
from src.providers import GitLabProvider, GCPProvider, GeminiBrain
# LangGraph Imports
from langgraph.graph import StateGraph, END
load_dotenv()
# ==========================================
# 1. State Definition
# ==========================================
class AgentState(TypedDict):
project_id: str
mr_iid: str
gl_provider: Any
gcp_provider: Any
brain_provider: Any
stage: str
# Context Data
mr_data: Dict[str, Any]
log_data: str
gcp_data: str
# Generated Outputs
raw_output: str
report_markdown: str
code_quality: List[Dict[str, Any]]
metadata: Dict[str, Any]
mermaid_diagram: str
error: str
critical_failure: bool
early_exit: bool
cost_estimation: str
test_report: str
devops_report: str
# ==========================================
# 2. Agent Nodes (The Graph)
# ==========================================
def librarian_node(state: AgentState):
print("[*] Agent: Librarian π - Fetching GitLab Context & Job Logs...")
mr_data = state["gl_provider"].fetch_mr_bundle(state["mr_iid"])
if not mr_data:
return {"error": "Failed to fetch MR Data. Check project ID and MR IID."}
log_data = state["gl_provider"].fetch_job_logs()
if not mr_data.get("diff", "").strip():
print(" -> No actionable files found in MR diff. Triggering early exit.")
return {"mr_data": mr_data, "log_data": log_data, "early_exit": True}
return {"mr_data": mr_data, "log_data": log_data}
def sentinel_node(state: AgentState):
if state.get("error") or state.get("early_exit"): return state
print("[*] Agent: Sentinel π‘οΈ - Fetching GCP Production Signals...")
gcp_data = state["gcp_provider"].get_context()
return {"gcp_data": gcp_data}
def reasoner_node(state: AgentState):
if state.get("error") or state.get("early_exit"): return state
print("[*] Agent: Reasoner π§ - Synthesizing Intelligence Report & Automations...")
try:
raw = state["brain_provider"].synthesize(state["mr_data"], state["gcp_data"], state["log_data"])
report, cq, meta = state["brain_provider"].parse_response(raw)
return {
"raw_output": raw,
"report_markdown": report,
"code_quality": cq,
"metadata": meta
}
except Exception as e:
return {"error": f"Brain failed to synthesize: {e}"}
def cost_estimator_node(state: AgentState):
if state.get("error") or state.get("early_exit"): return state
print("[*] Agent: FinOps πΈ - Estimating Production Cost Impact...")
try: return {"cost_estimation": state["brain_provider"].estimate_cost(state["mr_data"])}
except Exception as e: return {"cost_estimation": "*Cost estimation failed.*"}
def devops_node(state: AgentState):
if state.get("error") or state.get("early_exit"): return state
print("[*] Agent: DevOps βοΈ - Auditing Infrastructure and Reliability...")
try: return {"devops_report": state["brain_provider"].review_devops(state["mr_data"])}
except Exception as e: return {"devops_report": "*DevOps audit failed.*"}
def test_engineer_node(state: AgentState):
if state.get("error") or state.get("early_exit"): return state
print("[*] Agent: Test Engineer π§ͺ - Generating & Validating CI Tests...")
try:
import subprocess
import tempfile
import os
test_code = state["brain_provider"].generate_tests(state["mr_data"])
if "NO_TESTS_NEEDED" in test_code:
return {"test_report": "### π§ͺ Automated Testing Report\n\nNo explicitly testable business logic detected in this MR."}
# Safely create a temporary Python file
try:
# Add a safety check for forbidden keywords (hallucinated mocks)
forbidden = ["patch(", "@patch", "unittest.mock", "MagicMock", "autospec="]
if any(f in test_code for f in forbidden):
print(" -> β οΈ AI hallucinated mocks/patch! Rejecting test suite for safety.")
return {"test_report": "### π§ͺ Automated Testing Report\n\nAI generated a test suite with forbidden mocks/patch. I've rejected it to maintain test integrity. Please review your business logic's testability."}
# Write directly to the target project root (..) so Python resolves local imports natively
test_filename = "../test_ai_generated.py"
with open(test_filename, "w", encoding="utf-8") as f:
f.write(test_code)
env = os.environ.copy()
psep = ";" if os.name == "nt" else ":"
env["PYTHONPATH"] = f"{env.get('PYTHONPATH', '')}{psep}{os.path.abspath('..')}"
print(f" -> Executing generated pytest suite locally ({os.path.basename(test_filename)})...")
result = subprocess.run(["pytest", test_filename, "-v", "--junitxml=junit-report.xml"], capture_output=True, text=True, timeout=30, env=env)
print(f" [PYTEST STDOUT]\n{result.stdout}\n [PYTEST STDERR]\n{result.stderr}")
report = "### π§ͺ Automated Testing Report\n\nI generated Unit Tests for the new feature and ran them automatically in the CI environment.\n\n"
if result.returncode == 0:
report += "β
**Tests Passed!** The new logic appears solid based on my scenarios. I have committed these tests to your branch!\n\n"
print(" -> π Tests passed natively! Injecting them back into the MR repository...")
state["gl_provider"].commit_test_file(
state["mr_iid"],
f"tests/test_ai_generated.py",
test_code,
commit_message="test: add Context Brain auto-generated test suite"
)
else:
report += "β **Tests Failed natively!** The new logic failed validation against my generated scenarios.\n\n"
state["critical_failure"] = True
report += "<details><summary>View Pytest Execution Logs</summary>\n\n```text\nSTDOUT:\n" + result.stdout[-1500:] + "\nSTDERR:\n" + result.stderr[-1000:] + "\n```\n</details>"
return {"test_report": report}
finally:
# Clean up the temporary file immediately after execution
try:
os.remove(test_filename)
except OSError:
pass
except subprocess.TimeoutExpired:
return {"test_report": "### π§ͺ Automated Testing Report\n\n*Execute failed: Tests timed out.*"}
except Exception as e:
return {"test_report": f"### π§ͺ Automated Testing Report\n\n*Execute failed: {e}*"}
def reporter_node(state: AgentState):
if state.get("error"):
print(f"β PIPELINE HALTED: {state['error']}")
return state
if state.get("early_exit"):
print(" -> Early Exit. No actionable codebase diffs.")
return {}
print("[*] Agent: Reporter π’ - Dispatching Data to Artifacts...")
gl = state["gl_provider"]
mr_iid = state["mr_iid"]
stage = state.get("stage", "all")
# Action A: Labels ONLY (Description is deferred to Assembler)
meta = state.get("metadata", {})
if meta and stage in ["analyze", "all"]:
print(f" -> Applying Intelligent Labels: {meta.get('labels')}")
gl.update_mr_metadata(mr_iid, labels=meta.get('labels'))
# Action B: Code Quality SAST and Inline Suggestions
cq = state.get("code_quality", [])
if cq and stage in ["analyze", "all"]:
gl_cq = []
critical_issues = []
for issue in cq:
gl_cq.append({
"description": issue.get("description", "Issue found"),
"check_name": "ContextBrainAudit",
"fingerprint": f"{issue.get('file')}-{issue.get('line')}",
"severity": issue.get("severity", "major"),
"location": {"path": issue.get("file"), "lines": {"begin": int(issue.get("line", 1))}}
})
if str(issue.get("severity", "")).lower() in ["critical", "blocker", "high"]:
critical_issues.append(issue)
if issue.get("suggestion"):
gl.create_inline_suggestion(mr_iid, issue.get("file"), issue.get("line"), issue.get("suggestion"), discussion_body=issue.get("description"))
with open("gl-code-quality-report.json", "w") as f:
json.dump(gl_cq, f, indent=2)
if critical_issues:
import uuid
sast = {"version": "15.0.0", "vulnerabilities": []}
for issue in critical_issues:
sast["vulnerabilities"].append({
"id": str(uuid.uuid4()),
"category": "sast",
"name": "Context Brain Security Review",
"message": issue.get("description", "Vulnerability"),
"severity": "High",
"scanner": {"id": "context_brain", "name": "Context Brain"},
"location": {"file": issue.get("file"), "start_line": int(issue.get("line", 1))}
})
with open("gl-sast-report.json", "w") as f: json.dump(sast, f)
print(" -> β Critical issues found. Applying Security SAST artifact.")
# Action C: Compile Local Summaries instead of Spamming Comments
if stage in ["analyze", "all"]:
body = state.get("report_markdown", "") or state.get("raw_output", "")
with open("analyze_results.json", "w") as f: json.dump({"summary": meta.get("summary", ""), "body": body, "issues": len(cq)}, f)
elif stage == "finops":
with open("finops_results.json", "w") as f: json.dump({"cost": state.get("cost_estimation", "")}, f)
elif stage == "devops":
with open("devops_results.json", "w") as f: json.dump({"report": state.get("devops_report", "")}, f)
elif stage == "test":
with open("test_results.json", "w") as f: json.dump({"passed": "β
Tests Passed" in state.get("test_report", ""), "report": state.get("test_report", "")}, f)
return {}
def results_assembler_node(state: AgentState):
print("[*] Agent: Assembler π - Building Native GitLab UX...")
an_data, fin_data, test_data, dev_data = {}, {}, {}, {}
if os.path.exists("analyze_results.json"):
with open("analyze_results.json") as f: an_data = json.load(f)
print(" -> β
Loaded analyze_results.json")
else:
print(" -> β οΈ analyze_results.json NOT FOUND - check artifact paths")
if os.path.exists("finops_results.json"):
with open("finops_results.json") as f: fin_data = json.load(f)
print(" -> β
Loaded finops_results.json")
else:
print(" -> β οΈ finops_results.json NOT FOUND - check artifact paths")
if os.path.exists("devops_results.json"):
with open("devops_results.json") as f: dev_data = json.load(f)
print(" -> β
Loaded devops_results.json")
else:
print(" -> β οΈ devops_results.json NOT FOUND - check artifact paths")
if os.path.exists("test_results.json"):
with open("test_results.json") as f: test_data = json.load(f)
print(" -> β
Loaded test_results.json")
else:
print(" -> β οΈ test_results.json NOT FOUND - check artifact paths")
# 1. Update MR Description
summary = an_data.get("summary", "Complete Platform Insights delivered.")
cost = fin_data.get("cost", "No significant cost impact.")
devops_txt = dev_data.get("report", "Infrastructure verified.")
test_status = "β
**Passed** (Secure)" if test_data.get("passed") else "β **Failed** (Security/Logic Risks)"
# Premium MR Header Injection
mr_injection = (
"### π§ Context Brain: Intelligence Report\n"
f"**Analysis**: {summary}\n"
f"- **FinOps**: {cost[:200]}\n"
f"- **DevOps**: {devops_txt[:200]}\n"
f"- **Tests**: {test_status}\n\n"
"---"
)
state["gl_provider"].update_mr_metadata(state["mr_iid"], description_prefix=mr_injection)
# 2. Detailed Comment Thread
full_report = (
"## π§© Context Brain: Full Platform Audit\n\n"
f"#### π΅οΈ Code Analyst Audit\n{an_data.get('body', 'No insights.')}\n\n"
f"#### πΈ Cloud FinOps & Cost Logic\n{fin_data.get('cost', 'Optimized.')}\n\n"
f"#### βοΈ DevOps & SRE Review\n{dev_data.get('report', 'Ready for Prod.')}\n\n"
f"#### π§ͺ Quality SDET Validation\n{test_data.get('report', 'No logic tested.')}\n\n"
"---\n*Powered by Context Brain LangGraph Engine*"
)
state["gl_provider"].post_comment(state["mr_iid"], full_report)
print(" -> π Full Markdown Report posted as thread comment!")
# 2. Generate metrics.txt for MR Widget
with open("metrics.txt", "w") as f:
f.write(f"context_brain_issues {an_data.get('issues', 0)}\n")
f.write(f"context_brain_test_pass_rate {100 if test_data.get('passed') else 0}\n")
# 3. PREMIUM HTML Dashboard
html_template = f"""
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Context Brain Intelligence Dashboard</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&family=JetBrains+Mono:wght@400&display=swap" rel="stylesheet">
<style>
:root {{
--bg: #0f172a;
--card-bg: rgba(30, 41, 59, 0.7);
--accent: #38bdf8;
--text: #f1f5f9;
--text-muted: #94a3b8;
--border: rgba(255, 255, 255, 0.1);
}}
body {{
font-family: 'Outfit', sans-serif;
background-color: var(--bg);
color: var(--text);
margin: 0;
padding: 40px;
line-height: 1.6;
background-image: radial-gradient(circle at 50% 50%, #1e293b 0%, #0f172a 100%);
}}
.container {{
max-width: 1000px;
margin: 0 auto;
}}
.header {{
text-align: center;
margin-bottom: 60px;
}}
.header h1 {{
font-size: 3rem;
margin: 0;
background: linear-gradient(90deg, #38bdf8, #818cf8);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-weight: 600;
}}
.header p {{
color: var(--text-muted);
font-size: 1.2rem;
}}
.grid {{
display: grid;
grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
gap: 25px;
}}
.card {{
background: var(--card-bg);
backdrop-filter: blur(12px);
border: 1px solid var(--border);
border-radius: 20px;
padding: 30px;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
transition: transform 0.3s ease;
}}
.card:hover {{
transform: translateY(-5px);
border-color: var(--accent);
}}
.card h2 {{
margin-top: 0;
font-size: 1.5rem;
display: flex;
align-items: center;
gap: 12px;
color: var(--accent);
}}
.content {{
background: rgba(0,0,0,0.2);
border-radius: 12px;
padding: 20px;
font-size: 0.95rem;
white-space: pre-wrap;
font-family: 'Outfit', sans-serif;
}}
.footer {{
text-align: center;
margin-top: 60px;
color: var(--text-muted);
font-size: 0.9rem;
}}
code {{
font-family: 'JetBrains Mono', monospace;
background: rgba(255,255,255,0.1);
padding: 2px 5px;
border-radius: 4px;
}}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>π§ Context Brain</h1>
<p>Intelligence Platform Audit Dashboard</p>
</div>
<div class="grid">
<div class="card">
<h2>π΅οΈ Code Quality Analysis</h2>
<div class="content">{an_data.get('body', 'No critical issues found.').replace('```', '')}</div>
</div>
<div class="card">
<h2>πΈ FinOps & Cost Impact</h2>
<div class="content">{fin_data.get('cost', 'Cost efficient.')}</div>
</div>
<div class="card">
<h2>βοΈ DevOps & SRE Signals</h2>
<div class="content">{dev_data.get('report', 'Infrastructure verified.')}</div>
</div>
<div class="card">
<h2>π§ͺ Automated SDET Tests</h2>
<div class="content">{test_data.get('report', 'No functional tests executed.')}</div>
</div>
</div>
<div class="footer">
Context Brain © 2026 | Generated for MR !{state['mr_iid']}
</div>
</div>
</body>
</html>
"""
with open("dashboard.html", "w", encoding="utf-8") as f: f.write(html_template)
print(" -> π¨ Native UI Assets generated (Metrics Widget, Premium HTML Dashboard)!")
return {}
# ==========================================
# 3. Main Orchestrator
# ==========================================
def build_and_run_graph(project_id, mr_iid, stage="all"):
print(f"--- π§ Context Brain LangGraph Workflow Initializing (Project {project_id} / MR {mr_iid} / Stage {stage}) ---")
gl_token = os.getenv("GITLAB_TOKEN")
gcp_project = os.getenv("GCP_PROJECT_ID")
ai_key = os.getenv("GOOGLE_API_KEY")
if not gl_token or not ai_key:
print("β CRITICAL: Missing required API keys. Check .env file.")
return
# Build Providers
gl = GitLabProvider(project_id, gl_token)
gcp = GCPProvider(gcp_project)
brain = GeminiBrain(ai_key)
workflow = StateGraph(AgentState)
# Check for cached context
cached_context = {}
if os.path.exists("context.json"):
with open("context.json", "r") as f:
cached_context = json.load(f)
# Define an Injection Node that seeds the graph with cached state
def context_injector_node(state: AgentState):
print("[*] β‘ Loading Shared Fast-Context from context.json Artifact...")
return {
"mr_data": cached_context.get("mr_data", {}),
"log_data": cached_context.get("log_data", ""),
"gcp_data": cached_context.get("gcp_data", ""),
"early_exit": cached_context.get("early_exit", False)
}
def prep_reporter(state: AgentState):
print(f"[*] πΎ Caching Context state to disk for parallel parallel nodes...")
with open("context.json", "w") as f:
json.dump({
"mr_data": state.get("mr_data"),
"log_data": state.get("log_data"),
"gcp_data": state.get("gcp_data"),
"early_exit": state.get("early_exit")
}, f)
return {}
if stage == "prep":
workflow.add_node("Librarian", librarian_node)
workflow.add_node("Sentinel", sentinel_node)
workflow.add_node("PrepReporter", prep_reporter)
workflow.set_entry_point("Librarian")
workflow.add_edge("Librarian", "Sentinel")
workflow.add_edge("Sentinel", "PrepReporter")
workflow.add_edge("PrepReporter", END)
else:
# For execution stages, skip Librarian and Sentinel if cached
if cached_context:
workflow.add_node("Injector", context_injector_node)
entry = "Injector"
else:
workflow.add_node("Librarian", librarian_node)
workflow.add_node("Sentinel", sentinel_node)
workflow.add_edge("Librarian", "Sentinel")
entry = "Librarian"
workflow.set_entry_point(entry)
if stage == "analyze" or stage == "all":
workflow.add_node("Reasoner", reasoner_node)
workflow.add_node("Reporter", reporter_node)
if cached_context: workflow.add_edge("Injector", "Reasoner")
else: workflow.add_edge("Sentinel", "Reasoner")
workflow.add_edge("Reasoner", "Reporter")
workflow.add_edge("Reporter", END)
elif stage == "finops":
workflow.add_node("CostEstimator", cost_estimator_node)
workflow.add_node("Reporter", reporter_node)
if cached_context: workflow.add_edge("Injector", "CostEstimator")
else: workflow.add_edge("Sentinel", "CostEstimator")
workflow.add_edge("CostEstimator", "Reporter")
workflow.add_edge("Reporter", END)
elif stage == "devops":
workflow.add_node("DevOps", devops_node)
workflow.add_node("Reporter", reporter_node)
if cached_context: workflow.add_edge("Injector", "DevOps")
else: workflow.add_edge("Sentinel", "DevOps")
workflow.add_edge("DevOps", "Reporter")
workflow.add_edge("Reporter", END)
elif stage == "test":
workflow.add_node("TestEngineer", test_engineer_node)
workflow.add_node("Reporter", reporter_node)
if cached_context: workflow.add_edge("Injector", "TestEngineer")
else: workflow.add_edge("Sentinel", "TestEngineer")
workflow.add_edge("TestEngineer", "Reporter")
workflow.add_edge("Reporter", END)
elif stage == "results":
workflow.add_node("Assembler", results_assembler_node)
if cached_context: workflow.add_edge("Injector", "Assembler")
else: workflow.add_edge("Sentinel", "Assembler")
workflow.add_edge("Assembler", END)
app = workflow.compile()
# Run the Pipeline
initial_state = {
"project_id": project_id,
"mr_iid": mr_iid,
"gl_provider": gl,
"gcp_provider": gcp,
"brain_provider": brain,
"stage": stage,
"mermaid_diagram": "",
"error": "",
"early_exit": False,
"cost_estimation": "",
"test_report": "",
"devops_report": ""
}
print("\nπ EXECUTING LANGGRAPH PIPELINE...\n")
final_state = app.invoke(initial_state)
print("\nβ
PIPELINE COMPLETE.")
if final_state.get("critical_failure"):
print("\nβ EXITED WITH CRITICAL SECURITY ISSUES. FAILING PIPELINE.")
import sys
sys.exit(1)
if __name__ == "__main__":
parser = argparse.ArgumentParser(description="GitLab Context Brain LangGraph Agent")
parser.add_argument("--project_id", default=os.getenv("CI_PROJECT_ID"), help="GitLab Project ID")
parser.add_argument("--mr_iid", default=os.getenv("CI_MERGE_REQUEST_IID"), help="Merge Request IID")
parser.add_argument("--stage", default="all", help="Pipeline Stage (analyze, finops, test)")
args = parser.parse_args()
if os.getenv("AI_FLOW_CONTEXT"):
try:
raw_context = json.loads(os.getenv("AI_FLOW_CONTEXT"))
args.mr_iid = raw_context.get("iid")
except: pass
if args.project_id and args.mr_iid:
build_and_run_graph(args.project_id, args.mr_iid, args.stage)
else:
print("β ERROR: Missing project_id or mr_iid.")
|