gobi-core

Authenticate, select spaces, and update the Gobi CLI from the command line.

3|Updated Feb 25, 2026
One-click install
npx skills add https://github.com/gobi-ai/gobi-cli --skill gobi-core-gobi-ai
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: gobi-core
Source: https://github.com/gobi-ai/gobi-cli/tree/main/skills/gobi-core
Command: npx skills add https://github.com/gobi-ai/gobi-cli --skill gobi-core-gobi-ai

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Agents and developers need a scriptable way to sign in to Gobi, pick an active community space, and keep the CLI current without interactive desktop or web clients. This Skill wraps those core setup commands so an AI agent can drive them headlessly. ## Core Features & Use Cases - Authentication: Log in via device-code flow or a one-time connect token, check auth status, and log out with gobi auth. - Space management: List, create, join, and warp into spaces so subsequent gobi space commands run without repeating --space-slug. - CLI maintenance: Check for and install CLI updates with gobi update. - Use Case: An agent onboarding a new user runs gobi auth login --token gbi_…, then gobi space warp my-space, and can immediately post to that space with structured --json output. ## Quick Start Ask the agent to log in to Gobi and warp into your space, for example: "Log in to Gobi with my connect token and set the active space to my-space."

Frequently Asked Questions about gobi-core

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I log in to Gobi from the command line?▼

Run `gobi auth login` to start a device-code flow that prints a URL and polls until you authorize in the browser. To skip the browser step, pass a one-time connect token from the Gobi app with `gobi auth login --token gbi_…`.

How do I set the active Gobi space for a project?▼

Run `gobi space warp <slug>` to write the space slug into `.gobi/settings.yaml`. Running `gobi space warp` with no slug opens an interactive prompt, so agents should always pass the slug explicitly.

Can I use the Gobi CLI without joining a space?▼

Yes. Authentication, updates, and all `gobi personal` commands work without a space. Only `gobi space` post, reply, and feed commands require a selected space or the `--space-slug` override.

How do I get JSON output from gobi CLI commands?▼

Pass `--json` as a top-level flag before the subcommand, for example `gobi --json space list`. Responses follow the shape `{ "success": true, "data": ... }` or `{ "success": false, "error": "..." }`.

Why does gobi auth login seem stuck on the device page?▼

The browser staying on the device page or redirecting to sign-in is normal waiting behavior, not a failure. Do not restart login or mint a new code while one is polling; only an expired poll, timeout, or HTTP error indicates failure.