Added critical directive to prevent using fake/placeholder credentials:
- NEVER use placeholder, fake, or test data in any project
- ALWAYS use real data from credentials.md, session logs, or user input
- If data isn't available, ask user - never fabricate
- Placeholder credentials are never valid
- Test data in scripts is not authoritative
Root cause of wasted time:
- Used fake credentials ("guru"/"AZC0mpGuru!2024") from test script
- Should have checked credentials.md first for real AD2 credentials
- Violated /context workflow by not searching for actual credentials
Correct AD2 credentials (from credentials.md):
- User: INTRANET\sysadmin
- Password: Paper123!@#
Also added deploy-ctonw-to-ad2.ps1 using correct credentials.
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Added SSH operations guidelines to directives.md:
- NEVER use Git for Windows SSH for operations
- Use native OpenSSH or PuTTY tools (plink, pscp)
- Git for Windows SSH has compatibility issues with some servers
- Use full path to system SSH when needed
Created deploy-bat-files-to-ad2.ps1:
- Deploys DEPLOY.BAT and UPDATE.BAT to AD2
- Preserves CRLF line endings for DOS compatibility
- Verifies file content matches after copy
- Files auto-sync to NAS via AD2's scheduled task
Reason: NAS SSH authentication failed after restart, established
AD2 deployment path as reliable alternative that preserves line endings.
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>