Install
openclaw skills install picomatchPicomatch — A fast and accurate glob pattern matching library.
openclaw skills install picomatchA blazing fast, zero-dependency JavaScript glob pattern matching library, supporting standard and extended Bash glob features.
Use when the user needs file path matching, glob wildcards (*, **, ?, [...]), .gitignore-style exclusion rules, build tool file filtering, CLI path filtering, file watcher allow/deny lists, etc. Trigger keywords: picomatch, glob matching, .js, **/.ts, wildcards, .gitignore pattern matching, file filtering, minimatch alternative.
npm install picomatch
Main entry point: Takes a glob pattern and returns a matcher function.
const pm = require('picomatch');
const isMatch = pm('*.js');
isMatch('a.js'); // true
isMatch('a.md'); // false
isMatch('a/b.js'); // false (* does not cross /)
Directly checks if a string matches any pattern, without manually calling a matcher.
picomatch.isMatch('a.a', ['b.*', '*.a']); // true
picomatch.isMatch('a.a', 'b.*'); // false
Matches only the basename of a path (ignores directories).
picomatch.matchBase('foo/bar.js', '*.js'); // true
Parses a glob pattern into a structured object.
picomatch.scan('!./foo/*.js', { tokens: true });
// { prefix: '!./', base: 'foo', glob: '*.js', negated: true, tokens: [...] }
Converts a glob to an intermediate state object, which can be used with .compileRe / .makeRe.
Directly converts a glob to a RegExp.
picomatch.makeRe('*.js'); // /^(?:(?!\.)(?=.)[^/]*?\.js)$/
Creates a RegExp from a regex source string.
| Option | Type | Description |
|---|---|---|
dot | boolean | Allow matching dotfiles, default false |
nocase | boolean | Case-insensitive matching |
matchBase | boolean | Match against basename only |
noglobstar | boolean | Disable ** matching nested directories |
noextglob | boolean | Disable extglob (+(a|b)) |
nobrace | boolean | Disable brace expansion ({a,b}) |
globstar | boolean | Treat single * as globstar (bash option) |
windows | boolean | Support Windows backslash paths |
ignore | array | Exclusion list (blacklist) |
onMatch | function | Callback on match success |
onIgnore | function | Callback on ignore |
onResult | function | Callback on all results |
| Syntax | Description |
|---|---|
* | Match any character (excluding /, excluding dotfiles) |
** | Match any character, including path separators |
? | Match a single character |
[abc] | Match any character within brackets |
{a,b} | Match a or b (brace expansion) |
+(a|b) | Extglob: match one or more times |
!(pattern) | Exclude matches |
! prefix | Negated pattern |
const pm = require('picomatch');
// JS/TS files
pm('**/*.{js,ts,mjs}');
// Ignore node_modules
pm('**', { ignore: 'node_modules/**' });
// Specific extension with subdirectories
pm('src/**/*.md');
// Dotfiles (hidden files)
pm('.*', { dot: true });
// Case-insensitive (Windows/macOS)
pm('*.JPG', { nocase: true });
// Windows paths
pm('src\\**\\*.js', { windows: true });
glob / fast-globFor complete API signatures, option descriptions, scan options, and option examples, see references/api_reference.md.