flockbay 0.10.15
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/README.md +56 -0
- package/bin/flockbay-mcp.mjs +56 -0
- package/bin/flockbay.mjs +78 -0
- package/dist/codex/flockbayMcpStdioBridge.cjs +383 -0
- package/dist/codex/flockbayMcpStdioBridge.d.cts +2 -0
- package/dist/codex/flockbayMcpStdioBridge.d.mts +2 -0
- package/dist/codex/flockbayMcpStdioBridge.mjs +381 -0
- package/dist/flockbayScreenshotGate-DJX3Is5d.mjs +136 -0
- package/dist/flockbayScreenshotGate-DkxU24cR.cjs +138 -0
- package/dist/index--o4BPz5o.cjs +10311 -0
- package/dist/index-CUp3juDS.mjs +10268 -0
- package/dist/index.cjs +43 -0
- package/dist/index.d.cts +1 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.mjs +40 -0
- package/dist/lib.cjs +33 -0
- package/dist/lib.d.cts +957 -0
- package/dist/lib.d.mts +957 -0
- package/dist/lib.mjs +23 -0
- package/dist/runCodex-D3eT-TvB.cjs +3449 -0
- package/dist/runCodex-o6PCbHQ7.mjs +3446 -0
- package/dist/runGemini-Bt0oEj_g.mjs +3183 -0
- package/dist/runGemini-CBxZp6I7.cjs +3185 -0
- package/dist/types-C-jnUdn_.cjs +4498 -0
- package/dist/types-DGd6ea2Z.mjs +4450 -0
- package/kits/kit.open_world/kit.json +59 -0
- package/package.json +130 -0
- package/scripts/claude_local_launcher.cjs +73 -0
- package/scripts/claude_remote_launcher.cjs +16 -0
- package/scripts/claude_version_utils.cjs +391 -0
- package/scripts/ripgrep_launcher.cjs +33 -0
- package/scripts/session_hook_forwarder.cjs +49 -0
- package/scripts/test-codex-abort-history.mjs +77 -0
- package/scripts/unpack-tools.cjs +222 -0
- package/tools/licenses/difftastic-LICENSE +21 -0
- package/tools/licenses/ripgrep-LICENSE +3 -0
- package/tools/unreal-mcp/UPSTREAM_VERSION.md +8 -0
- package/tools/unreal-mcp/upstream/Docs/README.md +8 -0
- package/tools/unreal-mcp/upstream/Docs/Tools/README.md +7 -0
- package/tools/unreal-mcp/upstream/Docs/Tools/actor_tools.md +184 -0
- package/tools/unreal-mcp/upstream/Docs/Tools/blueprint_tools.md +268 -0
- package/tools/unreal-mcp/upstream/Docs/Tools/editor_tools.md +104 -0
- package/tools/unreal-mcp/upstream/Docs/Tools/node_tools.md +274 -0
- package/tools/unreal-mcp/upstream/MCPGameProject/Plugins/UnrealMCP/Config/FilterPlugin.ini +8 -0
- package/tools/unreal-mcp/upstream/MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/Private/Commands/UnrealMCPBlueprintCommands.cpp +1160 -0
- package/tools/unreal-mcp/upstream/MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/Private/Commands/UnrealMCPBlueprintNodeCommands.cpp +924 -0
- package/tools/unreal-mcp/upstream/MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/Private/Commands/UnrealMCPCommonUtils.cpp +709 -0
- package/tools/unreal-mcp/upstream/MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/Private/Commands/UnrealMCPEditorCommands.cpp +896 -0
- package/tools/unreal-mcp/upstream/MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/Private/Commands/UnrealMCPProjectCommands.cpp +72 -0
- package/tools/unreal-mcp/upstream/MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/Private/Commands/UnrealMCPUMGCommands.cpp +544 -0
- package/tools/unreal-mcp/upstream/MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/Private/MCPServerRunnable.cpp +321 -0
- package/tools/unreal-mcp/upstream/MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/Private/UnrealMCPBridge.cpp +419 -0
- package/tools/unreal-mcp/upstream/MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/Private/UnrealMCPModule.cpp +21 -0
- package/tools/unreal-mcp/upstream/MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/Public/Commands/UnrealMCPBlueprintCommands.h +34 -0
- package/tools/unreal-mcp/upstream/MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/Public/Commands/UnrealMCPBlueprintNodeCommands.h +27 -0
- package/tools/unreal-mcp/upstream/MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/Public/Commands/UnrealMCPCommonUtils.h +59 -0
- package/tools/unreal-mcp/upstream/MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/Public/Commands/UnrealMCPEditorCommands.h +40 -0
- package/tools/unreal-mcp/upstream/MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/Public/Commands/UnrealMCPProjectCommands.h +20 -0
- package/tools/unreal-mcp/upstream/MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/Public/Commands/UnrealMCPUMGCommands.h +82 -0
- package/tools/unreal-mcp/upstream/MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/Public/MCPServerRunnable.h +34 -0
- package/tools/unreal-mcp/upstream/MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/Public/UnrealMCPBridge.h +64 -0
- package/tools/unreal-mcp/upstream/MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/Public/UnrealMCPModule.h +22 -0
- package/tools/unreal-mcp/upstream/MCPGameProject/Plugins/UnrealMCP/Source/UnrealMCP/UnrealMCP.Build.cs +78 -0
- package/tools/unreal-mcp/upstream/MCPGameProject/Plugins/UnrealMCP/UnrealMCP.uplugin +36 -0
- package/tools/unreal-mcp/upstream/Python/README.md +40 -0
- package/tools/unreal-mcp/upstream/Python/pyproject.toml +22 -0
- package/tools/unreal-mcp/upstream/Python/scripts/actors/test_cube.py +203 -0
- package/tools/unreal-mcp/upstream/Python/scripts/blueprints/test_create_and_spawn_blueprints_with_different_components.py +497 -0
- package/tools/unreal-mcp/upstream/Python/scripts/blueprints/test_create_and_spawn_cube_blueprint.py +194 -0
- package/tools/unreal-mcp/upstream/Python/scripts/node/test_component_reference.py +267 -0
- package/tools/unreal-mcp/upstream/Python/scripts/node/test_create_bird_blueprint_with_input_and_camera.py +618 -0
- package/tools/unreal-mcp/upstream/Python/scripts/node/test_input_mapping.py +366 -0
- package/tools/unreal-mcp/upstream/Python/scripts/node/test_physics_variables.py +390 -0
- package/tools/unreal-mcp/upstream/Python/tools/blueprint_tools.py +420 -0
- package/tools/unreal-mcp/upstream/Python/tools/editor_tools.py +369 -0
- package/tools/unreal-mcp/upstream/Python/tools/node_tools.py +430 -0
- package/tools/unreal-mcp/upstream/Python/tools/project_tools.py +64 -0
- package/tools/unreal-mcp/upstream/Python/tools/umg_tools.py +333 -0
- package/tools/unreal-mcp/upstream/Python/unreal_mcp_server.py +398 -0
- package/tools/unreal-mcp/upstream/Python/uv.lock +521 -0
package/dist/index.cjs
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
require('chalk');
|
|
4
|
+
require('./index--o4BPz5o.cjs');
|
|
5
|
+
require('./types-C-jnUdn_.cjs');
|
|
6
|
+
require('zod');
|
|
7
|
+
require('node:child_process');
|
|
8
|
+
require('node:fs');
|
|
9
|
+
require('node:readline');
|
|
10
|
+
require('node:os');
|
|
11
|
+
require('node:crypto');
|
|
12
|
+
require('node:path');
|
|
13
|
+
require('node:process');
|
|
14
|
+
require('node:fs/promises');
|
|
15
|
+
require('fs/promises');
|
|
16
|
+
require('ink');
|
|
17
|
+
require('react');
|
|
18
|
+
require('node:url');
|
|
19
|
+
require('axios');
|
|
20
|
+
require('node:events');
|
|
21
|
+
require('socket.io-client');
|
|
22
|
+
require('tweetnacl');
|
|
23
|
+
require('child_process');
|
|
24
|
+
require('crypto');
|
|
25
|
+
require('path');
|
|
26
|
+
require('os');
|
|
27
|
+
require('node:net');
|
|
28
|
+
require('expo-server-sdk');
|
|
29
|
+
require('fs');
|
|
30
|
+
require('ps-list');
|
|
31
|
+
require('cross-spawn');
|
|
32
|
+
require('tmp');
|
|
33
|
+
require('qrcode-terminal');
|
|
34
|
+
require('open');
|
|
35
|
+
require('fastify');
|
|
36
|
+
require('fastify-type-provider-zod');
|
|
37
|
+
require('@modelcontextprotocol/sdk/server/mcp.js');
|
|
38
|
+
require('node:http');
|
|
39
|
+
require('@modelcontextprotocol/sdk/server/streamableHttp.js');
|
|
40
|
+
require('http');
|
|
41
|
+
require('util');
|
|
42
|
+
require('url');
|
|
43
|
+
|
package/dist/index.d.cts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
package/dist/index.mjs
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import 'chalk';
|
|
2
|
+
import './index-CUp3juDS.mjs';
|
|
3
|
+
import './types-DGd6ea2Z.mjs';
|
|
4
|
+
import 'zod';
|
|
5
|
+
import 'node:child_process';
|
|
6
|
+
import 'node:fs';
|
|
7
|
+
import 'node:readline';
|
|
8
|
+
import 'node:os';
|
|
9
|
+
import 'node:crypto';
|
|
10
|
+
import 'node:path';
|
|
11
|
+
import 'node:process';
|
|
12
|
+
import 'node:fs/promises';
|
|
13
|
+
import 'fs/promises';
|
|
14
|
+
import 'ink';
|
|
15
|
+
import 'react';
|
|
16
|
+
import 'node:url';
|
|
17
|
+
import 'axios';
|
|
18
|
+
import 'node:events';
|
|
19
|
+
import 'socket.io-client';
|
|
20
|
+
import 'tweetnacl';
|
|
21
|
+
import 'child_process';
|
|
22
|
+
import 'crypto';
|
|
23
|
+
import 'path';
|
|
24
|
+
import 'os';
|
|
25
|
+
import 'node:net';
|
|
26
|
+
import 'expo-server-sdk';
|
|
27
|
+
import 'fs';
|
|
28
|
+
import 'ps-list';
|
|
29
|
+
import 'cross-spawn';
|
|
30
|
+
import 'tmp';
|
|
31
|
+
import 'qrcode-terminal';
|
|
32
|
+
import 'open';
|
|
33
|
+
import 'fastify';
|
|
34
|
+
import 'fastify-type-provider-zod';
|
|
35
|
+
import '@modelcontextprotocol/sdk/server/mcp.js';
|
|
36
|
+
import 'node:http';
|
|
37
|
+
import '@modelcontextprotocol/sdk/server/streamableHttp.js';
|
|
38
|
+
import 'http';
|
|
39
|
+
import 'util';
|
|
40
|
+
import 'url';
|
package/dist/lib.cjs
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var types = require('./types-C-jnUdn_.cjs');
|
|
4
|
+
require('axios');
|
|
5
|
+
require('chalk');
|
|
6
|
+
require('fs');
|
|
7
|
+
require('node:fs');
|
|
8
|
+
require('node:os');
|
|
9
|
+
require('node:path');
|
|
10
|
+
require('node:fs/promises');
|
|
11
|
+
require('zod');
|
|
12
|
+
require('node:crypto');
|
|
13
|
+
require('tweetnacl');
|
|
14
|
+
require('node:events');
|
|
15
|
+
require('socket.io-client');
|
|
16
|
+
require('node:child_process');
|
|
17
|
+
require('child_process');
|
|
18
|
+
require('fs/promises');
|
|
19
|
+
require('crypto');
|
|
20
|
+
require('path');
|
|
21
|
+
require('url');
|
|
22
|
+
require('node:process');
|
|
23
|
+
require('os');
|
|
24
|
+
require('node:net');
|
|
25
|
+
require('expo-server-sdk');
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
exports.ApiClient = types.ApiClient;
|
|
30
|
+
exports.ApiSessionClient = types.ApiSessionClient;
|
|
31
|
+
exports.RawJSONLinesSchema = types.RawJSONLinesSchema;
|
|
32
|
+
exports.configuration = types.configuration;
|
|
33
|
+
exports.logger = types.logger;
|