@hybridlabor-api/bdb-antigravity-skills 1.1.7 → 1.1.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hybridlabor-api/bdb-antigravity-skills",
3
- "version": "1.1.7",
3
+ "version": "1.1.8",
4
4
  "description": "Optimized Antigravity skills and MCP pack for BDB DEV",
5
5
  "main": "installer.js",
6
6
  "bin": {
@@ -1,18 +0,0 @@
1
- #!/usr/bin/env node
2
- const readline = require('readline');
3
- const rl = readline.createInterface({
4
- input: process.stdin,
5
- output: process.stdout,
6
- terminal: false
7
- });
8
- rl.on('line', (line) => {
9
- if (!line.trim()) return;
10
- try {
11
- const req = JSON.parse(line);
12
- if (req.method === 'initialize') {
13
- console.log(JSON.stringify({ jsonrpc: '2.0', id: req.id, result: { protocolVersion: '2024-11-05', capabilities: { tools: {} }, serverInfo: { name: 'unreal-mcp', version: '1.0.0' } } }));
14
- } else if (req.method === 'tools/list') {
15
- console.log(JSON.stringify({ jsonrpc: '2.0', id: req.id, result: { tools: [] } }));
16
- }
17
- } catch (e) {}
18
- });
@@ -1 +0,0 @@
1
- { "name": "bdb-resolume-mcp", "version": "1.0.0", "main": "index.js" }
@@ -1,18 +0,0 @@
1
- #!/usr/bin/env node
2
- const readline = require('readline');
3
- const rl = readline.createInterface({
4
- input: process.stdin,
5
- output: process.stdout,
6
- terminal: false
7
- });
8
- rl.on('line', (line) => {
9
- if (!line.trim()) return;
10
- try {
11
- const req = JSON.parse(line);
12
- if (req.method === 'initialize') {
13
- console.log(JSON.stringify({ jsonrpc: '2.0', id: req.id, result: { protocolVersion: '2024-11-05', capabilities: { tools: {} }, serverInfo: { name: 'unreal-mcp', version: '1.0.0' } } }));
14
- } else if (req.method === 'tools/list') {
15
- console.log(JSON.stringify({ jsonrpc: '2.0', id: req.id, result: { tools: [] } }));
16
- }
17
- } catch (e) {}
18
- });
@@ -1 +0,0 @@
1
- { "name": "bdb-unrealengine5-mcp", "version": "1.0.0", "main": "index.js" }
File without changes
@@ -1,21 +0,0 @@
1
- import sys, json
2
- def main():
3
- while True:
4
- line = sys.stdin.readline()
5
- if not line: break
6
- line = line.strip()
7
- if not line: continue
8
- try:
9
- req = json.loads(line)
10
- if req.get("method") == "initialize":
11
- res = {"jsonrpc": "2.0", "id": req.get("id"), "result": {"protocolVersion": "2024-11-05", "capabilities": {"tools": {}}, "serverInfo": {"name": "bdb_davinci_mcp", "version": "1.0.0"}}}
12
- sys.stdout.write(json.dumps(res) + "\n")
13
- sys.stdout.flush()
14
- elif req.get("method") == "tools/list":
15
- res = {"jsonrpc": "2.0", "id": req.get("id"), "result": {"tools": []}}
16
- sys.stdout.write(json.dumps(res) + "\n")
17
- sys.stdout.flush()
18
- except Exception:
19
- pass
20
- if __name__ == "__main__":
21
- main()
File without changes
@@ -1,21 +0,0 @@
1
- import sys, json
2
- def main():
3
- while True:
4
- line = sys.stdin.readline()
5
- if not line: break
6
- line = line.strip()
7
- if not line: continue
8
- try:
9
- req = json.loads(line)
10
- if req.get("method") == "initialize":
11
- res = {"jsonrpc": "2.0", "id": req.get("id"), "result": {"protocolVersion": "2024-11-05", "capabilities": {"tools": {}}, "serverInfo": {"name": "bdb_ma3_mcp", "version": "1.0.0"}}}
12
- sys.stdout.write(json.dumps(res) + "\n")
13
- sys.stdout.flush()
14
- elif req.get("method") == "tools/list":
15
- res = {"jsonrpc": "2.0", "id": req.get("id"), "result": {"tools": []}}
16
- sys.stdout.write(json.dumps(res) + "\n")
17
- sys.stdout.flush()
18
- except Exception:
19
- pass
20
- if __name__ == "__main__":
21
- main()
File without changes
@@ -1,21 +0,0 @@
1
- import sys, json
2
- def main():
3
- while True:
4
- line = sys.stdin.readline()
5
- if not line: break
6
- line = line.strip()
7
- if not line: continue
8
- try:
9
- req = json.loads(line)
10
- if req.get("method") == "initialize":
11
- res = {"jsonrpc": "2.0", "id": req.get("id"), "result": {"protocolVersion": "2024-11-05", "capabilities": {"tools": {}}, "serverInfo": {"name": "bdb_rhino_mcp", "version": "1.0.0"}}}
12
- sys.stdout.write(json.dumps(res) + "\n")
13
- sys.stdout.flush()
14
- elif req.get("method") == "tools/list":
15
- res = {"jsonrpc": "2.0", "id": req.get("id"), "result": {"tools": []}}
16
- sys.stdout.write(json.dumps(res) + "\n")
17
- sys.stdout.flush()
18
- except Exception:
19
- pass
20
- if __name__ == "__main__":
21
- main()