-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
33 lines (33 loc) · 1.6 KB
/
Copy pathconfig.example.json
File metadata and controls
33 lines (33 loc) · 1.6 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
{
"_instructions": {
"github_handle": "Your GitHub username",
"slack_user_id": "Slack > click your avatar > Profile > ⋯ > Copy member ID",
"linear_user_id": "Run the 'Get Viewer' request in the Postman collection",
"notion_user_id": "Run the 'Get Current User' request in the Postman collection",
"email": "Your primary work email",
"linear_api_key": "Linear > Settings > API > Personal API keys > Create key",
"notion_api_key": "notion.com/my-integrations > New integration > copy Internal Integration Token",
"slack_api_token": "api.slack.com/apps > User Token Scopes: search:read > install > copy User OAuth Token (xoxp-...)",
"enabled_enrichments": "Optional AI sub-calls that run between fetch and aggregate. Each makes targeted LLM calls to enrich specific data. All default to false — enable one at a time and check the token cost before turning on for default use."
},
"enabled_services": {
"github": true,
"linear": true,
"notion": true,
"slack": true
},
"enabled_enrichments": {
"analyze_diff": false,
"extract_thread": false,
"link_tickets": false,
"classify_review": false
},
"github_handle": "YOUR_GITHUB_USERNAME",
"slack_user_id": "YOUR_SLACK_USER_ID",
"linear_user_id": "YOUR_LINEAR_USER_UUID",
"notion_user_id": "YOUR_NOTION_USER_UUID",
"email": "you@example.com",
"linear_api_key": "lin_api_XXXXXXXXXXXXXXXXXXXXXXXX",
"notion_api_key": "ntn_XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
"slack_api_token": "xoxp-XXXXXXXXXXXX-XXXXXXXXXXXX-XXXXXXXXXXXXX-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
}