@khanhcan148/mk 0.1.16 → 0.1.17
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 +4 -2
- package/package.json +1 -1
- package/src/commands/update.js +436 -436
- package/src/lib/constants.js +8 -0
- package/src/lib/copy.js +335 -331
package/src/lib/constants.js
CHANGED
|
@@ -8,6 +8,14 @@ export const KIT_SUBDIRS = ['agents', 'skills', 'workflows', 'hooks'];
|
|
|
8
8
|
*/
|
|
9
9
|
export const MANIFEST_FILENAME = '.mk-manifest.json';
|
|
10
10
|
|
|
11
|
+
/**
|
|
12
|
+
* Skills that are internal to the kit and must NOT be distributed to end users.
|
|
13
|
+
* Each entry is matched as a full directory segment: `/skills/<name>/`.
|
|
14
|
+
* The trailing `/` in the match pattern prevents false positives on substring names
|
|
15
|
+
* (e.g. `mk-selftest-extended` is NOT matched by `mk-selftest`).
|
|
16
|
+
*/
|
|
17
|
+
export const KIT_INTERNAL_SKILLS = ['mk-selftest'];
|
|
18
|
+
|
|
11
19
|
/**
|
|
12
20
|
* Files/patterns to exclude during copy
|
|
13
21
|
*/
|