@spaceflow/core 0.14.0 → 0.15.0
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/dist/index.js +35 -36
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/cli-runtime/di/container.ts +12 -1
- package/src/cli-runtime/di/services.ts +3 -2
- package/src/cli-runtime/extension-loader.ts +18 -8
- package/src/commands/mcp/mcp.service.ts +6 -9
- package/src/extension-system/define-extension.ts +2 -16
- package/src/extension-system/extension.interface.ts +0 -6
- package/src/extension-system/types.ts +4 -16
- package/src/index.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@ import * as __rspack_external_zod from "zod";
|
|
|
6
6
|
import { execSync, spawn, spawnSync } from "child_process";
|
|
7
7
|
import { query as claude_agent_sdk_query } from "@anthropic-ai/claude-agent-sdk";
|
|
8
8
|
import { homedir, platform } from "os";
|
|
9
|
-
import { CONFIG_FILE_NAME, DEFAULT_EDITOR, DEFAULT_SUPPORT_EDITOR, EDITOR_DIR_MAPPING, LOG_LEVEL_PRIORITY, RC_FILE_NAME, buildGitPackageSpec, deepMerge, detectPackageManager, ensureDependencies, ensureEditorGitignore, ensureSpaceflowDir, ensureSpaceflowPackageJson, extractName, extractNpmPackageName, findConfigFileWithField, getConfigPath, getConfigPaths, getDependencies, getEditorDirName, getEnvFilePaths, getPackageManager, getSourceType, getSpaceflowCoreVersion, getSpaceflowDir, getSupportedEditors, isGitUrl, isLocalPath, isPnpmWorkspace as shared_isPnpmWorkspace, loadEnvFiles, loadExtensionsFromDir, normalizeSource, normalizeVerbose, parseVerbose, readConfigSync, removeDependency, shouldLog, toLogLevel, updateDependency, writeConfigSync } from "@spaceflow/shared";
|
|
9
|
+
import { CONFIG_FILE_NAME, DEFAULT_EDITOR, DEFAULT_SUPPORT_EDITOR, EDITOR_DIR_MAPPING, LOG_LEVEL_PRIORITY, PACKAGE_JSON, RC_FILE_NAME, SPACEFLOW_DIR, buildGitPackageSpec, deepMerge, detectPackageManager, ensureDependencies, ensureEditorGitignore, ensureSpaceflowDir, ensureSpaceflowPackageJson, extractName, extractNpmPackageName, findConfigFileWithField, findProjectRoot, getConfigPath, getConfigPaths, getDependencies, getEditorDirName, getEnvFilePaths, getPackageManager, getSourceType, getSpaceflowCoreVersion, getSpaceflowDir, getSupportedEditors, isGitUrl, isLocalPath, isPnpmWorkspace as shared_isPnpmWorkspace, loadEnvFiles, loadExtensionsFromDir, normalizeSource, normalizeVerbose, parseVerbose, readConfigSync, removeDependency, shouldLog, toLogLevel, updateDependency, writeConfigSync } from "@spaceflow/shared";
|
|
10
10
|
import openai from "openai";
|
|
11
11
|
import { createOpencode } from "@opencode-ai/sdk";
|
|
12
12
|
import { createHash, randomUUID } from "crypto";
|
|
@@ -278,7 +278,6 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
278
278
|
eC: () => (/* reexport */ LLM_ADAPTER),
|
|
279
279
|
zn: () => (/* reexport */ en_translation_namespaceObject),
|
|
280
280
|
mD: () => (/* reexport */ createStreamLoggerState),
|
|
281
|
-
jl: () => (/* reexport */ defineMcpServer),
|
|
282
281
|
ss: () => (/* reexport */ findConfigFileWithField),
|
|
283
282
|
PR: () => (/* reexport */ OUTPUT_MARKER_END),
|
|
284
283
|
_k: () => (/* reexport */ mcp_McpServer),
|
|
@@ -341,9 +340,9 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
341
340
|
});
|
|
342
341
|
|
|
343
342
|
;// CONCATENATED MODULE: ./src/extension-system/extension.interface.ts
|
|
344
|
-
/** .spaceflow 目录名 */ const SPACEFLOW_DIR = ".spaceflow";
|
|
345
|
-
/** package.json 文件名 */ const PACKAGE_JSON = "package.json";
|
|
346
343
|
/**
|
|
344
|
+
* Extension 元数据
|
|
345
|
+
*/ /**
|
|
347
346
|
* 解析 spaceflow 配置,返回所有导出项
|
|
348
347
|
*/ function resolveSpaceflowConfig(config, packageName, packagePath) {
|
|
349
348
|
const { join } = __webpack_require__(521);
|
|
@@ -384,14 +383,6 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
384
383
|
*/ function defineExtension(definition) {
|
|
385
384
|
return definition;
|
|
386
385
|
}
|
|
387
|
-
/**
|
|
388
|
-
* 定义 MCP 服务器
|
|
389
|
-
* 这是一个类型安全的工厂函数,用于创建 MCP 服务器定义
|
|
390
|
-
* @param definition MCP 服务器定义
|
|
391
|
-
* @returns MCP 服务器定义(原样返回,仅用于类型推断)
|
|
392
|
-
*/ function defineMcpServer(definition) {
|
|
393
|
-
return definition;
|
|
394
|
-
}
|
|
395
386
|
|
|
396
387
|
;// CONCATENATED MODULE: ./src/extension-system/index.ts
|
|
397
388
|
// 旧版接口(保留兼容,后续移除)
|
|
@@ -6118,12 +6109,14 @@ registerPluginSchema({
|
|
|
6118
6109
|
* 提供懒加载的依赖注入功能
|
|
6119
6110
|
*/ class ServiceContainer {
|
|
6120
6111
|
registrations = new Map();
|
|
6112
|
+
_cwd;
|
|
6121
6113
|
_config;
|
|
6122
6114
|
_output;
|
|
6123
6115
|
_storage;
|
|
6124
6116
|
/**
|
|
6125
6117
|
* 设置核心服务(config, output, storage)
|
|
6126
|
-
*/ setCoreServices(config, output, storage) {
|
|
6118
|
+
*/ setCoreServices(config, output, storage, cwd) {
|
|
6119
|
+
this._cwd = cwd;
|
|
6127
6120
|
this._config = config;
|
|
6128
6121
|
this._output = output;
|
|
6129
6122
|
this._storage = storage;
|
|
@@ -6175,6 +6168,9 @@ registerPluginSchema({
|
|
|
6175
6168
|
return undefined;
|
|
6176
6169
|
}
|
|
6177
6170
|
}
|
|
6171
|
+
get cwd() {
|
|
6172
|
+
return this._cwd;
|
|
6173
|
+
}
|
|
6178
6174
|
get config() {
|
|
6179
6175
|
return this._config;
|
|
6180
6176
|
}
|
|
@@ -6344,16 +6340,17 @@ registerPluginSchema({
|
|
|
6344
6340
|
|
|
6345
6341
|
|
|
6346
6342
|
|
|
6343
|
+
|
|
6347
6344
|
/**
|
|
6348
6345
|
* 初始化服务容器
|
|
6349
6346
|
*/ function initializeContainer(container, cwd) {
|
|
6350
|
-
const workDir = cwd || process.
|
|
6347
|
+
const workDir = cwd || process.env.SPACEFLOW_CWD || findProjectRoot();
|
|
6351
6348
|
// 初始化核心服务(.env 已在 CLI 壳子阶段加载)
|
|
6352
6349
|
const config = new UnifiedConfigReader(workDir);
|
|
6353
6350
|
const output = new OutputService();
|
|
6354
6351
|
const storageDir = (0,external_path_.join)(workDir, ".spaceflow", "cache");
|
|
6355
6352
|
const storage = new StorageService(new FileAdapter(storageDir));
|
|
6356
|
-
container.setCoreServices(config, output, storage);
|
|
6353
|
+
container.setCoreServices(config, output, storage, workDir);
|
|
6357
6354
|
// 注册服务工厂
|
|
6358
6355
|
registerServiceFactories(container);
|
|
6359
6356
|
}
|
|
@@ -6402,6 +6399,12 @@ registerPluginSchema({
|
|
|
6402
6399
|
constructor(ctx){
|
|
6403
6400
|
this.ctx = ctx;
|
|
6404
6401
|
}
|
|
6402
|
+
/** 当前工作目录(项目根) */ get cwd() {
|
|
6403
|
+
return this.ctx.cwd;
|
|
6404
|
+
}
|
|
6405
|
+
/** 获取上下文(供内部命令使用) */ getContext() {
|
|
6406
|
+
return this.ctx;
|
|
6407
|
+
}
|
|
6405
6408
|
/**
|
|
6406
6409
|
* 注册扩展
|
|
6407
6410
|
*/ registerExtension(extension) {
|
|
@@ -6437,19 +6440,19 @@ registerPluginSchema({
|
|
|
6437
6440
|
return Array.from(this.extensions.values());
|
|
6438
6441
|
}
|
|
6439
6442
|
/**
|
|
6440
|
-
* 获取所有 MCP
|
|
6441
|
-
* 返回扩展中定义的
|
|
6442
|
-
*/
|
|
6443
|
-
const
|
|
6443
|
+
* 获取所有 MCP 工具
|
|
6444
|
+
* 返回扩展中定义的 tools 字段
|
|
6445
|
+
*/ getTools() {
|
|
6446
|
+
const result = [];
|
|
6444
6447
|
for (const ext of this.extensions.values()){
|
|
6445
|
-
if (ext.
|
|
6446
|
-
|
|
6448
|
+
if (ext.tools && ext.tools.length > 0) {
|
|
6449
|
+
result.push({
|
|
6447
6450
|
extensionName: ext.name,
|
|
6448
|
-
|
|
6451
|
+
tools: ext.tools
|
|
6449
6452
|
});
|
|
6450
6453
|
}
|
|
6451
6454
|
}
|
|
6452
|
-
return
|
|
6455
|
+
return result;
|
|
6453
6456
|
}
|
|
6454
6457
|
}
|
|
6455
6458
|
|
|
@@ -9906,28 +9909,25 @@ class McpService {
|
|
|
9906
9909
|
return;
|
|
9907
9910
|
}
|
|
9908
9911
|
if (shouldLog(verbose, 1)) {
|
|
9909
|
-
const cwd =
|
|
9912
|
+
const cwd = this.extensionLoader.cwd;
|
|
9910
9913
|
console.error(i18n_t("mcp:cwdInfo", {
|
|
9911
9914
|
cwd
|
|
9912
9915
|
}));
|
|
9913
|
-
if (!process.env.SPACEFLOW_CWD) {
|
|
9914
|
-
console.error(i18n_t("mcp:cwdEnvHint"));
|
|
9915
|
-
}
|
|
9916
9916
|
console.error(i18n_t("mcp:scanning"));
|
|
9917
9917
|
}
|
|
9918
9918
|
const extensions = this.extensionLoader.getExtensions();
|
|
9919
|
-
const
|
|
9919
|
+
const extensionTools = this.extensionLoader.getTools();
|
|
9920
9920
|
if (shouldLog(verbose, 2)) {
|
|
9921
9921
|
console.error(i18n_t("mcp:foundExtensions", {
|
|
9922
9922
|
count: extensions.length
|
|
9923
9923
|
}));
|
|
9924
9924
|
}
|
|
9925
9925
|
const allTools = [];
|
|
9926
|
-
for (const { extensionName,
|
|
9926
|
+
for (const { extensionName, tools } of extensionTools){
|
|
9927
9927
|
if (shouldLog(verbose, 2)) {
|
|
9928
|
-
console.error(` 扩展 ${extensionName} 提供 ${
|
|
9928
|
+
console.error(` 扩展 ${extensionName} 提供 ${tools.length} 个 MCP 工具`);
|
|
9929
9929
|
}
|
|
9930
|
-
for (const tool of
|
|
9930
|
+
for (const tool of tools){
|
|
9931
9931
|
if (shouldLog(verbose, 3)) {
|
|
9932
9932
|
console.error(` - ${tool.name}: ${tool.description}`);
|
|
9933
9933
|
}
|
|
@@ -9939,7 +9939,7 @@ class McpService {
|
|
|
9939
9939
|
methodName: "handler"
|
|
9940
9940
|
},
|
|
9941
9941
|
handler: tool.handler,
|
|
9942
|
-
ctx: this.extensionLoader
|
|
9942
|
+
ctx: this.extensionLoader.getContext()
|
|
9943
9943
|
});
|
|
9944
9944
|
}
|
|
9945
9945
|
}
|
|
@@ -11264,7 +11264,7 @@ async function exec(extensions = [], options = {}) {
|
|
|
11264
11264
|
// 6. 创建 CLI 程序
|
|
11265
11265
|
const program = new Command();
|
|
11266
11266
|
const cliVersion = options.cliVersion || "0.0.0";
|
|
11267
|
-
const coreVersion = true ? "0.
|
|
11267
|
+
const coreVersion = true ? "0.15.0" : 0;
|
|
11268
11268
|
const versionOutput = `spaceflow/${cliVersion} core/${coreVersion}`;
|
|
11269
11269
|
program.name("spaceflow").description("Spaceflow CLI").version(versionOutput, "-V, --version", "显示版本信息");
|
|
11270
11270
|
// 定义全局 verbose 选项(支持计数:-v, -vv, -vvv)
|
|
@@ -11376,7 +11376,7 @@ async function exec(extensions = [], options = {}) {
|
|
|
11376
11376
|
// Rspack Config - Rspack 配置工具
|
|
11377
11377
|
|
|
11378
11378
|
// MCP - Model Context Protocol 支持
|
|
11379
|
-
// 注意:
|
|
11379
|
+
// 注意:McpToolDefinition 已在 extension-system/types.ts 中定义(用于 defineExtension 的 tools 字段)
|
|
11380
11380
|
// 这里只导出装饰器和工具函数,避免重复导出
|
|
11381
11381
|
|
|
11382
11382
|
// I18n - 国际化
|
|
@@ -11452,7 +11452,6 @@ var __webpack_exports__createPluginConfig = __webpack_exports__.aU;
|
|
|
11452
11452
|
var __webpack_exports__createStreamLoggerState = __webpack_exports__.mD;
|
|
11453
11453
|
var __webpack_exports__deepMerge = __webpack_exports__.$N;
|
|
11454
11454
|
var __webpack_exports__defineExtension = __webpack_exports__.vE;
|
|
11455
|
-
var __webpack_exports__defineMcpServer = __webpack_exports__.jl;
|
|
11456
11455
|
var __webpack_exports__detectLocale = __webpack_exports__.ED;
|
|
11457
11456
|
var __webpack_exports__detectPackageManager = __webpack_exports__.Lv;
|
|
11458
11457
|
var __webpack_exports__detectProvider = __webpack_exports__.F1;
|
|
@@ -11512,6 +11511,6 @@ var __webpack_exports__toLogLevel = __webpack_exports__.AZ;
|
|
|
11512
11511
|
var __webpack_exports__updateDependency = __webpack_exports__.hq;
|
|
11513
11512
|
var __webpack_exports__writeConfigSync = __webpack_exports__.$v;
|
|
11514
11513
|
var __webpack_exports__z = __webpack_exports__.z;
|
|
11515
|
-
export { __webpack_exports__CONFIG_FILE_NAME as CONFIG_FILE_NAME, __webpack_exports__ClaudeCodeAdapter as ClaudeCodeAdapter, __webpack_exports__ClaudeSetupService as ClaudeSetupService, __webpack_exports__DEFAULT_EDITOR as DEFAULT_EDITOR, __webpack_exports__DEFAULT_EXTERNALS as DEFAULT_EXTERNALS, __webpack_exports__DEFAULT_SUPPORT_EDITOR as DEFAULT_SUPPORT_EDITOR, __webpack_exports__DEFAULT_TS_RULE as DEFAULT_TS_RULE, __webpack_exports__DIFF_SIDE as DIFF_SIDE, __webpack_exports__EDITOR_DIR_MAPPING as EDITOR_DIR_MAPPING, __webpack_exports__ExtensionLoader as ExtensionLoader, __webpack_exports__FEISHU_CARD_ACTION_TRIGGER as FEISHU_CARD_ACTION_TRIGGER, __webpack_exports__FEISHU_MODULE_OPTIONS as FEISHU_MODULE_OPTIONS, __webpack_exports__FeishuCardService as FeishuCardService, __webpack_exports__FeishuSdkService as FeishuSdkService, __webpack_exports__FileAdapter as FileAdapter, __webpack_exports__GIT_PROVIDER_MODULE_OPTIONS as GIT_PROVIDER_MODULE_OPTIONS, __webpack_exports__GitProviderService as GitProviderService, __webpack_exports__GitSdkService as GitSdkService, __webpack_exports__GiteaAdapter as GiteaAdapter, __webpack_exports__GithubAdapter as GithubAdapter, __webpack_exports__GitlabAdapter as GitlabAdapter, __webpack_exports__LLM_ADAPTER as LLM_ADAPTER, __webpack_exports__LLM_PROXY_CONFIG as LLM_PROXY_CONFIG, __webpack_exports__LOG_LEVEL_PRIORITY as LOG_LEVEL_PRIORITY, __webpack_exports__LlmJsonPut as LlmJsonPut, __webpack_exports__LlmProxyService as LlmProxyService, __webpack_exports__LlmSessionImpl as LlmSessionImpl, __webpack_exports__Logger as Logger, __webpack_exports__MCP_SERVER_METADATA as MCP_SERVER_METADATA, __webpack_exports__MCP_TOOL_METADATA as MCP_TOOL_METADATA, __webpack_exports__McpServer as McpServer, __webpack_exports__McpTool as McpTool, __webpack_exports__MemoryAdapter as MemoryAdapter, __webpack_exports__OUTPUT_MARKER_END as OUTPUT_MARKER_END, __webpack_exports__OUTPUT_MARKER_START as OUTPUT_MARKER_START, __webpack_exports__OpenAIAdapter as OpenAIAdapter, __webpack_exports__OpenCodeAdapter as OpenCodeAdapter, __webpack_exports__OutputService as OutputService, __webpack_exports__PACKAGE_JSON as PACKAGE_JSON, __webpack_exports__ParallelExecutor as ParallelExecutor, __webpack_exports__RC_FILE_NAME as RC_FILE_NAME, __webpack_exports__REVIEW_STATE as REVIEW_STATE, __webpack_exports__SPACEFLOW_DIR as SPACEFLOW_DIR, __webpack_exports__SchemaGeneratorService as SchemaGeneratorService, __webpack_exports__ServiceContainer as ServiceContainer, __webpack_exports__StorageService as StorageService, __webpack_exports__addI18nextResources as addI18nextResources, __webpack_exports__addLocaleResources as addLocaleResources, __webpack_exports__addSpaceflowToDevDependencies as addSpaceflowToDevDependencies, __webpack_exports__buildGitPackageSpec as buildGitPackageSpec, __webpack_exports__calculateLineOffsets as calculateLineOffsets, __webpack_exports__calculateNewLineNumber as calculateNewLineNumber, __webpack_exports__coreEn as coreEn, __webpack_exports__coreZhCN as coreZhCN, __webpack_exports__createMultiEntryPluginConfig as createMultiEntryPluginConfig, __webpack_exports__createPluginConfig as createPluginConfig, __webpack_exports__createStreamLoggerState as createStreamLoggerState, __webpack_exports__deepMerge as deepMerge, __webpack_exports__defineExtension as defineExtension,
|
|
11514
|
+
export { __webpack_exports__CONFIG_FILE_NAME as CONFIG_FILE_NAME, __webpack_exports__ClaudeCodeAdapter as ClaudeCodeAdapter, __webpack_exports__ClaudeSetupService as ClaudeSetupService, __webpack_exports__DEFAULT_EDITOR as DEFAULT_EDITOR, __webpack_exports__DEFAULT_EXTERNALS as DEFAULT_EXTERNALS, __webpack_exports__DEFAULT_SUPPORT_EDITOR as DEFAULT_SUPPORT_EDITOR, __webpack_exports__DEFAULT_TS_RULE as DEFAULT_TS_RULE, __webpack_exports__DIFF_SIDE as DIFF_SIDE, __webpack_exports__EDITOR_DIR_MAPPING as EDITOR_DIR_MAPPING, __webpack_exports__ExtensionLoader as ExtensionLoader, __webpack_exports__FEISHU_CARD_ACTION_TRIGGER as FEISHU_CARD_ACTION_TRIGGER, __webpack_exports__FEISHU_MODULE_OPTIONS as FEISHU_MODULE_OPTIONS, __webpack_exports__FeishuCardService as FeishuCardService, __webpack_exports__FeishuSdkService as FeishuSdkService, __webpack_exports__FileAdapter as FileAdapter, __webpack_exports__GIT_PROVIDER_MODULE_OPTIONS as GIT_PROVIDER_MODULE_OPTIONS, __webpack_exports__GitProviderService as GitProviderService, __webpack_exports__GitSdkService as GitSdkService, __webpack_exports__GiteaAdapter as GiteaAdapter, __webpack_exports__GithubAdapter as GithubAdapter, __webpack_exports__GitlabAdapter as GitlabAdapter, __webpack_exports__LLM_ADAPTER as LLM_ADAPTER, __webpack_exports__LLM_PROXY_CONFIG as LLM_PROXY_CONFIG, __webpack_exports__LOG_LEVEL_PRIORITY as LOG_LEVEL_PRIORITY, __webpack_exports__LlmJsonPut as LlmJsonPut, __webpack_exports__LlmProxyService as LlmProxyService, __webpack_exports__LlmSessionImpl as LlmSessionImpl, __webpack_exports__Logger as Logger, __webpack_exports__MCP_SERVER_METADATA as MCP_SERVER_METADATA, __webpack_exports__MCP_TOOL_METADATA as MCP_TOOL_METADATA, __webpack_exports__McpServer as McpServer, __webpack_exports__McpTool as McpTool, __webpack_exports__MemoryAdapter as MemoryAdapter, __webpack_exports__OUTPUT_MARKER_END as OUTPUT_MARKER_END, __webpack_exports__OUTPUT_MARKER_START as OUTPUT_MARKER_START, __webpack_exports__OpenAIAdapter as OpenAIAdapter, __webpack_exports__OpenCodeAdapter as OpenCodeAdapter, __webpack_exports__OutputService as OutputService, __webpack_exports__PACKAGE_JSON as PACKAGE_JSON, __webpack_exports__ParallelExecutor as ParallelExecutor, __webpack_exports__RC_FILE_NAME as RC_FILE_NAME, __webpack_exports__REVIEW_STATE as REVIEW_STATE, __webpack_exports__SPACEFLOW_DIR as SPACEFLOW_DIR, __webpack_exports__SchemaGeneratorService as SchemaGeneratorService, __webpack_exports__ServiceContainer as ServiceContainer, __webpack_exports__StorageService as StorageService, __webpack_exports__addI18nextResources as addI18nextResources, __webpack_exports__addLocaleResources as addLocaleResources, __webpack_exports__addSpaceflowToDevDependencies as addSpaceflowToDevDependencies, __webpack_exports__buildGitPackageSpec as buildGitPackageSpec, __webpack_exports__calculateLineOffsets as calculateLineOffsets, __webpack_exports__calculateNewLineNumber as calculateNewLineNumber, __webpack_exports__coreEn as coreEn, __webpack_exports__coreZhCN as coreZhCN, __webpack_exports__createMultiEntryPluginConfig as createMultiEntryPluginConfig, __webpack_exports__createPluginConfig as createPluginConfig, __webpack_exports__createStreamLoggerState as createStreamLoggerState, __webpack_exports__deepMerge as deepMerge, __webpack_exports__defineExtension as defineExtension, __webpack_exports__detectLocale as detectLocale, __webpack_exports__detectPackageManager as detectPackageManager, __webpack_exports__detectProvider as detectProvider, __webpack_exports__dtoToJsonSchema as dtoToJsonSchema, __webpack_exports__ensureDependencies as ensureDependencies, __webpack_exports__ensureEditorGitignore as ensureEditorGitignore, __webpack_exports__ensureSpaceflowDir as ensureSpaceflowDir, __webpack_exports__ensureSpaceflowPackageJson as ensureSpaceflowPackageJson, __webpack_exports__exec as exec, __webpack_exports__extractName as extractName, __webpack_exports__extractNpmPackageName as extractNpmPackageName, __webpack_exports__findConfigFileWithField as findConfigFileWithField, __webpack_exports__getConfigPath as getConfigPath, __webpack_exports__getConfigPaths as getConfigPaths, __webpack_exports__getDependencies as getDependencies, __webpack_exports__getEditorDirName as getEditorDirName, __webpack_exports__getEnvFilePaths as getEnvFilePaths, __webpack_exports__getMcpServerMetadata as getMcpServerMetadata, __webpack_exports__getMcpTools as getMcpTools, __webpack_exports__getPackageManager as getPackageManager, __webpack_exports__getRegisteredSchemas as getRegisteredSchemas, __webpack_exports__getSourceType as getSourceType, __webpack_exports__getSpaceflowCoreVersion as getSpaceflowCoreVersion, __webpack_exports__getSpaceflowDir as getSpaceflowDir, __webpack_exports__getSupportedEditors as getSupportedEditors, __webpack_exports__initCliI18n as initCliI18n, __webpack_exports__internalExtensions as internalExtensions, __webpack_exports__isGitUrl as isGitUrl, __webpack_exports__isLocalPath as isLocalPath, __webpack_exports__isMcpServer as isMcpServer, __webpack_exports__isPnpmWorkspace as isPnpmWorkspace, __webpack_exports__loadEnvFiles as loadEnvFiles, __webpack_exports__loadExtensionsFromDir as loadExtensionsFromDir, __webpack_exports__loadSpaceflowConfig as loadSpaceflowConfig, __webpack_exports__logStreamEvent as logStreamEvent, __webpack_exports__mapGitStatus as mapGitStatus, __webpack_exports__normalizeSource as normalizeSource, __webpack_exports__normalizeVerbose as normalizeVerbose, __webpack_exports__parallel as parallel, __webpack_exports__parseChangedLinesFromPatch as parseChangedLinesFromPatch, __webpack_exports__parseDiffText as parseDiffText, __webpack_exports__parseHunksFromPatch as parseHunksFromPatch, __webpack_exports__parseRepoUrl as parseRepoUrl, __webpack_exports__parseVerbose as parseVerbose, __webpack_exports__readConfigSync as readConfigSync, __webpack_exports__registerPluginSchema as registerPluginSchema, __webpack_exports__removeDependency as removeDependency, __webpack_exports__resetI18n as resetI18n, __webpack_exports__resolveSpaceflowConfig as resolveSpaceflowConfig, __webpack_exports__runMcpServer as runMcpServer, __webpack_exports__setGlobalAddLocaleResources as setGlobalAddLocaleResources, __webpack_exports__setGlobalT as setGlobalT, __webpack_exports__shouldLog as shouldLog, __webpack_exports__spaceflowConfig as spaceflowConfig, __webpack_exports__t as t, __webpack_exports__toLogLevel as toLogLevel, __webpack_exports__updateDependency as updateDependency, __webpack_exports__writeConfigSync as writeConfigSync, __webpack_exports__z as z };
|
|
11516
11515
|
|
|
11517
11516
|
//# sourceMappingURL=index.js.map
|