@frenchtoastman/oh-my-groundcontrol 0.0.1 → 0.0.3
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/cli/index.js +14 -6
- package/dist/config/schema.d.ts +4 -0
- package/dist/index.js +44 -7
- package/dist/mcp/deepwiki.d.ts +2 -0
- package/dist/mcp/git.d.ts +2 -0
- package/dist/mcp/kubernetes.d.ts +2 -0
- package/dist/mcp/pytest.d.ts +2 -0
- package/dist/mcp/types.d.ts +2 -0
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -13732,7 +13732,15 @@ var TmuxConfigSchema = exports_external.object({
|
|
|
13732
13732
|
main_pane_size: exports_external.number().min(20).max(80).default(60)
|
|
13733
13733
|
});
|
|
13734
13734
|
var PresetSchema = exports_external.record(exports_external.string(), AgentOverrideConfigSchema);
|
|
13735
|
-
var McpNameSchema = exports_external.enum([
|
|
13735
|
+
var McpNameSchema = exports_external.enum([
|
|
13736
|
+
"websearch",
|
|
13737
|
+
"context7",
|
|
13738
|
+
"grep_app",
|
|
13739
|
+
"git",
|
|
13740
|
+
"pytest",
|
|
13741
|
+
"deepwiki",
|
|
13742
|
+
"kubernetes"
|
|
13743
|
+
]);
|
|
13736
13744
|
var BackgroundTaskConfigSchema = exports_external.object({
|
|
13737
13745
|
maxConcurrentStarts: exports_external.number().min(1).max(50).default(10)
|
|
13738
13746
|
});
|
|
@@ -13762,12 +13770,12 @@ var PluginConfigSchema = exports_external.object({
|
|
|
13762
13770
|
});
|
|
13763
13771
|
// src/config/agent-mcps.ts
|
|
13764
13772
|
var DEFAULT_AGENT_MCPS = {
|
|
13765
|
-
orchestrator: ["websearch"],
|
|
13773
|
+
orchestrator: ["websearch", "git", "pytest", "deepwiki"],
|
|
13766
13774
|
designer: [],
|
|
13767
|
-
oracle: [],
|
|
13768
|
-
librarian: ["websearch", "context7", "grep_app"],
|
|
13769
|
-
explorer: [],
|
|
13770
|
-
fixer: []
|
|
13775
|
+
oracle: ["deepwiki"],
|
|
13776
|
+
librarian: ["websearch", "context7", "grep_app", "deepwiki"],
|
|
13777
|
+
explorer: ["git"],
|
|
13778
|
+
fixer: ["git", "pytest"]
|
|
13771
13779
|
};
|
|
13772
13780
|
|
|
13773
13781
|
// src/cli/skills.ts
|
package/dist/config/schema.d.ts
CHANGED
|
@@ -98,8 +98,12 @@ export declare const PresetSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
98
98
|
export type Preset = z.infer<typeof PresetSchema>;
|
|
99
99
|
export declare const McpNameSchema: z.ZodEnum<{
|
|
100
100
|
websearch: "websearch";
|
|
101
|
+
git: "git";
|
|
102
|
+
pytest: "pytest";
|
|
103
|
+
deepwiki: "deepwiki";
|
|
101
104
|
context7: "context7";
|
|
102
105
|
grep_app: "grep_app";
|
|
106
|
+
kubernetes: "kubernetes";
|
|
103
107
|
}>;
|
|
104
108
|
export type McpName = z.infer<typeof McpNameSchema>;
|
|
105
109
|
export declare const BackgroundTaskConfigSchema: z.ZodObject<{
|
package/dist/index.js
CHANGED
|
@@ -3406,12 +3406,12 @@ function getOpenCodeConfigPaths() {
|
|
|
3406
3406
|
|
|
3407
3407
|
// src/config/agent-mcps.ts
|
|
3408
3408
|
var DEFAULT_AGENT_MCPS = {
|
|
3409
|
-
orchestrator: ["websearch"],
|
|
3409
|
+
orchestrator: ["websearch", "git", "pytest", "deepwiki"],
|
|
3410
3410
|
designer: [],
|
|
3411
|
-
oracle: [],
|
|
3412
|
-
librarian: ["websearch", "context7", "grep_app"],
|
|
3413
|
-
explorer: [],
|
|
3414
|
-
fixer: []
|
|
3411
|
+
oracle: ["deepwiki"],
|
|
3412
|
+
librarian: ["websearch", "context7", "grep_app", "deepwiki"],
|
|
3413
|
+
explorer: ["git"],
|
|
3414
|
+
fixer: ["git", "pytest"]
|
|
3415
3415
|
};
|
|
3416
3416
|
function parseList(items, allAvailable) {
|
|
3417
3417
|
if (!items || items.length === 0) {
|
|
@@ -17042,7 +17042,15 @@ var TmuxConfigSchema = exports_external.object({
|
|
|
17042
17042
|
main_pane_size: exports_external.number().min(20).max(80).default(60)
|
|
17043
17043
|
});
|
|
17044
17044
|
var PresetSchema = exports_external.record(exports_external.string(), AgentOverrideConfigSchema);
|
|
17045
|
-
var McpNameSchema = exports_external.enum([
|
|
17045
|
+
var McpNameSchema = exports_external.enum([
|
|
17046
|
+
"websearch",
|
|
17047
|
+
"context7",
|
|
17048
|
+
"grep_app",
|
|
17049
|
+
"git",
|
|
17050
|
+
"pytest",
|
|
17051
|
+
"deepwiki",
|
|
17052
|
+
"kubernetes"
|
|
17053
|
+
]);
|
|
17046
17054
|
var BackgroundTaskConfigSchema = exports_external.object({
|
|
17047
17055
|
maxConcurrentStarts: exports_external.number().min(1).max(50).default(10)
|
|
17048
17056
|
});
|
|
@@ -19257,6 +19265,18 @@ var context7 = {
|
|
|
19257
19265
|
oauth: false
|
|
19258
19266
|
};
|
|
19259
19267
|
|
|
19268
|
+
// src/mcp/deepwiki.ts
|
|
19269
|
+
var deepwiki = {
|
|
19270
|
+
type: "remote",
|
|
19271
|
+
url: "https://mcp.deepwiki.com/mcp"
|
|
19272
|
+
};
|
|
19273
|
+
|
|
19274
|
+
// src/mcp/git.ts
|
|
19275
|
+
var git = {
|
|
19276
|
+
type: "local",
|
|
19277
|
+
command: ["uvx", "mcp-server-git"]
|
|
19278
|
+
};
|
|
19279
|
+
|
|
19260
19280
|
// src/mcp/grep-app.ts
|
|
19261
19281
|
var grep_app = {
|
|
19262
19282
|
type: "remote",
|
|
@@ -19264,6 +19284,19 @@ var grep_app = {
|
|
|
19264
19284
|
oauth: false
|
|
19265
19285
|
};
|
|
19266
19286
|
|
|
19287
|
+
// src/mcp/kubernetes.ts
|
|
19288
|
+
var kubernetes = {
|
|
19289
|
+
type: "local",
|
|
19290
|
+
command: ["npx", "mcp-server-kubernetes"],
|
|
19291
|
+
enabled: false
|
|
19292
|
+
};
|
|
19293
|
+
|
|
19294
|
+
// src/mcp/pytest.ts
|
|
19295
|
+
var pytest = {
|
|
19296
|
+
type: "local",
|
|
19297
|
+
command: ["uvx", "mcp-pytest-runner"]
|
|
19298
|
+
};
|
|
19299
|
+
|
|
19267
19300
|
// src/mcp/websearch.ts
|
|
19268
19301
|
var websearch = {
|
|
19269
19302
|
type: "remote",
|
|
@@ -19276,7 +19309,11 @@ var websearch = {
|
|
|
19276
19309
|
var allBuiltinMcps = {
|
|
19277
19310
|
websearch,
|
|
19278
19311
|
context7,
|
|
19279
|
-
grep_app
|
|
19312
|
+
grep_app,
|
|
19313
|
+
git,
|
|
19314
|
+
pytest,
|
|
19315
|
+
deepwiki,
|
|
19316
|
+
kubernetes
|
|
19280
19317
|
};
|
|
19281
19318
|
function createBuiltinMcps(disabledMcps = []) {
|
|
19282
19319
|
return Object.fromEntries(Object.entries(allBuiltinMcps).filter(([name]) => !disabledMcps.includes(name)));
|
package/dist/mcp/types.d.ts
CHANGED
|
@@ -3,10 +3,12 @@ export type RemoteMcpConfig = {
|
|
|
3
3
|
url: string;
|
|
4
4
|
headers?: Record<string, string>;
|
|
5
5
|
oauth?: false;
|
|
6
|
+
enabled?: boolean;
|
|
6
7
|
};
|
|
7
8
|
export type LocalMcpConfig = {
|
|
8
9
|
type: 'local';
|
|
9
10
|
command: string[];
|
|
10
11
|
environment?: Record<string, string>;
|
|
12
|
+
enabled?: boolean;
|
|
11
13
|
};
|
|
12
14
|
export type McpConfig = RemoteMcpConfig | LocalMcpConfig;
|
package/package.json
CHANGED