惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

U
Unit 42
F
Fortinet All Blogs
Martin Fowler
Martin Fowler
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
IT之家
IT之家
Blog — PlanetScale
Blog — PlanetScale
罗磊的独立博客
V
V2EX
Vercel News
Vercel News
Apple Machine Learning Research
Apple Machine Learning Research
J
Java Code Geeks
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
T
Tailwind CSS Blog
I
InfoQ
Engineering at Meta
Engineering at Meta
WordPress大学
WordPress大学
S
SegmentFault 最新的问题
H
Help Net Security
腾讯CDC
D
Docker
P
Proofpoint News Feed
GbyAI
GbyAI
博客园 - 三生石上(FineUI控件)
aimingoo的专栏
aimingoo的专栏

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Building an AI-Powered Pipeline Auditor with Snowflake's ...
Dash · 2026-04-28 · via DEV Community

AI-Powered Pipeline Auditor with Snowflake's Cortex Code Agent SDK

TL;DR: I built an app that audits data pipelines using AI agent sessions. It analyzes tasks, dynamic tables, streams, pipes, and more -- then offers interactive fix suggestions.


The Snowflake Cortex Code Agent SDK lets you spin up headless AI coding sessions programmatically. Think of it as embedding an AI pair programmer into your app via an API.

I used it to build an automated auditor that scans a Snowflake schema and flags pipeline issues.

How it works:

  1. User selects database, schema, and scope (tasks, dynamic tables, etc.)
  2. Frontend POSTs to Express backend, which creates a Cortex Code session with audit instructions
  3. Backend returns a job ID immediately
  4. Frontend polls GET endpoint every 2s until the agent finishes
  5. Agent runs SHOW commands, analyzes configs, and produces a structured report

The Suggest Fix flow:

Each finding in the report has a Suggest Fix button. Clicking it creates a NEW agent session scoped to that specific issue, with a chat interface for follow-up questions. Multi-turn conversation, not just a one-shot answer.

Stack:

  • Cortex Code CLI
  • Cortex Code SDK
  • React + TypeScript + MUI 7 (dark/light themes)
  • Express + Cortex Code Agent SDK
  • Snowflake for storage (audit schedules + results tables)
  • Deployed to Snowpark Container Services (SPCS)

Running it locally:

Open localhost:5173 and you are all set.

Demo video in the repo README.

Repo: https://github.com/iamontheinet/awesome-pipeline-auditor-with-cortex-agents-sdk

Cheers,
Dash