@mcpc-tech/cli 0.1.41 → 0.1.42
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/mcpc.cjs +3 -2
- package/bin/mcpc.mjs +4 -3
- package/package.json +2 -1
package/bin/mcpc.cjs
CHANGED
|
@@ -2940,6 +2940,7 @@ Available skills: ${available.join(", ")}` : "\n\nNo skills available.";
|
|
|
2940
2940
|
|
|
2941
2941
|
// __mcpc__cli_latest/node_modules/@mcpc/cli/src/defaults.js
|
|
2942
2942
|
var import_plugin_code_execution = require("@mcpc-tech/plugin-code-execution");
|
|
2943
|
+
var import_plugin_markdown_loader = require("@mcpc-tech/plugin-markdown-loader");
|
|
2943
2944
|
var import_node_path5 = require("node:path");
|
|
2944
2945
|
var import_node_process2 = __toESM(require("node:process"), 1);
|
|
2945
2946
|
var DEFAULT_SKILLS_PATHS = [
|
|
@@ -2949,7 +2950,7 @@ var DEFAULT_CODE_EXECUTION_TIMEOUT = 3e5;
|
|
|
2949
2950
|
function getGlobalPlugins(skillsPaths) {
|
|
2950
2951
|
const resolvedPaths = skillsPaths.map((p2) => (0, import_node_path5.resolve)(import_node_process2.default.cwd(), p2));
|
|
2951
2952
|
return [
|
|
2952
|
-
|
|
2953
|
+
(0, import_plugin_markdown_loader.markdownLoaderPlugin)(),
|
|
2953
2954
|
createSkillsPlugin({
|
|
2954
2955
|
paths: resolvedPaths
|
|
2955
2956
|
})
|
|
@@ -2971,7 +2972,7 @@ function getDefaultAgents() {
|
|
|
2971
2972
|
description: "",
|
|
2972
2973
|
plugins: [
|
|
2973
2974
|
createLargeResultPlugin({}),
|
|
2974
|
-
import_plugin_code_execution.
|
|
2975
|
+
(0, import_plugin_code_execution.createCodeExecutionPlugin)()
|
|
2975
2976
|
],
|
|
2976
2977
|
options: {
|
|
2977
2978
|
mode: "code_execution"
|
package/bin/mcpc.mjs
CHANGED
|
@@ -2947,7 +2947,8 @@ Available skills: ${available.join(", ")}` : "\n\nNo skills available.";
|
|
|
2947
2947
|
}
|
|
2948
2948
|
|
|
2949
2949
|
// __mcpc__cli_latest/node_modules/@mcpc/cli/src/defaults.js
|
|
2950
|
-
import {
|
|
2950
|
+
import { createCodeExecutionPlugin } from "@mcpc-tech/plugin-code-execution";
|
|
2951
|
+
import { markdownLoaderPlugin } from "@mcpc-tech/plugin-markdown-loader";
|
|
2951
2952
|
import { resolve as resolve3 } from "node:path";
|
|
2952
2953
|
import process3 from "node:process";
|
|
2953
2954
|
var DEFAULT_SKILLS_PATHS = [
|
|
@@ -2957,7 +2958,7 @@ var DEFAULT_CODE_EXECUTION_TIMEOUT = 3e5;
|
|
|
2957
2958
|
function getGlobalPlugins(skillsPaths) {
|
|
2958
2959
|
const resolvedPaths = skillsPaths.map((p2) => resolve3(process3.cwd(), p2));
|
|
2959
2960
|
return [
|
|
2960
|
-
|
|
2961
|
+
markdownLoaderPlugin(),
|
|
2961
2962
|
createSkillsPlugin({
|
|
2962
2963
|
paths: resolvedPaths
|
|
2963
2964
|
})
|
|
@@ -2979,7 +2980,7 @@ function getDefaultAgents() {
|
|
|
2979
2980
|
description: "",
|
|
2980
2981
|
plugins: [
|
|
2981
2982
|
createLargeResultPlugin({}),
|
|
2982
|
-
|
|
2983
|
+
createCodeExecutionPlugin()
|
|
2983
2984
|
],
|
|
2984
2985
|
options: {
|
|
2985
2986
|
mode: "code_execution"
|
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mcpc-tech/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.42",
|
|
4
4
|
"homepage": "https://jsr.io/@mcpc/cli",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@hono/zod-openapi": "^0.19.2",
|
|
7
7
|
"@mcpc-tech/plugin-code-execution": "^0.0.8",
|
|
8
|
+
"@mcpc-tech/plugin-markdown-loader": "^0.0.7",
|
|
8
9
|
"@modelcontextprotocol/sdk": "^1.8.0",
|
|
9
10
|
"zod": "^3.24.2",
|
|
10
11
|
"@ai-sdk/provider": "^2.0.0",
|