Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions docs/standards/CCCC_DAEMON_IPC_V1.md
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,38 @@ Notes:
- Requires developer mode.
- Permission is `user`, or `foreman` when `group_id` is provided.

#### `feedback_bundle_export`

Developer-mode export of a redacted diagnostics bundle for a group.

Args:
```ts
{ group_id: string; by?: string }
```

Result:
```ts
{
group_id: string
attachment: {
path: string
title?: string
mime_type?: string
bytes?: number
}
bundle: {
filename: string
redaction: "best_effort"
}
}
```

Notes:
- Requires developer mode.
- Requires `group_id`.
- Permission is `user`, or `foreman` for group-scoped access.
- The exported zip may include `manifest.json`, `snapshot/debug_snapshot.json`, recent logs, and PTY terminal captures with best-effort redaction applied.

### 8.3 Groups and Scopes

#### `attach`
Expand Down
Loading
Loading