-
Notifications
You must be signed in to change notification settings - Fork 0
Getting Started
viamu edited this page Mar 1, 2026
·
3 revisions
| Requirement | Link |
|---|---|
| .NET 10 SDK | Download |
| Claude Code CLI | Getting Started |
| Anthropic API key | Console |
npm install -g @anthropic-ai/claude-codeAfter installing, authenticate and verify:
claude login
claude --versionNote
For detailed setup instructions, see the Claude Code documentation.
git clone https://github.com/viamus/code-genesis.git
cd code-genesisdotnet builddotnet run --project CodeGenesis.Engine -- run-pipeline examples/hello-world.ymlOverride input variables from the command line:
dotnet run --project CodeGenesis.Engine -- run-pipeline examples/hello-world.yml \
--input task="Create a Python calculator" \
--input language="python"dotnet run --project CodeGenesis.Engine -- run "Add retry logic to the HttpClient service"Tip
Use --max-turns 0 for unlimited agentic turns on complex tasks. See CLI Reference for all options.