-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaura.config.example.yml
More file actions
42 lines (34 loc) · 1.1 KB
/
aura.config.example.yml
File metadata and controls
42 lines (34 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# AURA configuration — copy to aura.config.yml at the root of your repo and edit.
# Secrets belong in CI env vars. This file only holds the env var *names*.
project: "my-project"
# weekly | on-merge | both
trigger: weekly
schedule: "friday-5pm" # documentation only — the real cron lives in your CI workflow
# Pydantic AI model string. Open AURA uses the same typed output schemas for
# Anthropic and OpenAI responses.
# - Anthropic: set ANTHROPIC_API_KEY in CI
# - OpenAI: set OPENAI_API_KEY in CI
model: "anthropic:claude-sonnet-4-6"
# model: "openai:gpt-5.2"
signals:
# Enable at least one source. Remove a block to disable that connector.
github:
repo: "owner/repository"
token_env: GITHUB_TOKEN
default_branch: main
# azuredevops:
# org_env: AZURE_DEVOPS_ORG
# project_env: AZURE_DEVOPS_PROJECT
# token_env: AZURE_DEVOPS_TOKEN
# team: "My Team"
# repos:
# - backend
# - frontend
kpis:
- throughput
- cycle_time
- blockers
- bug_count
custom_kpis: []
output:
folder: "aura-docs" # where weekly briefs are written (relative to repo root)