breakroom 2.1.0 → 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 +41 -0
  2. package/package.json +1 -1
package/bin/setup.js CHANGED
@@ -47,17 +47,58 @@ const banner = () => {
47
47
  };
48
48
 
49
49
  const CANDIDATE_FILES = [
50
+ // Project-level agent/IDE configs
50
51
  ['.env'],
51
52
  ['.env.local'],
52
53
  ['.cursor', 'mcp.json'],
53
54
  ['.cursor', 'settings.json'],
54
55
  ['.vscode', 'settings.json'],
56
+ ['.vscode', 'mcp.json'],
55
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'],
56
79
  ['litellm.yaml'],
57
80
  ['litellm.yml'],
81
+ ['CLAUDE.md'],
82
+ ['.continuerc.json'],
83
+ ['.aider.conf.yml'],
84
+ ['.github', 'copilot-instructions.md'],
85
+ ['.github', 'copilot-instructions', 'copilot-instructions.md'],
86
+ // User-level agent/IDE configs
58
87
  [os.homedir(), '.hermes', 'config.yaml'],
59
88
  [os.homedir(), '.litellm', 'config.yaml'],
89
+ [os.homedir(), '.claude', 'settings.json'],
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'],
60
97
  [os.homedir(), '.config', 'breakroom', 'config.yaml'],
98
+ [os.homedir(), '.config', 'openclaw', 'config.yaml'],
99
+ [os.homedir(), '.openclaw', 'config.yaml'],
100
+ [os.homedir(), '.config', 'trae', 'config.json'],
101
+ [os.homedir(), '.config', 'codex', 'config.json'],
61
102
  ];
62
103
 
63
104
  function candidateFiles() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "breakroom",
3
- "version": "2.1.0",
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"