.agents/skills/stage/SKILL.md
Move files from the landing area to the pending area
npx skillsauth add starlake-ai/starlake-skills stageInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Moves data files from the landing area to the pending area, applying decompression and acknowledgment (ACK) file handling along the way. This is typically the first step in the ingestion pipeline before the load command processes the files.
starlake stage [options]
--domains <value>: Comma-separated list of domains to stage (default: all)--tables <value>: Comma-separated list of tables to stage (default: all)--options k1=v1,k2=v2: Substitution arguments for the stage process--reportFormat <value>: Report output format: console, json, or htmlloadlanding/ → pending/ → (load processes)
└── starbake/ └── starbake/
├── orders.json ├── orders.json
└── orders.ack └── (ack consumed)
Configure acknowledgment files in the domain _config.sl.yml:
# metadata/load/starbake/_config.sl.yml
version: 1
load:
name: "starbake"
metadata:
directory: "{{incoming_path}}/starbake" # this is the landing area
ack: "ack" # Require .ack file before processing if defined
starlake stage
starlake stage --domains starbake
starlake stage --domains starbake --tables orders,products
starlake stage --reportFormat json
development
Design SQL transformations for data pipelines with quality checks and dependency management. Use when the user says "design transforms" or "create SQL transformations".
devops
Plan and track sprint progress for data pipeline implementation. Use when the user says "sprint planning" or "plan data sprint".
testing
Analyze data sources in depth: schema, quality, volume, and extraction strategy. Use when the user says "analyze data source" or "profile this data source".
data-ai
Design Starlake-compatible table schemas with types, constraints, privacy, and expectations. Use when the user says "design schema" or "create table definition".