pi-crew 0.5.23 → 0.5.25

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-crew",
3
- "version": "0.5.23",
3
+ "version": "0.5.25",
4
4
  "description": "Pi extension for coordinated AI teams, workflows, worktrees, and async task orchestration",
5
5
  "author": "baphuongna",
6
6
  "license": "MIT",
@@ -42,7 +42,7 @@ export interface BenchmarkResult {
42
42
  */
43
43
  function validateCommand(command: string): void {
44
44
  // Basic allowlist - must start with allowed command
45
- const allowlist = /^(pytest|grep|npm test|npx) /;
45
+ const allowlist = /^(pytest|grep|npm test|npx|node) /;
46
46
  if (!allowlist.test(command)) {
47
47
  throw new Error(`Command not allowed: ${command}. Only pytest, grep, npm test, npx allowed.`);
48
48
  }