setting-up-astro-project▌
astronomer/agents · updated Apr 8, 2026
Initialize and configure Astro/Airflow projects with dependencies, connections, and environment setup.
- ›Scaffolds complete project structure with astro dev init , including directories for DAGs, plugins, tests, and configuration files
- ›Manage Python and OS-level dependencies via requirements.txt and packages.txt , with custom Dockerfile support for complex setups
- ›Configure connections, variables, and pools declaratively in airflow_settings.yaml , with export/import commands for environ
Astro Project Setup
This skill helps you initialize and configure Airflow projects using the Astro CLI.
To run the local environment, see the managing-astro-local-env skill. To write DAGs, see the authoring-dags skill. Open-source alternative: If the user isn't on Astro, guide them to Apache Airflow's Docker Compose quickstart for local dev and the Helm chart for production. For deployment strategies, use the
deploying-airflowskill.
Initialize a New Project
astro dev init
Creates this structure:
project/
├── dags/ # DAG files
├── include/ # SQL, configs, supporting files
├── plugins/ # Custom Airflow plugins
├── tests/ # Unit tests
├── Dockerfile # Image customization
├── packages.txt # OS-level packages
├── requirements.txt # Python packages
└── airflow_settings.yaml # Connections, variables, pools
Adding Dependencies
Python Packages (requirements.txt)
apache-airflow-providers-snowflake==5.3.0
pandas==2.1.0
requests>=2.28.0
OS Packages (packages.txt)
gcc
libpq-dev
Custom Dockerfile
For complex setups (private PyPI, custom scripts):
FROM quay.io/astronomer/astro-runtime:12.4.0
RUN pip install --extra-index-url https://pypi.example.com/simple my-package
After modifying dependencies: Run astro dev restart
Configuring Connections & Variables
airflow_settings.yaml
Loaded automatically on environment start:
airflow:
connections:
- conn_id: my_postgres
conn_type: postgres
host: host.docker.internal
port: 5432
login: user
password: pass
schema: mydb
variables:
- variable_name: env
variable_value: dev
pools:
- pool_name: limited_pool
pool_slot: 5
Export/Import
# Export from running environment
astro dev object export --connections --file connections.yaml
# Import to environment
astro dev object import --connections --file connections.yaml
Validate Before Running
Parse DAGs to catch errors without starting the full environment:
astro dev parse
Related Skills
- managing-astro-local-env: Start, stop, and troubleshoot the local environment
- authoring-dags: Write and validate DAGs (uses MCP tools)
- testing-dags: Test DAGs (uses MCP tools)
- deploying-airflow: Deploy DAGs to production (Astro, Docker Compose, Kubernetes)
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.6★★★★★59 reviews- ★★★★★Xiao Park· Dec 20, 2024
setting-up-astro-project has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Naina Farah· Dec 20, 2024
Keeps context tight: setting-up-astro-project is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Isabella Thompson· Dec 20, 2024
Solid pick for teams standardizing on skills: setting-up-astro-project is focused, and the summary matches what you get after install.
- ★★★★★Naina Mensah· Dec 12, 2024
We added setting-up-astro-project from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Shikha Mishra· Dec 4, 2024
I recommend setting-up-astro-project for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Rahul Santra· Nov 23, 2024
Solid pick for teams standardizing on skills: setting-up-astro-project is focused, and the summary matches what you get after install.
- ★★★★★Diya Reddy· Nov 23, 2024
setting-up-astro-project fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Naina Abebe· Nov 11, 2024
setting-up-astro-project is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Tariq Flores· Nov 11, 2024
I recommend setting-up-astro-project for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Jin Garcia· Nov 3, 2024
Useful defaults in setting-up-astro-project — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
showing 1-10 of 59