-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json.example
More file actions
56 lines (56 loc) · 1.61 KB
/
Copy pathsettings.json.example
File metadata and controls
56 lines (56 loc) · 1.61 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"indexingAllowDirs": [
"/path/to/your/code",
"/path/to/your/projects"
],
"model": "sonnet4.6",
"mcpServers": {
"claude-browser": {
"type": "stdio",
"command": "/bin/bash",
"args": [
"-c",
"cd '/path/to/claude-code-nightly-automation' && /path/to/uv run --python 3.11 --with 'mcp[cli]' --with playwright --with python-dotenv python '/path/to/claude_browser_mcp.py'"
],
"env": {
"USER_AGENT": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36",
"OKTA_PASSWORD": "{YOUR_OKTA_PASSWORD}",
"AXONIUS_BASE_URL": "https://your-company.okta.com/",
"ZENDESK_URL": "https://your-company.zendesk.com",
"DOCS_URL": "https://docs.your-company.com",
"JIRA_URL": "https://your-company.atlassian.net",
"INTERNAL_WIKI_URL": "https://wiki.your-company.com/",
"MONITORING_URL": "https://monitoring.your-company.com/"
}
},
"monitoring": {
"type": "http",
"url": "https://api.your-monitoring-service.com/mcp",
"auth": {
"type": "oauth"
}
}
},
"hooks": {
"SessionStart": [
{
"hooks": [
{
"type": "command",
"command": "cat $HOME/.augment/MEMORY/STATE/current-work.json"
}
]
}
],
"Stop": [
{
"hooks": [
{
"type": "command",
"command": "echo '{\"reminder\": \"check_reflection\", \"time\": \"'$(date -u +%Y-%m-%dT%H:%M:%SZ)'\"}' >> $HOME/.augment/MEMORY/STATE/stop-reminders.log 2>/dev/null || true"
}
]
}
]
}
}