> ## Documentation Index
> Fetch the complete documentation index at: https://docs.gobihq.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Home

> Read what you captured and post privately, with gobi personal.

`gobi personal` is your **Home**: everything you captured, your artifacts, and a private feed only you can read. It is where the CLI reaches your own data.

## What you captured

Captures are browse-only through the CLI. You can read what the apps recorded; you can't create one.

```sh theme={null}
gobi personal conversations list
gobi personal conversations transcript <conversationId>
gobi personal conversations audio <conversationId>     # signed URL for the recording
gobi personal activities list
gobi personal activities get <activityId>
gobi personal activities transcript <activityId>
```

**A capture lands in Home whatever space was on screen when it happened**, so this is the only place conversations and activities are listed. Transcript and audio stay with the person who recorded, and the API enforces it.

`audio` returns `null` for analyzer conversations, which have no combined recording.

## Your private feed

The same posting verbs as a space, scoped so only you can see the rows.

```sh theme={null}
gobi personal feed
gobi personal create-post --title "…" --content "…"
gobi personal create-reply <postId> --content "…"
gobi personal react <postId> 👍
gobi personal get-post <postId>
gobi personal list-posts                 # root posts only
gobi personal edit-post <postId> --content "…"
gobi personal delete-post <postId>       # edit-reply and delete-reply exist too
gobi personal search-posts "pricing"
```

Replies inherit the parent's private scope automatically. Nothing here surfaces anywhere else until you put it in a space yourself.

## Artifacts

`gobi personal artifact` holds the things you make. They stay in Home until you attach one to a post. See [artifacts](/cli/artifacts).

<Note>
  Sharing is always an explicit step. To put something from Home in front of a team, attach it to a space post: `gobi space create-post --artifact <artifactId>`.
</Note>
