Skip to content

skillett status

Terminal window
skillett status

Shows your authenticated user profile, current plan, and the status of all integrations. In interactive terminals (TTY), output is pretty-printed. In non-interactive contexts (piped, agent), output is JSON.

No options.

EndpointPurpose
GET /v1/meFetch user profile and plan
GET /v1/skillsFetch integration statuses
Terminal window
$ skillett status

JSON output:

{
"user": {
"email": "david@example.com",
"display_name": "David",
"plan": "free"
},
"integrations": [
{ "slug": "github", "name": "GitHub", "status": "connected" },
{ "slug": "gmail", "name": "Gmail", "status": "not_connected" },
{ "slug": "notion", "name": "Notion", "status": "connected" }
]
}
  • 0 — Success
  • 1 — Not authenticated (run skillett login first)
  • 2 — Network or server error