cursor-guard 4.9.6 → 4.9.8
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 +114 -60
- package/README.zh-CN.md +111 -57
- package/ROADMAP.md +41 -20
- package/SKILL.md +1 -1
- package/package.json +3 -2
- package/references/vscode-extension/build-vsix.js +7 -5
- package/references/vscode-extension/dist/{cursor-guard-ide-4.9.6.vsix → cursor-guard-ide-4.9.8.vsix} +0 -0
- package/references/vscode-extension/dist/extension.js +697 -498
- package/references/vscode-extension/dist/guard-version.json +1 -1
- package/references/vscode-extension/dist/lib/dashboard-manager.js +102 -52
- package/references/vscode-extension/dist/lib/locale.js +36 -0
- package/references/vscode-extension/dist/lib/sidebar-webview.js +1193 -502
- package/references/vscode-extension/dist/mcp/server.js +3 -2
- package/references/vscode-extension/dist/media/brand-placeholder.png +0 -0
- package/references/vscode-extension/dist/package.json +1 -1
- package/references/vscode-extension/dist/skill/ROADMAP.md +41 -20
- package/references/vscode-extension/dist/skill/SKILL.md +1 -1
- package/references/vscode-extension/extension.js +697 -498
- package/references/vscode-extension/lib/dashboard-manager.js +102 -52
- package/references/vscode-extension/lib/locale.js +36 -0
- package/references/vscode-extension/lib/sidebar-webview.js +1193 -502
- package/references/vscode-extension/media/brand-placeholder.png +0 -0
- package/references/vscode-extension/package.json +1 -1
|
@@ -28,10 +28,10 @@ const copyMap = [
|
|
|
28
28
|
{ src: path.join(REFS, 'lib', 'guard-doctor.js'), dst: path.join('lib', 'guard-doctor.js') },
|
|
29
29
|
{ src: path.join(REFS, 'bin'), dst: 'bin', type: 'dir' },
|
|
30
30
|
|
|
31
|
-
{ src: path.join(ROOT, 'SKILL.md'), dst: path.join('skill', 'SKILL.md') },
|
|
32
|
-
{ src: path.join(ROOT, 'ROADMAP.md'), dst: path.join('skill', 'ROADMAP.md') },
|
|
33
|
-
{ src: path.join(ROOT, 'LICENSE'), dst: 'LICENSE' },
|
|
34
|
-
{ src: path.join(REFS, 'cursor-guard.example.json'), dst: path.join('skill', 'cursor-guard.example.json') },
|
|
31
|
+
{ src: path.join(ROOT, 'SKILL.md'), dst: path.join('skill', 'SKILL.md') },
|
|
32
|
+
{ src: path.join(ROOT, 'ROADMAP.md'), dst: path.join('skill', 'ROADMAP.md') },
|
|
33
|
+
{ src: path.join(ROOT, 'LICENSE'), dst: 'LICENSE' },
|
|
34
|
+
{ src: path.join(REFS, 'cursor-guard.example.json'), dst: path.join('skill', 'cursor-guard.example.json') },
|
|
35
35
|
{ src: path.join(REFS, 'cursor-guard.schema.json'), dst: path.join('skill', 'cursor-guard.schema.json') },
|
|
36
36
|
{ src: path.join(REFS, 'config-reference.md'), dst: path.join('skill', 'config-reference.md') },
|
|
37
37
|
{ src: path.join(REFS, 'config-reference.zh-CN.md'), dst: path.join('skill', 'config-reference.zh-CN.md') },
|
|
@@ -83,7 +83,9 @@ if (fs.existsSync(ignoreFile)) {
|
|
|
83
83
|
fs.writeFileSync(path.join(DIST, 'guard-version.json'), JSON.stringify({ version: rootPkg.version }));
|
|
84
84
|
|
|
85
85
|
console.log(`\n dist/ ready at: ${DIST}`);
|
|
86
|
-
console.log(`
|
|
86
|
+
console.log(` VSIX file name (after vsce package): cursor-guard-ide-${rootPkg.version}.vsix`);
|
|
87
|
+
console.log(` To build VSIX: cd dist && npx @vscode/vsce package --no-dependencies`);
|
|
88
|
+
console.log(` Release checklist: cd ${ROOT} && npm run release:checklist\n`);
|
|
87
89
|
|
|
88
90
|
function copyDir(src, dst) {
|
|
89
91
|
fs.mkdirSync(dst, { recursive: true });
|