gobi-sense

Browse Sense activities and conversations from personal and space scopes via gobi-cli.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Sense captures activities and conversations across the wearable, mobile app, and desktop, but reviewing that captured data requires knowing where each record type lives and which commands expose it. This Skill maps the read-only CLI surface so an agent can list and read activities and conversations without guessing at scopes or flags. ## Core Features & Use Cases - Activity browsing: List and inspect personal-core activities (what you were doing, with start/end times) using gobi personal activities list and get with pagination. - Conversation reading: Retrieve a conversation's four components — summary, side notes, note artifact, and diarized transcript — from personal or space scopes. - Scope-aware listing: Distinguish ambient (sense) versus intentional (mobile/desktop) capture, filter space conversations with --mine, and paginate with --limit/--before. - Use Case: An agent reviews your morning: it runs gobi --json personal activities list --limit 30 to see what you worked on, then gobi --json personal conversations get o0123456789 to pull the transcript of a meeting Sense recorded. ## Quick Start Ask the agent to list your recent Sense conversations and read the transcript of the most recent one using gobi-cli in JSON mode.

Frequently Asked Questions about gobi-sense

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

FAQPage Schema
How do I list my Sense conversations with gobi-cli?▼

Run `gobi --json personal conversations list` for your personal core, or `gobi --json space conversations list --space-slug <slug>` for a space. Space listings support `--limit`, `--before`, and `--mine` for pagination and filtering.

How do I read a Sense conversation transcript from the CLI?▼

Use `gobi --json personal conversations get <conversationId>` or the space equivalent. It returns four components: summary, side notes, linked note artifact, and the diarized transcript with speakers resolved to names.

What is the difference between activities and conversations in Gobi Sense?▼

Activities are a log of what you were doing with start and end times, stored only in your personal core. Conversations are recordings with transcripts and summaries, living in your personal core and, when captured during an active space, in that space.

Can I access Sense audio recordings through gobi-cli?▼

No. Raw audio is never exposed by the CLI. Transcripts, summaries, and side notes are owner-only, so reading another member's conversation returns an empty shell.

Why is there no gobi space activities command?▼

Activities are always filed in the personal core regardless of which space was active during capture, and the backend exposes no space-activities route. Only conversations are filed to spaces.

Why does gobi personal conversations list ignore --limit and --before?▼

The personal conversations list is filtered from the cross-scope feed rather than a paginated history, so `--limit`, `--before`, and `--mine` are inert there. Use the space conversations list for real cursor-based pagination.