Skip to content
This repository was archived by the owner on Jul 14, 2026. It is now read-only.
Merged
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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ node_modules/
.idea
octomind.config.json
octomind-cli-debug/
openapi.yaml

44 changes: 29 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ This is necessary for the cli to work and avoid dependency conflicts, when insta

# octomind

Octomind cli tool. Version: 1.1.2. Additional documentation see https://octomind.dev/docs/api-reference/
Octomind cli tool. Version: 1.1.3. Additional documentation see https://octomind.dev/docs/api-reference/

**Usage:** `octomind [options] [command]`

Expand All @@ -38,7 +38,7 @@ Octomind cli tool. Version: 1.1.2. Additional documentation see https://octomind

# octomind CLI Documentation

Octomind cli tool. Version: 1.1.2. Additional documentation see https://octomind.dev/docs/api-reference/
Octomind cli tool. Version: 1.1.3. Additional documentation see https://octomind.dev/docs/api-reference/

## Commands

Expand Down Expand Up @@ -258,6 +258,33 @@ Get notifications for a test target
| `-j, --json` | Output raw JSON response | No | |
| `-t, --test-target-id [id]` | Test target ID, if not provided will use the test target id from the config | No | |

## list-test-cases

List all test cases

**Usage:** `list-test-cases [options]`

### Options

| Option | Description | Required | Default |
|--------|-------------|----------|--------|
| `-j, --json` | Output raw JSON response | No | |
| `-t, --test-target-id [id]` | Test target ID, if not provided will use the test target id from the config | No | |

## delete-test-case

Delete a test case

**Usage:** `delete-test-case [options]`

### Options

| Option | Description | Required | Default |
|--------|-------------|----------|--------|
| `-j, --json` | Output raw JSON response | No | |
| `-c, --test-case-id <id>` | Test case ID | Yes | |
| `-t, --test-target-id [id]` | Test target ID, if not provided will use the test target id from the config | No | |

## test-case

Get details of a specific test case
Expand Down Expand Up @@ -292,19 +319,6 @@ Create a new test case discovery
| `--assigned-tag-ids [ids]` | Comma-separated list of tag IDs | No | |
| `--folder-id [id]` | Folder ID | No | |

## list-test-cases

List all test cases

**Usage:** `list-test-cases [options]`

### Options

| Option | Description | Required | Default |
|--------|-------------|----------|--------|
| `-j, --json` | Output raw JSON response | No | |
| `-t, --test-target-id [id]` | Test target ID, if not provided will use the test target id from the config | No | |

## list-test-targets

List all test targets
Expand Down
Loading