Compare commits

..

1 Commits

Author SHA1 Message Date
Michael Sitarzewski c2ba46b9c5 docs: sync roster to 218 agents + fix install.sh --list
Account for the 9 agents merged in #450-456, #568, #569:
- README: add 3 Engineering rows (Multi-Agent Systems Architect,
  Drupal/WordPress Shopping Cart Engineer) + 6 Specialized rows
  (CFO, ESG & Sustainability Officer, Data Privacy Officer,
  Operations Manager, M&A Integration Manager, Organizational
  Psychologist); bump Stats + acknowledgements 209 -> 218.
- install.sh: fix `--list` as the final argument aborting with
  exit 1 under set -e (shift 2 with only one positional). Now
  treats a missing/flag-like value as "all" and shifts once.

Roster drift is now zero (218 linked rows = 218 source agents);
convert/install auto-discover the new agents via AGENT_DIRS
(specialized/ + engineering/). lint: 0 errors, 218 files.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-06 14:09:08 -05:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -74,7 +74,7 @@ describe('User API Comprehensive Testing', () => {
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
email: 'test@example.com',
password: process.env.TEST_USER_PASSWORD
password: 'secure_password'
})
});
const data = await response.json();
+1 -1
View File
@@ -90,7 +90,7 @@ export default function () {
// Test critical user journey
const loginResponse = http.post(`${baseUrl}/api/auth/login`, {
email: 'test@example.com',
password: __ENV.TEST_USER_PASSWORD
password: 'password123'
});
check(loginResponse, {