oh-my-droid 1.0.0 → 1.0.1

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/bin/cli.js CHANGED
@@ -83,13 +83,7 @@ function install() {
83
83
  }
84
84
  }
85
85
 
86
- // Copy mcp.json if not exists
87
- const mcpSrc = path.join(srcFactory, 'mcp.json');
88
- const mcpDest = path.join(targetDir, 'mcp.json');
89
- if (fs.existsSync(mcpSrc) && !fs.existsSync(mcpDest)) {
90
- fs.copyFileSync(mcpSrc, mcpDest);
91
- console.log(' Copied mcp.json');
92
- }
86
+
93
87
 
94
88
  // Update AGENTS.md
95
89
  const agentsContent = getAgentsContent();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oh-my-droid",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Droid toolkit - 27 Droids, 21 Commands, 14 Skills",
5
5
  "bin": {
6
6
  "oh-my-droid": "./bin/cli.js"
package/.factory/mcp.json DELETED
@@ -1,8 +0,0 @@
1
- {
2
- "mcpServers": {
3
- "context7": {
4
- "type": "http",
5
- "url": "https://mcp.context7.com/mcp"
6
- }
7
- }
8
- }