Skip to content

Commit 099e6cb

Browse files
committed
fix: use @mcpc-tech npm package names in CLI defaults
1 parent 1cf6e0f commit 099e6cb

File tree

3 files changed

+28
-4
lines changed

3 files changed

+28
-4
lines changed

deno.lock

Lines changed: 25 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/cli/deno.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mcpc/cli",
3-
"version": "0.1.39",
3+
"version": "0.1.41",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/mcpc-tech/mcpc.git"
@@ -15,7 +15,7 @@
1515
"@mcpc-tech/plugin-code-execution": "npm:@mcpc-tech/plugin-code-execution@^0.0.8",
1616
"@mcpc/core": "jsr:@mcpc/core@^0.3.31",
1717
"@mcpc/core/plugins/skills": "jsr:@mcpc/core@^0.3.31/plugins/skills",
18-
"@mcpc/plugin-markdown-loader": "jsr:@mcpc/plugin-markdown-loader@^0.0.7",
18+
"@mcpc-tech/plugin-markdown-loader": "npm:@mcpc-tech/plugin-markdown-loader@^0.0.7",
1919
"@mcpc/utils": "jsr:@mcpc/utils@^0.2.12",
2020
"@modelcontextprotocol/sdk": "npm:@modelcontextprotocol/sdk@^1.8.0",
2121
"@mcpc-tech/ripgrep-napi": "npm:@mcpc-tech/ripgrep-napi@^0.0.4",

packages/cli/src/defaults.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export function getGlobalPlugins(
2828
// Resolve relative paths to absolute paths
2929
const resolvedPaths = skillsPaths.map((p) => resolve(process.cwd(), p));
3030
return [
31-
"@mcpc/plugin-markdown-loader",
31+
"@mcpc-tech/plugin-markdown-loader",
3232
createSkillsPlugin({ paths: resolvedPaths }),
3333
];
3434
}

0 commit comments

Comments
 (0)