# Job Management

Submit Training Job

```bash
# Submit agent training
composabl job submit --agent ./agents/my-agent.py

# Submit with JSON config
composabl job submit --agent-json ./configs/agent.json
```

#### List Jobs

```bash
composabl job list

# Output:
Job Id          Type        Start Time           Status
job-abc123      training    2024-01-15 10:30:00  RUNNING
job-def456      evaluation  2024-01-15 09:15:00  COMPLETED
job-ghi789      training    2024-01-15 08:00:00  FAILED
```

#### Stop Job

```bash
composabl job stop job-abc123
```

#### Start Job (Kubernetes)

```bash
# For Kubernetes controller
composabl job start \
  --job-id job-abc123 \
  --k8s-id k8s-abc123 \
  --json-path ./config.json \
  --resume
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.amesa.com/reference/cli-reference/job-management.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
