snowflake-create-view
SkillDatabases & dataConsult Snowflake CREATE VIEW parameter reference before generating any CREATE VIEW DDL.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the snowflake-create-view skill
What this skill tells your AI
The instructions your AI receives, as published by gyrus-dev/frosty in skills/snowflake-create-view/SKILL.md and read by ahel’s review.
Before writing a CREATE VIEW statement:
- Read
references/parameters.mdto review all available parameters and their defaults. - For each parameter, decide whether the user's request implies a non-default value.
- Include only the parameters that differ from the default or that the user explicitly requested — do not bloat the DDL with unnecessary clauses.
- Never use
CREATE OR REPLACE— always useCREATE VIEW IF NOT EXISTS. - Add the SECURE keyword only when the user explicitly needs to restrict access to the view definition (e.g. hiding business logic from non-privileged users).
- Use TEMPORARY/TEMP/VOLATILE only when the view is needed for session-scoped intermediate work; it will be dropped automatically at session end.
- Use RECURSIVE only when the SELECT statement needs to reference the view itself (self-referencing query); provide an explicit column list when RECURSIVE is used.
- Enable CHANGE_TRACKING = TRUE only when the user needs to create a stream on this view or track row-level changes.
- Views share the namespace with tables — a view and a table cannot have the same name within a schema.
- The SELECT statement is limited to 95 KB; all columns derived from expressions must be given explicit aliases.
Signals
- GitHub stars
- 77
- Forks
- 9
- Last commit
- Apr 2026
Advanced
- Catalog kind
- skill
- Gateway key
snowflake-create-view- Source
- github.com/gyrus-dev/frosty