diff --git a/public/index-editorial.html b/public/index-editorial.html
index 966be3f..ec623c4 100644
--- a/public/index-editorial.html
+++ b/public/index-editorial.html
@@ -3013,16 +3013,17 @@ function termBoot() {
' PeerCortex Feedback Terminal v0.5.0',
'────────────────────────────────────────────',
'',
- 'Available commands:',
- ' send — submit feedback or bug report',
- ' help — show this menu',
- ' clear — clear terminal',
- '',
- 'Type send and press Enter to start.',
+ 'Got feedback? A bug? A wild idea?',
+ 'This goes straight to the editorial team.',
''
];
var delay = 0;
lines.forEach(function(l) { setTimeout(function(){ termPrint(l); }, delay); delay += 35; });
+ // Auto-start wizard after boot sequence
+ var autoDelay = lines.length * 35 + 350;
+ setTimeout(function() {
+ if (termStep === 0) { termStartWizard(); }
+ }, autoDelay);
}
function termStartWizard() {
diff --git a/public/shell.html b/public/shell.html
index a70615b..79310fc 100644
--- a/public/shell.html
+++ b/public/shell.html
@@ -391,7 +391,7 @@ function showHelp(authed) {
} else {
print(' list — show all feedback entries');
print(' list [category] — filter by category (bug, feature, design, general)');
- print(' show — show full message for entry #n');
+ print(' show [n] — show full message for entry #n');
print(' stats — category + ASN statistics');
print(' export — download all entries as JSON');
print(' refresh — reload entries from server');