gobi-space

Read and write posts, replies, and DMs in Gobi spaces via the gobi CLI.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Agents and scripts need a programmatic way to participate in Gobi community spaces and personal spaces — reading feeds, posting updates, replying, reacting, and messaging — without using the interactive web or desktop clients. ## Core Features & Use Cases - Post and reply management: Create, edit, delete, search, and browse posts and replies in both community spaces (gobi space) and the private personal space (gobi personal), with support for rich-text mentions, media attachments, and artifact attachments. - Feeds, topics, channels, and DMs: Read the unified feed, topic feeds, member-gated channels, and direct-message conversations with space members or bots. - Use Case: An agent finishing a work session drafts a summary post, attaches a markdown artifact, mentions a teammate by publicId via --rich-text, and publishes it to the team's space feed after user confirmation. ## Quick Start Ask the agent to list the latest posts in your Gobi space feed and then draft a reply to one of them for your approval.

Frequently Asked Questions about gobi-space

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

FAQPage Schema
How do I create a post in a Gobi space from the command line?▼

Run gobi space create-post with --title and --content, after selecting a space with gobi space warp or passing --space-slug. Use --attach for media files, --artifact for artifacts, and --rich-text when you need real user mentions.

How do I mention a user in a Gobi post so they get notified?▼

Use --rich-text with a JSON array containing {"type":"user","userId":"u..."} nodes; a bare @name in --content renders as plain text and notifies nobody. Get the publicId from feed JSON output, never guess it.

What is the difference between gobi space and gobi personal posts?▼

Both share the same Post data model and command flags, but gobi space posts are visible in a community space while gobi personal posts are private to the author via personalSpaceUserId scoping. Personal commands need no space slug.

Can I create or manage Gobi spaces and channels from the CLI?▼

No. Space and member administration, plus channel creation and membership management, are web-UI only. The CLI covers reading feeds, posting, replying, reacting, and messaging within spaces you already belong to.

Why does my gobi space command fail with a missing space slug error?▼

Space commands need a slug from selectedSpaceSlug in .gobi/settings.yaml (set via gobi space warp) or a parent-level --space-slug flag. If neither is present, the command errors; gobi personal commands have no such requirement.