promptgraph-mcp 2.3.1 → 2.3.2
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/package.json +1 -1
- package/parser.js +1 -1
package/package.json
CHANGED
package/parser.js
CHANGED
|
@@ -19,7 +19,7 @@ const SKIP_FILENAMES = new Set([
|
|
|
19
19
|
]);
|
|
20
20
|
|
|
21
21
|
// Filename patterns that are never skills
|
|
22
|
-
const SKIP_FILENAME_RE = /^(_|\.)|^v?\d+[\.\-]\d+|^\d{4}[\-_]\d{2}/i;
|
|
22
|
+
const SKIP_FILENAME_RE = /^(_|\.)|^v?\d+[\.\-]\d+|^\d{4}[\-_]\d{2}|^readme|^license|^changelog|^contributing/i;
|
|
23
23
|
|
|
24
24
|
// Path segments that indicate the file is NOT a skill
|
|
25
25
|
const SKIP_DIRS = new Set([
|