source-command-server-status
SkillDev toolsShow status of all running ActualChat servers
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the source-command-server-status skill
What this skill tells your AI
The instructions your AI receives, as published by actual-chat/actual-chat in .agents/skills/source-command-server-status/SKILL.md and read by ahel’s review.
Use this skill when the user asks to run the migrated source command server-status.
Command Template
Server Status
Show server status for current worktree.
Bash Implementation
#!/bin/bash
PROJECT_PATH="${AC_ProjectPath:-$(pwd)}"
pwsh -NoProfile -c "
. '$PROJECT_PATH/scripts/Common.ps1'
\$envFile = Join-Path '$PROJECT_PATH' '.env'
\$instance = 'dev'; \$port = 7080; \$baseUri = 'https://local.voxt.ai'
if (Test-Path \$envFile) {
Get-Content \$envFile | ForEach-Object {
if (\$_ -match '^urls=.*?(\d+)$') { \$port = [int]\$Matches[1] }
if (\$_ -match '^CoreSettings__Instance=(.+)$') { \$instance = \$Matches[1] }
if (\$_ -match '^HostSettings__BaseUri=(.+)$') { \$baseUri = \$Matches[1] }
}
}
\$lsof = bash -c \"lsof -i :\$port 2>/dev/null | grep LISTEN | head -1\" 2>\$null
\$pid = \$null
\$status = 'stopped'
if (\$lsof) {
try { \$pid = [int]((\$lsof -split '\s+')[1]); \$status = 'running' } catch {}
}
Write-Host \"Instance: \$instance\"
Write-Host \"Port: \$port\"
Write-Host \"Status: \$status\"
if (\$pid) { Write-Host \"PID: \$pid\" }
Write-Host \"Browser: \$baseUri\"
"
Signals
- GitHub stars
- 55
- Forks
- 10
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
source-command-server-status- Source
- github.com/actual-chat/actual-chat