Skyportal Agent
An open-source AI infrastructure engineer that explains what changed before production breaks.
Skyportal continuously builds a timeline of your AI infrastructure by observing deployments, Kubernetes events, GPU metrics, configuration changes, logs, and infrastructure updates. It correlates those events across your stack and explains likely root causes.
Instead of searching through dozens of dashboards, ask:
- Why did GPU utilization suddenly drop?
- What changed before latency doubled?
- Which deployment caused this regression?
- Why is this model suddenly slower?
- Have we seen this incident before?
How it works
Observe infrastructure → Build a change timeline → Correlate regressions → Explain the likely cause
Skyportal connects a symptom to the changes that preceded it. A diagnosis can compare a deployment with its previous release, measure the impact, identify the most likely change, and report its confidence.
Works with
Get started
Requires Python 3.11 or newer.
pip install skyportalai
skyportalai
Or run from a checkout:
git clone https://github.com/SkyportalAi/skyportalai.git
cd skyportalai
./run.sh
Inside the terminal, run /login once, list infrastructure with /servers,
select one or more hosts with /server, and ask what changed:
skyportalai [connected] > diagnose the latest deployment
Useful commands:
/login Connect your Skyportal account
/servers List available infrastructure
/server <id> [id ...] Select one or more servers; the first is the default
/permission [ask|autoapprove] Show or change the shared approval setting
/status Show the active context
/new Start a new investigation
/resume Continue the previous investigation
/help Show every command
Python SDK
Use the SDK when you want to start or automate an investigation from Python:
from skyportalai import Skyportal
with Skyportal(api_key="sk-...") as client:
client.set_permission_mode("autoapprove")
chat = client.chat.create_chat(
"What changed before GPU utilization dropped?",
server_id=12,
)
result = chat.wait()
print(result.status)
ask is the default. autoapprove submits each concrete approval through the
normal audited approval endpoint; it does not bypass read-only environments,
server scope, repository denials, or other backend safety policy. An explicit
on_approval callback takes precedence over the stored account setting. Waits
are indefinite by default so long-running single-host, multi-host, and
Kubernetes turns can finish; pass timeout= when an automation job needs a
finite deadline.
To make the full multi-host scope available to the first turn, create the chat with repeatable server scope and an active default:
with Skyportal(api_key="sk-...") as client:
chat = client.chat.create_chat(
"Compare GPU health on all selected hosts",
server_ids=[12, 18],
active_server_id=12,
selected_namespaces={18: ["default", "vllm"]},
)
result = chat.wait(on_approval=lambda approval: True)
The scope is an allowlist: the active server handles an ambiguous command, and
the agent broadcasts only when the prompt explicitly targets all selected
hosts. Use {"18": ["__all__"]} for every Kubernetes namespace, omit
selected_namespaces when no Kubernetes scope is needed, and use
chat.select_servers(...) between turns to replace an existing chat's scope.
When replacing scope, omitting namespace data preserves retained selections
while {} clears them. The singular server_id=12 creation form remains
supported.
Set SKYPORTALAI_API_KEY instead of passing a key directly. The client also
supports SKYPORTALAI_BASE_URL for self-hosted deployments.
Automation
The skyportalai command provides stable JSON output for scripts and CI:
skyportalai chat send --server 12 --wait "Diagnose the latest regression"
skyportalai chat send --server 12 --server 18 \
--namespace 18=default --namespace 18=vllm --wait \
"Compare GPU health on all selected hosts"
skyportalai --json chat messages 123
Set the full scope of an existing chat between turns with repeatable --server
options:
skyportalai chat select-servers 123 \
--server 12 --server 18 --active-server 12 \
--namespace 18=default --namespace 18=vllm
skyportalai chat send --chat-id 123 --wait "Compare all selected hosts"
Use --clear-scope to remove every selected server explicitly.
Run skyportalai --help for the complete command reference.
Kubernetes clusters
Connect a cluster with its kubeconfig. The CLI sends the credential only to the authenticated SkyPortal API, where the same validation and encrypted storage as the web application are used; kubeconfigs are never returned by lifecycle APIs.
skyportalai kubernetes connect production --kubeconfig ~/.kube/config --environment Production
skyportalai kubernetes list
Use the returned cluster ID as a normal chat target. Namespace scope is an allowlist and every mutating command keeps the existing approval gate:
skyportalai chat send --server 17 --namespace 17=default --wait \
"Restart the api deployment and verify the rollout"
Remove the stored cluster credential when it is no longer needed:
skyportalai kubernetes disconnect 17
Ansible playbooks
Store validated playbooks in SkyPortal and reuse them across account-owned SSH
targets. List responses omit YAML bodies; show retrieves one playbook when
you need to inspect or edit it.
skyportalai ansible create bootstrap --file playbook.yml --description "Base host setup"
skyportalai ansible list
skyportalai ansible show 4
skyportalai ansible update 4 --file playbook.yml
Deployments run through the ops agent and the normal command-approval policy.
The playbook executes on the selected SSH host with a temporary, mode-restricted
file that is removed after ansible-playbook exits.
skyportalai ansible deploy 4 --server 12
skyportalai chat wait 91
skyportalai chat approve 91 APPROVAL_ID --command "COMMAND_FROM_STATUS"
skyportalai ansible delete 4 --yes
The Python SDK exposes the same lifecycle as client.ansible.create(...),
.list(), .get(...), .update(...), .deploy(...), and .delete(...).
Observability agent
Install the collector dependencies and review the deployment guide before running the agent on experiment volumes:
pip install "skyportalai[agent]"
See agent deployment and data handling.
Development
poetry install --all-extras
poetry run pytest
poetry run ruff check .
poetry check --strict
See CONTRIBUTING.md to contribute, and RELEASING.md to cut a release. Report security issues privately using SECURITY.md.
License
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file skyportalai-0.2.0.tar.gz.
File metadata
- Download URL: skyportalai-0.2.0.tar.gz
- Upload date:
- Size: 83.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fafd4a7518bb447b4b181b43bf6f76485a6cecf2f57f8af1e7686e82d79d4f7c
|
|
| MD5 |
fbda8075329445f1e24a5b87e7645b12
|
|
| BLAKE2b-256 |
cd7351b8696f28967678896d2f3b77fecea7e285e82248180a24c78d064e6392
|
Provenance
The following attestation bundles were made for skyportalai-0.2.0.tar.gz:
Publisher:
publish.yml on SkyportalAi/skyportalai
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
skyportalai-0.2.0.tar.gz -
Subject digest:
fafd4a7518bb447b4b181b43bf6f76485a6cecf2f57f8af1e7686e82d79d4f7c - Sigstore transparency entry: 2669486281
- Sigstore integration time:
-
Permalink:
SkyportalAi/skyportalai@ae02bac5e762254f14e740e85f183b5c9f751177 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/SkyportalAi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@ae02bac5e762254f14e740e85f183b5c9f751177 -
Trigger Event:
release
-
Statement type:
File details
Details for the file skyportalai-0.2.0-py3-none-any.whl.
File metadata
- Download URL: skyportalai-0.2.0-py3-none-any.whl
- Upload date:
- Size: 102.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
90391240b2aa4755fc0878f44ee6c6365ce3107dc9b305d73af474126715abb8
|
|
| MD5 |
9ca869961f8cf9fb1858662106f1eb2e
|
|
| BLAKE2b-256 |
76327ae05905a9c6122da828e3cf57e50dcae67369da74b7c327a1c9eba0341b
|
Provenance
The following attestation bundles were made for skyportalai-0.2.0-py3-none-any.whl:
Publisher:
publish.yml on SkyportalAi/skyportalai
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
skyportalai-0.2.0-py3-none-any.whl -
Subject digest:
90391240b2aa4755fc0878f44ee6c6365ce3107dc9b305d73af474126715abb8 - Sigstore transparency entry: 2669486425
- Sigstore integration time:
-
Permalink:
SkyportalAi/skyportalai@ae02bac5e762254f14e740e85f183b5c9f751177 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/SkyportalAi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@ae02bac5e762254f14e740e85f183b5c9f751177 -
Trigger Event:
release
-
Statement type: