skillett status
skillett statusDescription
Section titled “Description”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.
Options
Section titled “Options”No options.
API calls
Section titled “API calls”| Endpoint | Purpose |
|---|---|
GET /v1/me | Fetch user profile and plan |
GET /v1/skills | Fetch integration statuses |
Examples
Section titled “Examples”$ skillett statusJSON 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" } ]}Exit codes
Section titled “Exit codes”0— Success1— Not authenticated (runskillett loginfirst)2— Network or server error