From mikrus
Use when configuring the Mikrus VPS connection or testing it — creating ~/.mikrus/config.json, computing the SSH port from the machine number, or verifying that API and SSH work. Triggers: "skonfiguruj Mikrus", "połącz z Mikrusem", "sprawdź połączenie z serwerem", "test mikrus".
How this skill is triggered — by the user, by Claude, or both
Slash command
/mikrus:mikrus-setupThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Konfiguruje połączenie z serwerem VPS Mikrus i testuje je.
Konfiguruje połączenie z serwerem VPS Mikrus i testuje je.
Plik ~/.mikrus/config.json (poza repozytorium pluginu; na Windows %USERPROFILE%\.mikrus\config.json):
| Pole | Znaczenie | Źródło |
|---|---|---|
srv | nazwa serwera (np. a123) | panel / mail powitalny |
host | host SSH (np. srv03.mikr.us) | mail powitalny |
sshPort | port SSH = 10000 + numer maszyny | wyliczany |
user | root | stałe |
identityFile | ścieżka do prywatnego klucza SSH | użytkownik |
apiKey | klucz API | https://mikr.us/panel/?a=api |
apiBase | https://api.mikr.us | stałe |
srv), ścieżkę do klucza prywatnego, klucz API.sshPort = 10000 + numer maszyny. Potwierdź wynik z użytkownikiem.Import-Module "$env:CLAUDE_PLUGIN_ROOT/lib/mikrus.psm1" -Force
$dir = Join-Path $HOME '.mikrus'
if (-not (Test-Path $dir)) { New-Item -ItemType Directory -Force $dir | Out-Null }
@{
srv='a123'; host='srv03.mikr.us'; sshPort=10123; user='root'
identityFile=(Join-Path $HOME '.ssh/mikrus_ed25519')
apiKey='WKLEJ_KLUCZ'; apiBase='https://api.mikr.us'
} | ConvertTo-Json | Set-Content -Path (Join-Path $dir 'config.json') -Encoding utf8
ssh-copy-id-odpowiednik); bez tego logowanie kluczem nie zadziała.$cfg = Get-MikrusConfig
"API /info:"; Invoke-MikrusApi -Endpoint '/info' -Config $cfg
"SSH echo:"; (Invoke-MikrusSSH -Command 'echo ok' -Config $cfg).Output
apiKey).apiKey w odpowiedzi do użytkownika ani nie commituj config.json.sshPort i klucza.Provides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub lutencjusz/mikrus-plugin --plugin mikrus