SIMON Master Console Rebuild
True command center for SIMON + WEB360
This rebuild gives you a cleaner production spine: interactive tree, live viewer, guarded editor, dynamic graphics, architecture map, and note storage. It is designed to sit beside your existing
console.php
and become the stronger replacement path.
Dashboard
Tree
Viewer
System Map
File Registry
Notes
Files
15,279
Folders
408
Scanned Size
3.84 GB
PHP Files
891
Editable Text Files
12,540
File viewer
guarded to /htdocs
/admin/ai_review.php
<?php declare(strict_types=1); require __DIR__ . '/admin_common.php'; simon_handle_auth(); simon_require_login(); $registry = simon_load_registry(); $files = simon_scan_tree(['/vendor/','/.git/','/node_modules/']); $security = simon_security_checks(); $review = simon_ai_review($registry, $files, $security); $totals = simon_totals($registry); simon_render_header('AI Review', 'ai_review.php'); ?> <section class="grid g-3"> <div class="stat"><div class="kpi-label">Headline</div><div style="font-weight:700;line-height:1.5"><?= simon_e($review['headline']) ?></div></div> <div class="stat"><div class="kpi-label">File Footprint</div><div class="n"><?= number_format(count($files)) ?></div></div> <div class="stat"><div class="kpi-label">Portfolio Health</div><div class="n"><?= number_format($totals['avg_completion'], 1) ?>%</div></div> </section> <div style="height:18px"></div> <section class="grid g-3"> <div class="card"> <div class="section-title"><h2>Strengths</h2><span class="badge green">GOOD SIGNALS</span></div> <ul><?php foreach ($review['wins'] as $item): ?><li><?= simon_e($item) ?></li><?php endforeach; ?></ul> </div> <div class="card"> <div class="section-title"><h2>Warnings</h2><span class="badge danger">RISKS</span></div> <ul><?php foreach ($review['warnings'] as $item): ?><li><?= simon_e($item) ?></li><?php endforeach; ?></ul> </div> <div class="card"> <div class="section-title"><h2>Next Moves</h2><span class="badge amber">RECOMMENDED</span></div> <ul><?php foreach ($review['next'] as $item): ?><li><?= simon_e($item) ?></li><?php endforeach; ?></ul> </div> </section> <div style="height:18px"></div> <section class="card"> <div class="section-title"><h2>AI Review Prompt Model</h2><span class="badge purple">FRAMEWORK</span></div> <table> <tr><th>Question</th><th>Purpose</th></tr> <tr><td>What is this module and what does it produce?</td><td>Clarifies asset identity and function.</td></tr> <tr><td>Why does it exist and what business outcome does it support?</td><td>Connects module to strategic value.</td></tr> <tr><td>Who owns, uses, benefits from, or depends on it?</td><td>Maps stakeholders and audience.</td></tr> <tr><td>When should it launch, update, or monetize?</td><td>Enforces timing and prioritization.</td></tr> <tr><td>Where does it live in code, brand, and market?</td><td>Maps technical and commercial location.</td></tr> <tr><td>How does it work, scale, secure, and earn?</td><td>Connects implementation to execution.</td></tr> </table> </section> <?php simon_render_footer(); ?>
Save file
Quick jump
open a path
Open