From 26594909247fd4a5db4196c3e70f2c237f9a0e39 Mon Sep 17 00:00:00 2001 From: Snider Date: Tue, 17 Mar 2026 09:11:03 +0000 Subject: [PATCH] =?UTF-8?q?fix(uptelligence):=20DX=20audit=20=E2=80=94=20f?= =?UTF-8?q?ix=20strict=5Ftypes=20and=20CLAUDE.md=20commands?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add missing declare(strict_types=1) to config.php and routes/admin.php - Fix artisan command prefixes in CLAUDE.md: three commands use uptelligence: prefix not upstream: (check-updates, send-digests, sync-altum-versions) - PSR-12 compliance verified (no tabs, no trailing whitespace) - composer test blocked: ../php path repo not available in workspace Co-Authored-By: Virgil --- CLAUDE.md | 14 +++++++------- config.php | 2 ++ routes/admin.php | 2 ++ 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index 7328ad6..3438ee7 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -20,13 +20,13 @@ composer run test # Run all tests with Pest **Artisan commands** (when installed in a host application): ```bash -php artisan upstream:check # Display vendor status table -php artisan upstream:analyze # Run AI diff analysis between versions -php artisan upstream:issues # Create GitHub/Gitea issues from todos -php artisan upstream:check-updates # Poll registries (GitHub, Gitea, AltumCode) -php artisan upstream:send-digests # Send scheduled digest emails -php artisan upstream:sync-forge # Sync with internal Gitea instance -php artisan upstream:sync-altum-versions # Read deployed Altum versions from disk +php artisan upstream:check # Display vendor status table +php artisan upstream:analyze # Run AI diff analysis between versions +php artisan upstream:issues # Create GitHub/Gitea issues from todos +php artisan upstream:sync-forge # Sync with internal Gitea instance +php artisan uptelligence:check-updates # Poll registries (GitHub, Gitea, AltumCode) +php artisan uptelligence:send-digests # Send scheduled digest emails +php artisan uptelligence:sync-altum-versions # Read deployed Altum versions from disk ``` ## Architecture diff --git a/config.php b/config.php index 74cfe69..37c647e 100644 --- a/config.php +++ b/config.php @@ -1,5 +1,7 @@