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

# vidjutsu post

> Create, edit, and manage post records

## Create a post

Create a post record. The account ID is optional.

```bash theme={null}
vidjutsu post create --video vid_q9f3 --caption "Summer fits"
```

### Options

| Flag          | Type   | Description                                      |
| ------------- | ------ | ------------------------------------------------ |
| `--account`   | string | Account ID to link to                            |
| `--video`     | string | Video ID                                         |
| `--video-url` | string | Video URL                                        |
| `--caption`   | string | Post caption                                     |
| `--brief`     | string | Content brief or notes                           |
| `--tag`       | string | Key-value tag, e.g. `batch=week-12` (repeatable) |

**Rate limit:** counts toward the 200/day `posts` limit.

## Edit a post

Update a post record:

```bash theme={null}
vidjutsu post edit post_m2v1 --caption "Updated caption" --video-url "https://..."
```

## List posts

```bash theme={null}
vidjutsu post list
```

Filter by tag:

```bash theme={null}
vidjutsu post list --tag batch=week-12
```

Filter by account:

```bash theme={null}
vidjutsu post list --account acc_8k2x
```

## Get post details

```bash theme={null}
vidjutsu post get post_m2v1
```

## Delete a post

```bash theme={null}
vidjutsu post delete post_m2v1
```
