Clean up references to deleted scripts and pattern system

- Removed references to validate-references.sh from YAML files
- Removed expand-references.sh from settings.local.json
- Cleaned up @pattern/@flags references from shared files
- Updated documentation to reflect current no-code implementation
- Simplified reference-index.yml to remove @include patterns

This cleanup removes confusion from the abandoned pattern reference
system while maintaining all functionality.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
NomenAK
2025-06-24 21:24:14 +02:00
parent 84ad5b60d1
commit 9c3608a783
81 changed files with 8213 additions and 4646 deletions

View File

@@ -105,10 +105,10 @@ Context: Errors→analyzer | Perf issues→perf | Architecture→architect | Lea
## Command Specialization
```yaml
security → /user:scan --security | qa → /user:test,/user:scan --validate
perf → /user:analyze --profile,/user:improve --perf | analyzer → /user:analyze,/user:troubleshoot,/user:explain
architect → /user:design --api --ddd,/user:estimate | frontend → /user:build --react,/user:explain | backend → /user:build --api
refactorer → /user:improve --quality,/user:cleanup --code | mentor → /user:explain --depth,/user:document
security → /scan --security | qa → /test,/scan --validate
perf → /analyze --profile,/improve --perf | analyzer → /analyze,/troubleshoot,/explain
architect → /design --api --ddd,/estimate | frontend → /build --react,/explain | backend → /build --api
refactorer → /improve --quality,/cleanup --code | mentor → /explain --depth,/document
```
---