***
title: Your first Astropods project
subtitle: Create and run your first agent locally
slug: get-started
-----------------
Go from zero to a running agent in three steps. Have the [CLI installed](/install-cli) and Docker ready. You can also [try a pre-built agent](#try-a-pre-built-agent).
Scaffold a new project:
ast create hello-astro
Use --yes to skip prompts and use defaults (HTTP interface, Anthropic model, no knowledge or tools).
Start a local dev environment with hot-reload:
cd hello-astro && ast dev
Edit code and the agent restarts automatically. Run ast configure to set API keys as needed (e.g. ANTHROPIC\_API\_KEY).
When you're ready to publish your agent to the Astropods registry, see Publish to registry. Pushing requires an account and ast login.
***
## Try a pre-built agent
We have built and shared several agents in the [astropods/agents](https://github.com/astropods/agents) open-source repo. You can try any of them with ast dev. Here's an example:
**GitHub Issue Analyzer** — Ingests GitHub issues from a repo into a Neo4j knowledge graph, enriches them with OpenAI analysis (categories, solutions, workarounds), and answers questions via Cypher queries and comment summarization. Requires `GITHUB_TOKEN` and `OPENAI_API_KEY`.
```bash
git clone git@github.com:astropods/agents.git
cd agents/github-issue-analyzer
ast configure # set required API keys
ast dev
```
***
## More commands
Run `ast --help` to see all available commands.