File size: 1,239 Bytes
12b0018
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
57
58
59
60
61
62
63
{
  "modelName": "openai/gpt-4o",
  "baseUrl": "https://openrouter.ai/api/v1",
  "temperature": 0.2,
  "top_p": 0.95,
  "max_tokens": 4096,
  "systemPromptPath": "system/offering-rules.md",
  "projectRulesPath": "system/project-rules.md",
  "allowedTools": [
    "file_read",
    "file_write",
    "terminal"
  ],
  "responseMode": "direct",
  "tokenSaving": true,
  "verbosity": "minimal",
  "allowExplanations": false,
  "allowSummaries": false,
  "allowNextSteps": false,
  "strictFileListOnly": true,
  "strictProjectScope": true,
  "lowRestrictionCodingMode": true,
  "allowedTerminalCommands": {
    "npm": [
      {
        "args": [
          "install"
        ],
        "allowExtraArgs": true
      },
      {
        "args": [
          "run",
          "build"
        ],
        "allowExtraArgs": false
      }
    ],
    "git": [
      {
        "args": [
          "add"
        ],
        "allowExtraArgs": true
      },
      {
        "args": [
          "commit"
        ],
        "allowExtraArgs": true
      },
      {
        "args": [
          "push"
        ],
        "allowExtraArgs": false
      }
    ]
  },
  "allowFrontendFiles": false,
  "repoRoot": "./project",
  "projectMemoryRoot": "./project_memory"
}