fullcourtdefense-cli 1.5.2 → 1.5.3

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.
@@ -811,7 +811,9 @@ function parseClientList(value) {
811
811
  };
812
812
  const requested = raw === 'all'
813
813
  ? exports.ALL_GATEWAY_CLIENTS.slice()
814
- : raw.split(',').map(part => part.trim()).filter(Boolean);
814
+ // Accept commas OR whitespace: some shells (PowerShell) split a comma list
815
+ // into separate argv tokens that get re-joined with spaces.
816
+ : raw.split(/[\s,]+/).map(part => part.trim()).filter(Boolean);
815
817
  const clients = requested.map(client => aliases[client]);
816
818
  const unknown = requested.filter((part, index) => !clients[index]);
817
819
  if (unknown.length > 0) {
package/dist/version.json CHANGED
@@ -1,3 +1,3 @@
1
1
  {
2
- "version": "1.5.2"
2
+ "version": "1.5.3"
3
3
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fullcourtdefense-cli",
3
- "version": "1.5.2",
3
+ "version": "1.5.3",
4
4
  "description": "Full Court Defense CLI — security scanning for AI agents from your terminal",
5
5
  "main": "dist/index.js",
6
6
  "bin": {