fix(web-stop): add restart hint and "after execution" section

- Script: hint now mentions both restart (/web-publish) and delete (/web-unpublish)
- SKILL.md: add "После выполнения" section with restart/delete options

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Nick Shirokov
2026-02-22 18:08:28 +03:00
co-authored by Claude Opus 4.6
parent a110c17066
commit 31debfb61b
2 changed files with 8 additions and 2 deletions
+2 -2
View File
@@ -70,7 +70,7 @@ while ($elapsed -lt $maxWait) {
$check = Get-OurHttpd
if (-not $check) {
Write-Host "Apache остановлен" -ForegroundColor Green
Write-Host "Публикации сохранены. Для удаления: /web-unpublish <имя> или /web-unpublish --all" -ForegroundColor Gray
Write-Host "Публикации сохранены. Перезапуск: /web-publish <база> Удаление: /web-unpublish --all" -ForegroundColor Gray
exit 0
}
}
@@ -89,4 +89,4 @@ if ($remaining) {
}
Write-Host "Apache остановлен" -ForegroundColor Green
Write-Host "Публикации сохранены. Для удаления: /web-unpublish <имя> или /web-unpublish --all" -ForegroundColor Gray
Write-Host "Публикации сохранены. Перезапуск: /web-publish <база> Удаление: /web-unpublish --all" -ForegroundColor Gray