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
3 changes: 3 additions & 0 deletions cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ $ kortex-cli init --agent claude -v -o json
"name": "workspace1",
"project": "https://github.com/user/repo/",
"agent": "claude",
"model": "model1",
"paths": {
"source": "/home/user/workspace1",
"configuration": "/home/user/workspace1/.kortex"
Expand All @@ -69,6 +70,7 @@ $ kortex-cli init --agent claude --project my-project -v -o json
"name": "workspace1",
"project": "my-project",
"agent": "claude",
"model": "model1",
"paths": {
"source": "/home/user/workspace1",
"configuration": "/home/user/workspace1/.kortex"
Expand All @@ -87,6 +89,7 @@ $ kortex-cli workspace list -o json
"name": "workspace1",
"project": "https://github.com/user/repo/",
"agent": "claude",
"model": "model1",
"paths": {
"source": "/home/user/workspace1",
"configuration": "/home/user/workspace1/.kortex"
Expand Down
4 changes: 4 additions & 0 deletions cli/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ paths:
name: workspace1
project: project1
agent: claude
model: model1
state: stopped
paths:
source: /home/user/workspace1
Expand Down Expand Up @@ -66,6 +67,7 @@ paths:
name: workspace1
project: project1
agent: claude
model: model1
state: running
paths:
source: /home/user/workspace1
Expand Down Expand Up @@ -211,6 +213,8 @@ components:
type: string
agent:
type: string
model:
type: string
state:
$ref: '#/components/schemas/WorkspaceState'
paths:
Expand Down