بنقرة واحدة
ssh-tunnel
Create and manage SSH tunnels to access remote services (databases, web panels, APIs)
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Create and manage SSH tunnels to access remote services (databases, web panels, APIs)
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Essential file system operations.
Common Git version control operations.
Upload, download, and edit files on remote servers via NAVIG
Summarize web pages, articles, YouTube videos, and documents using AI
Query and manage databases on remote servers via NAVIG
Check GitHub repos, CI status, PRs, and issues using the gh CLI
| name | ssh-tunnel |
| description | Create and manage SSH tunnels to access remote services (databases, web panels, APIs) |
| user-invocable | true |
| navig-commands | ["navig tunnel list","navig tunnel add {name} -l {local_port} -r {remote_port}","navig tunnel start {name}","navig tunnel stop {name}","navig tunnel status"] |
| examples | ["Create a tunnel to the database","I need to access the remote Grafana dashboard","Show active tunnels","Tunnel port 3000 from production","Stop all tunnels"] |
When the user needs to access remote services locally (databases, admin panels, internal APIs) via SSH tunnels.
navig tunnel listnavig tunnel commandUser says: "I need to connect to the production database locally"
navig host use production
navig tunnel add db-prod -l 3306 -r 3306
navig tunnel start db-prod
Response:
🔗 Tunnel created!
Local: localhost:3306 → production:3306 (MySQL)
Status: ✅ Active
Connect with: mysql -h 127.0.0.1 -P 3306 -u user -p
User says: "I want to access Grafana on my server"
navig tunnel add grafana -l 3000 -r 3000
navig tunnel start grafana
Response:
🔗 Tunnel to Grafana active!
Open in browser: http://localhost:3000
navig tunnel add redis -l 6379 -r 6379
navig tunnel start redis
navig tunnel list
Response:
🔗 SSH Tunnels:
✅ db-prod: localhost:3306 → production:3306
✅ grafana: localhost:3000 → production:3000
⏹️ redis: localhost:6379 → production:6379 (stopped)
navig tunnel stop db-prod
navig tunnel stop --all
| Service | Remote Port | Suggested Local |
|---|---|---|
| MySQL | 3306 | 3306 |
| PostgreSQL | 5432 | 5432 |
| Redis | 6379 | 6379 |
| Grafana | 3000 | 3000 |
| Prometheus | 9090 | 9090 |
| HestiaCP | 8083 | 8083 |
| Portainer | 9443 | 9443 |
| n8n | 5678 | 5678 |
navig tunnel add {name} -l {alt_port} -r {port}"navig host test"