breakroom 2.1.1 → 2.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/bin/setup.js +29 -3
  2. package/package.json +1 -1
package/bin/setup.js CHANGED
@@ -55,24 +55,50 @@ const CANDIDATE_FILES = [
55
55
  ['.vscode', 'settings.json'],
56
56
  ['.vscode', 'mcp.json'],
57
57
  ['.windsurf', 'settings.json'],
58
+ ['.trae', 'settings.json'],
59
+ ['.trae', 'mcp.json'],
60
+ ['.codex', 'config.json'],
61
+ ['.codex', 'setup.json'],
62
+ ['.opencode.json'],
63
+ ['.opencode.jsonc'],
64
+ ['AGENTS.md'],
65
+ ['AGENT.md'],
66
+ ['.cursorrules'],
67
+ ['.windsurfrules'],
68
+ ['.openclaw', 'config.yaml'],
69
+ ['.openclaw', 'config.yml'],
70
+ ['.cline', 'cline.json'],
71
+ ['.cline', 'settings.json'],
72
+ ['.clinerules'],
73
+ ['.cody.json'],
74
+ ['.tabby', 'config.json'],
75
+ ['.amazonq', 'config.json'],
76
+ ['.supermaven', 'config.json'],
77
+ ['.augment', 'config.json'],
78
+ ['.hermes', 'config.yaml'],
58
79
  ['litellm.yaml'],
59
80
  ['litellm.yml'],
60
81
  ['CLAUDE.md'],
61
- ['.clinerules'],
62
82
  ['.continuerc.json'],
63
83
  ['.aider.conf.yml'],
64
84
  ['.github', 'copilot-instructions.md'],
65
85
  ['.github', 'copilot-instructions', 'copilot-instructions.md'],
66
- ['.openclaw', 'config.yaml'],
67
- ['.openclaw', 'config.yml'],
68
86
  // User-level agent/IDE configs
69
87
  [os.homedir(), '.hermes', 'config.yaml'],
70
88
  [os.homedir(), '.litellm', 'config.yaml'],
71
89
  [os.homedir(), '.claude', 'settings.json'],
72
90
  [os.homedir(), '.continue', 'config.json'],
91
+ [os.homedir(), '.codex', 'config.json'],
92
+ [os.homedir(), '.goose', 'config.yaml'],
93
+ [os.homedir(), '.opencode.json'],
94
+ [os.homedir(), '.opencode.jsonc'],
95
+ [os.homedir(), '.config', 'opencode.json'],
96
+ [os.homedir(), '.config', 'opencode.jsonc'],
73
97
  [os.homedir(), '.config', 'breakroom', 'config.yaml'],
74
98
  [os.homedir(), '.config', 'openclaw', 'config.yaml'],
75
99
  [os.homedir(), '.openclaw', 'config.yaml'],
100
+ [os.homedir(), '.config', 'trae', 'config.json'],
101
+ [os.homedir(), '.config', 'codex', 'config.json'],
76
102
  ];
77
103
 
78
104
  function candidateFiles() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "breakroom",
3
- "version": "2.1.1",
3
+ "version": "2.1.2",
4
4
  "description": "Paid-license proxy routing for agents that get stuck in loops.",
5
5
  "bin": {
6
6
  "breakroom": "./bin/setup.js"