snowflake

Installation
SKILL.md

Troubleshooting

If requests fail, run zero doctor check-connector --env-name SNOWFLAKE_PAT or zero doctor check-connector --url https://$SNOWFLAKE_ACCOUNT.snowflakecomputing.com/api/v2/databases --method GET

Error 390432: Network policy is required

Snowflake refuses PAT authentication for any user that is not bound to a network policy. The account admin must attach one before the PAT can authenticate. Steps (perform in Snowsight):

  1. Open https://app.snowflake.com and sign in with an ACCOUNTADMIN or SECURITYADMIN role.

  2. In the left sidebar go to Projects → Worksheets and open (or create) a SQL worksheet.

  3. Run SHOW USERS; and note the value in the name column for the PAT-owning user.

  4. Run the policy creation statement on its own:

    CREATE NETWORK POLICY pat_policy ALLOWED_IP_LIST = ('0.0.0.0/0');
    
  5. Then run the user binding statement on its own (replace USER_NAME with the value from step 3 — no quotes):

Installs
8
GitHub Stars
64
First Seen
May 19, 2026
snowflake — vm0-ai/vm0-skills