gobi-artifact

Create, version, and attach Gobi artifacts to posts via CLI commands.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Managing versioned creations (images, videos, markdown notes, HTML pages) that need to be shared across Gobi posts requires tracking revision history and attachments manually. This Skill wraps the gobi personal artifact CLI commands so an agent can author, revise, revert, download, and attach artifacts programmatically. ## Core Features & Use Cases - Versioned Artifact CRUD: Create artifacts of kind image, video, gif, markdown, note, or html, then revise, revert, inspect history, download, or delete them through structured JSON output. - Post Attachment Workflows: Attach artifacts to new or existing posts in personal or space lanes, with merge-safe attachment at create time and full-replacement semantics on post edits. - Markdown Vault Integration: Anchor [[wikilinks]] to a vault via --vault-slug and auto-upload linked files with --auto-attachments. - Use Case: Draft a design spec as a markdown artifact, attach it to a space post for feedback, then revise it later so every attached post renders the updated revision automatically. ## Quick Start Ask the agent to create a markdown artifact from a local file and attach it to a post, for example: create a Gobi markdown artifact from notes.md titled Design notes and attach it to post 12345.

Frequently Asked Questions about gobi-artifact

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

FAQPage Schema
How do I create a Gobi artifact from the command line?▼

Run gobi --json personal artifact create with a --kind (markdown, note, html, image, gif, or video) plus a body via --file, --content, or stdin for text kinds, or --file for media uploads. Add --post-id to attach it to an existing post in the same call.

How do I attach an artifact to a Gobi space post?▼

Pass --artifact <artifactId> to gobi space create-post or edit-post. Note that edit-post replaces the full attachment set, so include every artifact id you want to keep; create --post-id merges instead.

Can artifacts be created in a Gobi space directly?▼

No. Artifacts live only in your personal core under gobi personal artifact; there is no gobi space artifact command. To share one with a space, attach it to a post, and revisions update every attached post.

How does artifact revision history work in Gobi?▼

Every revise writes a new revision that immediately becomes current, and --from branches off an earlier revision to fork the tree. Use history to view the full tree and revert --to <revisionId> to restore earlier content as a new revision.

What file size limits apply to Gobi media artifacts?▼

Media uploads mirror post media ceilings: 10MB for photos, 15MB for GIFs, and 512MB for video, derived from the file's content type. Markdown, note, and html kinds carry text bodies instead of uploaded files.