claude-all-config 2.1.3 → 2.1.4
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.
- package/install.sh +31 -0
- package/package.json +1 -1
- package/postinstall.js +30 -0
package/install.sh
CHANGED
|
@@ -177,8 +177,39 @@ executing-plans, and more...
|
|
|
177
177
|
|
|
178
178
|
## MCP Servers (6)
|
|
179
179
|
context7, exa, sequential-thinking, memory, filesystem, fetch
|
|
180
|
+
|
|
181
|
+
## Usage
|
|
182
|
+
Run with YOLO mode: gemini -y
|
|
180
183
|
EOF
|
|
181
184
|
echo -e " ${GREEN}✅ GEMINI.md${NC}"
|
|
185
|
+
|
|
186
|
+
# Create settings.json with auto-approve all tools
|
|
187
|
+
cat > "$HOME/.gemini/settings.json" << 'EOF'
|
|
188
|
+
{
|
|
189
|
+
"tools": {
|
|
190
|
+
"allowed": [
|
|
191
|
+
"run_shell_command(*)",
|
|
192
|
+
"read_file(*)",
|
|
193
|
+
"write_file(*)",
|
|
194
|
+
"edit_file(*)",
|
|
195
|
+
"glob(*)",
|
|
196
|
+
"grep(*)",
|
|
197
|
+
"web_search(*)",
|
|
198
|
+
"list_directory(*)",
|
|
199
|
+
"search_files(*)"
|
|
200
|
+
],
|
|
201
|
+
"autoAccept": true
|
|
202
|
+
},
|
|
203
|
+
"privacy": {
|
|
204
|
+
"usageStatisticsEnabled": false
|
|
205
|
+
},
|
|
206
|
+
"ui": {
|
|
207
|
+
"hideBanner": false,
|
|
208
|
+
"hideTips": true
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
EOF
|
|
212
|
+
echo -e " ${GREEN}✅ settings.json (auto-approve tools)${NC}"
|
|
182
213
|
}
|
|
183
214
|
|
|
184
215
|
# Run installations
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-all-config",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.4",
|
|
4
4
|
"description": "🤖 Universal AI CLI Config - Claude Code + Gemini CLI with Agents, Skills, MCP Servers, 17+ Providers (MiniMax, OpenAI, xAI, Groq, DeepSeek, Letta & More)",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
package/postinstall.js
CHANGED
|
@@ -190,9 +190,39 @@ executing-plans, and more...
|
|
|
190
190
|
|
|
191
191
|
## MCP Servers (6)
|
|
192
192
|
context7, exa, sequential-thinking, memory, filesystem, fetch
|
|
193
|
+
|
|
194
|
+
## Usage
|
|
195
|
+
Run with YOLO mode: gemini -y
|
|
193
196
|
`;
|
|
194
197
|
fs.writeFileSync(path.join(GEMINI_DIR, 'GEMINI.md'), geminiMd);
|
|
195
198
|
console.log(` 📄 GEMINI.md`);
|
|
199
|
+
|
|
200
|
+
// Settings.json with auto-approve tools
|
|
201
|
+
const geminiSettings = {
|
|
202
|
+
tools: {
|
|
203
|
+
allowed: [
|
|
204
|
+
"run_shell_command(*)",
|
|
205
|
+
"read_file(*)",
|
|
206
|
+
"write_file(*)",
|
|
207
|
+
"edit_file(*)",
|
|
208
|
+
"glob(*)",
|
|
209
|
+
"grep(*)",
|
|
210
|
+
"web_search(*)",
|
|
211
|
+
"list_directory(*)",
|
|
212
|
+
"search_files(*)"
|
|
213
|
+
],
|
|
214
|
+
autoAccept: true
|
|
215
|
+
},
|
|
216
|
+
privacy: {
|
|
217
|
+
usageStatisticsEnabled: false
|
|
218
|
+
},
|
|
219
|
+
ui: {
|
|
220
|
+
hideBanner: false,
|
|
221
|
+
hideTips: true
|
|
222
|
+
}
|
|
223
|
+
};
|
|
224
|
+
fs.writeFileSync(path.join(GEMINI_DIR, 'settings.json'), JSON.stringify(geminiSettings, null, 2));
|
|
225
|
+
console.log(` ⚙️ settings.json (auto-approve tools)`);
|
|
196
226
|
}
|
|
197
227
|
|
|
198
228
|
// Run installations
|