Commit Graph

8 Commits

Author SHA1 Message Date
9dca8880cc fix: use word boundaries in grep patterns to prevent false positives (#100)
Address PR #86 review feedback from Gemini:
- Line 145: replace 'grep -i error|fail|exception' with grep -E -i '\b(error|fail|exception)'
- Line 224: replace 'grep -i ERROR|WARNING' with grep -E -i '\b(ERROR|WARNING)\b'

Using \b word boundaries prevents substring matches (e.g. 'exception' in
'unexceptional') and removes the unnecessary cat pipe (UUOC).

Closes #94
2026-03-18 21:27:22 +00:00
632dda5952 fix: address PR #65 review feedback on error-checking-feedback-loops.md (#86)
- Fix yaml code block to bash at line 80 (shell command, not YAML)
- Remove useless cat pipe: use grep directly on test-output.log
- Remove useless cat pipe: use grep directly on phpcs-output.log

Closes #71
2026-03-17 20:45:53 +00:00
79829ddce0 fix: address PR #15 review feedback for error-checking-feedback-loops.md (issue #24) (#65)
- Add blank lines around all fenced code blocks (MD031)
- Add language specifiers to all bare fenced code blocks (MD040)
- Rename duplicate 'Processing Steps' heading to 'SonarCloud Processing Steps' (MD024)

Closes #24
2026-03-16 23:57:57 +00:00
b58036f3f5 Fix Markdown line lengths for Codacy compliance
- Break long lines in documentation files to stay under 120 characters
- Use reference-style links for long URLs
- Simplify ASCII art diagram in error-checking-feedback-loops.md
- Reorganize README.md badges with reference-style links
2025-11-25 00:17:35 +00:00
3f695bb003 Add guidance for contributing to external repositories
Documents the workflow for AI assistants to:
- Clone external repos to ~/Git/
- Create feature branches
- Fork using gh CLI
- Submit PRs to upstream projects

This enables autonomous contribution to fix issues in dependencies.
2025-11-25 00:01:27 +00:00
f6d30e92d0 Fix additional Markdown line lengths for Codacy compliance
- Break long prose lines to under 120 characters
- Improve readability of documentation
- URLs and ASCII art diagrams left unchanged (cannot be shortened)
2025-11-24 22:12:43 +00:00
3b73654202 Fix Markdown line lengths for Codacy compliance
- Break long lines into shorter paragraphs for better readability
- Simplify verbose code examples in feedback loops documentation
- Update file references from .ai-workflows/ to .agents/
2025-11-24 21:53:28 +00:00
8c735ccb2b Merge main into feature/testing-framework
Resolved conflicts:
- package.json: Use version 0.1.15 from main
- wp-plugin-starter-template.php: Use version 0.1.15, keep Plugin class usage
- AGENTS.md: Merge both versions, keep CI/CD content
- .wiki/Architecture-Overview.md: Use .agents/ directory structure
- wiki/* files: Delete (moved to .wiki/)
- .agents/error-checking-feedback-loops.md: Keep from feature branch

Also includes:
- Renamed .ai-workflows/ to .agents/
- Renamed .ai-assistant.md to AGENTS.md
- Updated version to 0.1.15
2025-11-24 20:21:38 +00:00