⚠ This page is served via a proxy. Original site: https://github.com
This service does not collect credentials or authentication data.
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
01476d5
Fix Test Fixtures
noelsaw1 Jan 10, 2026
43b8e03
2nd attempt for fix
noelsaw1 Jan 10, 2026
10b839c
Remove JQ
noelsaw1 Jan 10, 2026
479c382
Add JQ again
noelsaw1 Jan 10, 2026
addb354
Add trace
noelsaw1 Jan 10, 2026
a352496
4th attempt
noelsaw1 Jan 10, 2026
ccd3330
Final improvement
noelsaw1 Jan 10, 2026
ed17bfc
Temporarily turn off on GH Actions
noelsaw1 Jan 10, 2026
9cf90b1
Initial plan
Copilot Jan 10, 2026
4af57b1
Re-enable test fixtures validation in CI and fix expected counts
Copilot Jan 10, 2026
403b49b
Add explicit permissions to validate-test-fixtures job
Copilot Jan 10, 2026
2770b34
Add Test Suite V2 with modular architecture
noelsaw1 Jan 10, 2026
bd59131
Fix 4 unquoted $PATHS instances
noelsaw1 Jan 10, 2026
c7dcf8c
Clean up docs and remove orig. Golden Rules PHP
noelsaw1 Jan 10, 2026
0771263
Add automation doc
noelsaw1 Jan 10, 2026
bc2eb20
Update .gitignore
noelsaw1 Jan 10, 2026
a02dae9
Add Idea for AI Triage -> GH Issues
noelsaw1 Jan 10, 2026
c3885c4
Update IDEA-AI-TRIAGE-TO-GH-ISSUES.md
noelsaw1 Jan 10, 2026
4a76e03
Update IDEA-AI-TRIAGE-TO-GH-ISSUES.md
noelsaw1 Jan 11, 2026
b805423
Phase 1 + Create Shared Library
noelsaw1 Jan 12, 2026
a67aee8
Merge pull request #59 from Hypercart-Dev-Tools/rules/reduce-false-po…
noelsaw1 Jan 12, 2026
87df1d1
Phase 2
noelsaw1 Jan 12, 2026
ccc0939
Phase 2 review by Copilot
noelsaw1 Jan 12, 2026
4391aec
Phase 2.1 improvements
noelsaw1 Jan 12, 2026
3a73882
Planning for GitHub Issues Integration
noelsaw1 Jan 12, 2026
8c2f517
Create PROPOSAL-GOLDENRULES.md
noelsaw1 Jan 13, 2026
1bc378c
Update planning docs for GitHub ID/URL in template
noelsaw1 Jan 13, 2026
9172c61
Output GH issues to /dist/issues folder
noelsaw1 Jan 13, 2026
274e99c
1st build of MCP Tier 1 support
noelsaw1 Jan 13, 2026
9d71d08
Docs cleanup: Working -> Completed folder
noelsaw1 Jan 13, 2026
ef71e80
More document status triage of 1-INBOX
noelsaw1 Jan 13, 2026
272f1ec
Merge pull request #72 from Hypercart-Dev-Tools/feature/add-mcp-tier-1
noelsaw1 Jan 13, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,11 +123,26 @@ jobs:
validate-test-fixtures:
name: Validate Test Fixtures
runs-on: ubuntu-latest
permissions:
contents: read

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y jq

- name: Environment snapshot
run: |
echo "=== CI Environment Diagnostic ==="
echo "OS: $(uname -a)"
echo "Shell: $SHELL ($BASH_VERSION)"
echo "jq: $(command -v jq && jq --version || echo 'NOT INSTALLED')"
echo "perl: $(perl -v | head -2)"
echo "grep: $(grep --version | head -1)"
echo "================================="

- name: Make scripts executable
run: |
chmod +x ./dist/bin/check-performance.sh
Expand All @@ -136,7 +151,7 @@ jobs:
- name: Run automated fixture tests
run: |
echo "Running automated fixture validation..."
./dist/tests/run-fixture-tests.sh
cd dist && ./tests/run-fixture-tests.sh

- name: Test antipatterns detection (legacy check)
run: |
Expand Down
80 changes: 0 additions & 80 deletions .github/workflows/example-caller.yml

This file was deleted.

6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ dist/tests/irl/*
!dist/tests/irl/_AI_AUDIT_INSTRUCTIONS.md
!dist/tests/irl/.gitkeep

# Auto-generated pattern library files (regenerated on every scan)
# These files are auto-generated by pattern-library-manager.sh
# and change with every scan due to timestamp updates
dist/PATTERN-LIBRARY.json
dist/PATTERN-LIBRARY.md

# ============================================
# DEVELOPMENT & TESTING
# ============================================
Expand Down
2 changes: 2 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
engine-strict=true

Loading
Loading