<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Dash</title>
    <description>The latest articles on DEV Community by Dash (@iamontheinet).</description>
    <link>https://dev.to/iamontheinet</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3832897%2F6a342ade-0e41-4698-8f5c-bc5c82364a81.png</url>
      <title>DEV Community: Dash</title>
      <link>https://dev.to/iamontheinet</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/iamontheinet"/>
    <language>en</language>
    <item>
      <title>Hot off the press -- Snowflake Cortex Code in Snowsight is now GA!</title>
      <dc:creator>Dash</dc:creator>
      <pubDate>Thu, 26 Mar 2026 18:40:50 +0000</pubDate>
      <link>https://dev.to/snowflake/hot-off-the-press-snowflake-cortex-code-in-snowsight-is-now-ga-3m3n</link>
      <guid>https://dev.to/snowflake/hot-off-the-press-snowflake-cortex-code-in-snowsight-is-now-ga-3m3n</guid>
      <description>&lt;p&gt;Building and scaling AI apps natively on your data just got a massive upgrade.&lt;/p&gt;

&lt;p&gt;Here is what is included in this release:&lt;/p&gt;

&lt;p&gt;⚡ Rapid prototyping to production: execute large, multi-step projects directly in Snowsight.&lt;br&gt;
🔒 Enterprise-grade governance: built-in controls and observability for regulated environments.&lt;br&gt;
💸 Cost-aware automation: specialized skills for cost optimization and agentic ML workflows.&lt;br&gt;
🪟 Cross-platform CLI: native Windows support removes friction for engineering teams.&lt;/p&gt;

&lt;p&gt;🙌 My absolute new favorite in CLI: Agent Teams!&lt;/p&gt;

&lt;p&gt;Here's what I tried: "&lt;em&gt;Build a Streamlit chat app in a new folder that streams responses from the Cortex Agent. Use a team of 3 agents (client, UI, config) with a shared event contract defined upfront to avoid integration mismatches.&lt;/em&gt;"&lt;/p&gt;

&lt;p&gt;🤯 I'm still blown away by how well the Agent Teams handled that shared event contract. If you had a team of agents to automate your workflow today, what's the first project you'd assign them? Let's discuss in comments👇&lt;/p&gt;

&lt;p&gt;🔗 Get started in mins: &lt;a href="https://www.snowflake.com/en/developers/guides/getting-started-with-cortex-code-cli/" rel="noopener noreferrer"&gt;https://www.snowflake.com/en/developers/guides/getting-started-with-cortex-code-cli/&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;Let's learn together!&lt;/p&gt;

</description>
      <category>ai</category>
      <category>productivity</category>
      <category>automation</category>
      <category>snowflake</category>
    </item>
    <item>
      <title>[DYK with Dash] Want a policy enforcement layer over your AI coding assistant?</title>
      <dc:creator>Dash</dc:creator>
      <pubDate>Thu, 26 Mar 2026 00:51:02 +0000</pubDate>
      <link>https://dev.to/snowflake/dyk-with-dash-want-a-policy-enforcement-layer-over-your-ai-coding-assistant-5a65</link>
      <guid>https://dev.to/snowflake/dyk-with-dash-want-a-policy-enforcement-layer-over-your-ai-coding-assistant-5a65</guid>
      <description>&lt;p&gt;🙌 Snowflake Cortex Code CLI has a programmable hooks system that fires on 11 lifecycle events -- PreToolUse, PostToolUse, SessionStart, Stop, and more. You write a shell script, and if it returns exit code 2, the operation is HARD BLOCKED.&lt;/p&gt;

&lt;p&gt;↳ Validate every bash command before it runs&lt;br&gt;
↳ Block writes to protected files&lt;br&gt;
↳ Log every tool call for audit&lt;br&gt;
↳ Inject context at session start&lt;/p&gt;

&lt;p&gt;This is guardrails-as-code for AI-assisted development.&lt;/p&gt;

&lt;p&gt;Share this with your platform team -- they need to see this 👇&lt;/p&gt;

&lt;p&gt;📖 Get started: &lt;a href="https://www.snowflake.com/en/developers/guides/getting-started-with-cortex-code-cli/" rel="noopener noreferrer"&gt;https://www.snowflake.com/en/developers/guides/getting-started-with-cortex-code-cli/&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;Let's learn together!&lt;/p&gt;

</description>
      <category>ai</category>
      <category>security</category>
      <category>snowflake</category>
      <category>governance</category>
    </item>
    <item>
      <title>[DYK with Dash] Build your own AI sub-agents with... Markdown?!</title>
      <dc:creator>Dash</dc:creator>
      <pubDate>Tue, 24 Mar 2026 14:23:17 +0000</pubDate>
      <link>https://dev.to/snowflake/dyk-with-dash-build-your-own-ai-sub-agents-with-markdown-31o3</link>
      <guid>https://dev.to/snowflake/dyk-with-dash-build-your-own-ai-sub-agents-with-markdown-31o3</guid>
      <description>&lt;p&gt;🙌 Drop a Markdown file with YAML frontmatter into &lt;code&gt;.cortex/agents/&lt;/code&gt; and Snowflake Cortex Code turns it into a fully functional specialized sub-agent with scoped tool access.&lt;/p&gt;

&lt;p&gt;↳ Define a &lt;code&gt;code-reviewer&lt;/code&gt; agent that only has Read access&lt;br&gt;
↳ Create a &lt;code&gt;migration-checker&lt;/code&gt; with Bash + SQL&lt;br&gt;
↳ Share them with your team through version control&lt;/p&gt;

&lt;p&gt;That's it. Your team's best practices, encoded as agents.&lt;/p&gt;

&lt;p&gt;What custom agent would you build? 👇&lt;/p&gt;

&lt;p&gt;📖 Get started: &lt;a href="https://docs.snowflake.com/en/user-guide/cortex-code/cortex-code-cli" rel="noopener noreferrer"&gt;https://docs.snowflake.com/en/user-guide/cortex-code/cortex-code-cli&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;Let's learn together!&lt;/p&gt;

&lt;h1&gt;
  
  
  CortexCode #Snowflake #AI #Developers #DataEngineering #DevTools
&lt;/h1&gt;

</description>
      <category>ai</category>
      <category>programming</category>
      <category>snowflake</category>
      <category>productivity</category>
    </item>
    <item>
      <title>Data governance just became a conversation, not a workflow.</title>
      <dc:creator>Dash</dc:creator>
      <pubDate>Fri, 20 Mar 2026 14:22:04 +0000</pubDate>
      <link>https://dev.to/snowflake/data-governance-just-became-a-conversation-not-a-workflow-3998</link>
      <guid>https://dev.to/snowflake/data-governance-just-became-a-conversation-not-a-workflow-3998</guid>
      <description>&lt;p&gt;🤔 If you've ever tried to get a full picture of your governance posture, you know the drill -- run classification in one place, write masking policies&lt;br&gt;
 somewhere else, dig through access history six months ago, and still not really know what's covered.&lt;/p&gt;

&lt;p&gt;🙌 We built something to fix that. Data Governance Skills for Snowflake Cortex Code let you govern your data by just... asking.&lt;/p&gt;

&lt;p&gt;"What's my governance maturity score?" gives you a 0-5 score across classification, protection, and access monitoring. Per database. With the actual gaps called out.&lt;/p&gt;

&lt;p&gt;🤯 The thing I like most -- these aren't generic AI prompts hoping the SQL is right. There are 100+ verified query patterns under the hood, built&lt;br&gt;
specifically for governance views. &lt;/p&gt;

&lt;p&gt;Classification, masking, row access policies, data quality via DMFs, lineage with impact analysis -- all in natural language, all native to Snowflake Horizon Catalog. No external catalog to sync. No metadata that's hours behind.&lt;/p&gt;

&lt;p&gt;A data steward can now do in one conversation what used to be a sprint across multiple teams!&lt;/p&gt;

&lt;p&gt;Available now in Cortex Code CLI. Check it out and let me know what you think: &lt;a href="https://docs.snowflake.com/en/user-guide/cortex-code/cortex-code-cli" rel="noopener noreferrer"&gt;https://docs.snowflake.com/en/user-guide/cortex-code/cortex-code-cli&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>data</category>
      <category>database</category>
      <category>security</category>
    </item>
    <item>
      <title>[DYK with Dash] Git branching... but for AI conversations?!</title>
      <dc:creator>Dash</dc:creator>
      <pubDate>Thu, 19 Mar 2026 14:13:18 +0000</pubDate>
      <link>https://dev.to/snowflake/dyk-with-dash-git-branching-but-for-ai-conversations-55dk</link>
      <guid>https://dev.to/snowflake/dyk-with-dash-git-branching-but-for-ai-conversations-55dk</guid>
      <description>&lt;p&gt;🤯 Type '/fork' mid-conversation in Snowflake Cortex Code and it creates a branch of your session at any point you choose. Try a risky refactor, explore a wild idea -- and if it goes sideways, your original session is still right there waiting for you.&lt;/p&gt;

&lt;p&gt;↳ '/fork' -- branch from any message&lt;br&gt;
↳ '/fork my-experiment' -- name it for easy recall&lt;br&gt;
↳ '/rewind 3' -- or just roll back 3 messages&lt;/p&gt;

&lt;p&gt;This is git-branch thinking applied to your AI workflow. Experiment fearlessly!&lt;/p&gt;

&lt;p&gt;Try it: '/fork' your next risky experiment and tell me what you explored 👇&lt;/p&gt;

&lt;p&gt;Get started: &lt;a href="https://docs.snowflake.com/en/user-guide/cortex-code/cortex-code-cli" rel="noopener noreferrer"&gt;https://docs.snowflake.com/en/user-guide/cortex-code/cortex-code-cli&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;Let's learn together!&lt;/p&gt;

&lt;h1&gt;
  
  
  CortexCode #Snowflake #AI #Developers #DataEngineering #Productivity
&lt;/h1&gt;

</description>
      <category>ai</category>
      <category>cli</category>
      <category>productivity</category>
      <category>tooling</category>
    </item>
    <item>
      <title>[DYK with Dash] Cortex Code has a secret weapon most people walk right past!</title>
      <dc:creator>Dash</dc:creator>
      <pubDate>Thu, 19 Mar 2026 00:34:54 +0000</pubDate>
      <link>https://dev.to/snowflake/dyk-with-dash-cortex-code-has-a-secret-weapon-most-people-walk-right-past-4al5</link>
      <guid>https://dev.to/snowflake/dyk-with-dash-cortex-code-has-a-secret-weapon-most-people-walk-right-past-4al5</guid>
      <description>&lt;p&gt;❄️ Type &lt;code&gt;#DB.SCHEMA.TABLE&lt;/code&gt; directly in your Snowflake Cortex Code prompt and BOOM -- it auto-injects the full column metadata, primary keys, row count, and sample rows into context. No more copy-pasting DESCRIBE output. No more guessing column names.&lt;/p&gt;

&lt;p&gt;👉 Just prefix any fully-qualified table name with &lt;code&gt;#&lt;/code&gt; and the agent instantly knows your schema&lt;br&gt;
👉 Autocomplete kicks in after you type &lt;code&gt;#&lt;/code&gt;&lt;br&gt;
👉 Works with any table in your Snowflake account&lt;/p&gt;

&lt;p&gt;Stop manually feeding context. Let the CLI do it for you!&lt;/p&gt;

&lt;p&gt;Try this right now: type &lt;code&gt;#&lt;/code&gt; and pick a table -- then drop your result in the comments 👇&lt;/p&gt;

&lt;p&gt;📖 Docs: &lt;a href="https://docs.snowflake.com/en/user-guide/cortex-code/cortex-code-cli" rel="noopener noreferrer"&gt;https://docs.snowflake.com/en/user-guide/cortex-code/cortex-code-cli&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
