KosmoKrator

analytics

Braintrust CLI for AI Agents

Use the Braintrust CLI from KosmoKrator to call Braintrust tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.

Braintrust CLI Setup

Braintrust can be configured headlessly with `kosmokrator integrations:configure braintrust`.

Install, configure, and verify
# Install KosmoKrator first if it is not available on PATH.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash

# Configure and verify this integration.
kosmokrator integrations:configure braintrust --set api_key="$BRAINTRUST_API_KEY" --enable --read allow --write ask --json
kosmokrator integrations:doctor braintrust --json
kosmokrator integrations:status --json

Credentials

Authentication type: API key api_key. Configure credentials once, then reuse the same stored profile from scripts, coding CLIs, Lua, and MCP.

KeyEnv varTypeRequiredLabel
api_key BRAINTRUST_API_KEY Secret secret yes API Key
base_url BRAINTRUST_BASE_URL URL url no Data Plane URL

Command Patterns

The generic command is stable across every integration. The provider shortcut is shorter for humans.

Generic CLI call
kosmo integrations:call braintrust.braintrust_list_projects '{}' --json
Provider shortcut
kosmo integrations:braintrust braintrust_list_projects '{}' --json

Discovery

These commands return structured output for coding agents that need to inspect capabilities before choosing a function.

Discovery commands
kosmo integrations:docs braintrust --json
kosmo integrations:docs braintrust.braintrust_list_projects --json
kosmo integrations:schema braintrust.braintrust_list_projects --json
kosmo integrations:search "Braintrust" --json
kosmo integrations:list --json

Automation Contexts

The same configured command surface works in these environments. The command does not change unless the host wrapper, credentials, or permissions change.

CLI Functions

Every function below can be called headlessly. Commands are highlighted, copyable, and scroll horizontally when payloads are long.

braintrust.braintrust_list_projects

List Braintrust projects.

Read read
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_list_projects '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_list_projects '{}' --json

braintrust.braintrust_create_project

Create a Braintrust project.

Write write
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_create_project '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_create_project '{}' --json

braintrust.braintrust_get_project

Retrieve a Braintrust project by ID.

Read read
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_get_project '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_get_project '{}' --json

braintrust.braintrust_update_project

Patch a Braintrust project.

Write write
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_update_project '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_update_project '{}' --json

braintrust.braintrust_delete_project

Delete a Braintrust project.

Write write
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_delete_project '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_delete_project '{}' --json

braintrust.braintrust_insert_logs

Insert project log events.

Write write
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_insert_logs '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_insert_logs '{}' --json

braintrust.braintrust_fetch_logs

Fetch project log events.

Read read
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_fetch_logs '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_fetch_logs '{}' --json

braintrust.braintrust_feedback_logs

Record feedback on project logs.

Write write
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_feedback_logs '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_feedback_logs '{}' --json

braintrust.braintrust_list_experiments

List Braintrust experiments.

Read read
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_list_experiments '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_list_experiments '{}' --json

braintrust.braintrust_create_experiment

Create a Braintrust experiment.

Write write
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_create_experiment '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_create_experiment '{}' --json

braintrust.braintrust_get_experiment

Retrieve a Braintrust experiment.

Read read
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_get_experiment '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_get_experiment '{}' --json

braintrust.braintrust_update_experiment

Patch a Braintrust experiment.

Write write
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_update_experiment '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_update_experiment '{}' --json

braintrust.braintrust_delete_experiment

Delete a Braintrust experiment.

Write write
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_delete_experiment '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_delete_experiment '{}' --json

braintrust.braintrust_insert_experiment

Insert events into an experiment.

Write write
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_insert_experiment '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_insert_experiment '{}' --json

braintrust.braintrust_fetch_experiment

Fetch experiment events.

Read read
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_fetch_experiment '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_fetch_experiment '{}' --json

braintrust.braintrust_feedback_experiment

Record feedback on experiment rows.

Write write
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_feedback_experiment '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_feedback_experiment '{}' --json

braintrust.braintrust_summarize_experiment

Summarize experiment metrics.

Read read
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_summarize_experiment '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_summarize_experiment '{}' --json

braintrust.braintrust_list_datasets

List Braintrust datasets.

Read read
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_list_datasets '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_list_datasets '{}' --json

braintrust.braintrust_create_dataset

Create a Braintrust dataset.

Write write
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_create_dataset '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_create_dataset '{}' --json

braintrust.braintrust_get_dataset

Retrieve a Braintrust dataset.

Read read
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_get_dataset '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_get_dataset '{}' --json

braintrust.braintrust_update_dataset

Patch a Braintrust dataset.

Write write
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_update_dataset '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_update_dataset '{}' --json

braintrust.braintrust_delete_dataset

Delete a Braintrust dataset.

Write write
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_delete_dataset '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_delete_dataset '{}' --json

braintrust.braintrust_insert_dataset

Insert records into a dataset.

Write write
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_insert_dataset '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_insert_dataset '{}' --json

braintrust.braintrust_fetch_dataset

Fetch dataset records.

Read read
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_fetch_dataset '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_fetch_dataset '{}' --json

braintrust.braintrust_feedback_dataset

Record feedback on dataset rows.

Write write
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_feedback_dataset '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_feedback_dataset '{}' --json

braintrust.braintrust_summarize_dataset

Summarize dataset contents.

Read read
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_summarize_dataset '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_summarize_dataset '{}' --json

braintrust.braintrust_list_prompts

List Braintrust prompts.

Read read
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_list_prompts '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_list_prompts '{}' --json

braintrust.braintrust_create_prompt

Create a Braintrust prompt.

Write write
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_create_prompt '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_create_prompt '{}' --json

braintrust.braintrust_upsert_prompt

Create or update a Braintrust prompt.

Write write
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_upsert_prompt '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_upsert_prompt '{}' --json

braintrust.braintrust_get_prompt

Retrieve a Braintrust prompt.

Read read
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_get_prompt '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_get_prompt '{}' --json

braintrust.braintrust_update_prompt

Patch a Braintrust prompt.

Write write
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_update_prompt '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_update_prompt '{}' --json

braintrust.braintrust_delete_prompt

Delete a Braintrust prompt.

Write write
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_delete_prompt '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_delete_prompt '{}' --json

braintrust.braintrust_list_functions

List Braintrust functions, tools, and scorers.

Read read
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_list_functions '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_list_functions '{}' --json

braintrust.braintrust_create_function

Create a Braintrust function.

Write write
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_create_function '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_create_function '{}' --json

braintrust.braintrust_upsert_function

Create or update a Braintrust function.

Write write
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_upsert_function '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_upsert_function '{}' --json

braintrust.braintrust_get_function

Retrieve a Braintrust function.

Read read
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_get_function '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_get_function '{}' --json

braintrust.braintrust_update_function

Patch a Braintrust function.

Write write
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_update_function '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_update_function '{}' --json

braintrust.braintrust_delete_function

Delete a Braintrust function.

Write write
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_delete_function '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_delete_function '{}' --json

braintrust.braintrust_invoke_function

Invoke a Braintrust prompt, tool, or scorer.

Write write
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_invoke_function '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_invoke_function '{}' --json

braintrust.braintrust_query_btql

Query logs, experiments, and datasets with Braintrust SQL.

Read read
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_query_btql '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_query_btql '{}' --json

braintrust.braintrust_launch_eval

Launch a Braintrust eval run.

Write write
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_launch_eval '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_launch_eval '{}' --json

braintrust.braintrust_proxy_chat_completions

Call Braintrust AI proxy chat completions.

Write write
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_proxy_chat_completions '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_proxy_chat_completions '{}' --json

braintrust.braintrust_proxy_completions

Call Braintrust AI proxy completions.

Write write
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_proxy_completions '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_proxy_completions '{}' --json

braintrust.braintrust_proxy_embeddings

Call Braintrust AI proxy embeddings.

Write write
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_proxy_embeddings '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_proxy_embeddings '{}' --json

braintrust.braintrust_proxy_auto

Call the Braintrust proxy auto endpoint.

Write write
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_proxy_auto '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_proxy_auto '{}' --json

braintrust.braintrust_list_project_scores

List project score definitions.

Read read
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_list_project_scores '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_list_project_scores '{}' --json

braintrust.braintrust_list_project_tags

List project tags.

Read read
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_list_project_tags '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_list_project_tags '{}' --json

braintrust.braintrust_list_dataset_snapshots

List dataset snapshots.

Read read
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_list_dataset_snapshots '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_list_dataset_snapshots '{}' --json

braintrust.braintrust_list_groups

List Braintrust groups.

Read read
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_list_groups '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_list_groups '{}' --json

braintrust.braintrust_list_roles

List Braintrust roles.

Read read
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_list_roles '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_list_roles '{}' --json

braintrust.braintrust_list_users

List Braintrust users.

Read read
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_list_users '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_list_users '{}' --json

braintrust.braintrust_list_organizations

List Braintrust organizations.

Read read
Parameters
none
Generic call
kosmo integrations:call braintrust.braintrust_list_organizations '{}' --json
Shortcut
kosmo integrations:braintrust braintrust_list_organizations '{}' --json

Function Schemas

Use these parameter tables when building CLI payloads without calling integrations:schema first.

braintrust.braintrust_list_projects 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_list_projects --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_create_project 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_create_project --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_get_project 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_get_project --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_update_project 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_update_project --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_delete_project 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_delete_project --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_insert_logs 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_insert_logs --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_fetch_logs 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_fetch_logs --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_feedback_logs 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_feedback_logs --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_list_experiments 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_list_experiments --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_create_experiment 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_create_experiment --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_get_experiment 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_get_experiment --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_update_experiment 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_update_experiment --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_delete_experiment 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_delete_experiment --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_insert_experiment 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_insert_experiment --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_fetch_experiment 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_fetch_experiment --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_feedback_experiment 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_feedback_experiment --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_summarize_experiment 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_summarize_experiment --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_list_datasets 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_list_datasets --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_create_dataset 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_create_dataset --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_get_dataset 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_get_dataset --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_update_dataset 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_update_dataset --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_delete_dataset 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_delete_dataset --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_insert_dataset 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_insert_dataset --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_fetch_dataset 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_fetch_dataset --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_feedback_dataset 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_feedback_dataset --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_summarize_dataset 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_summarize_dataset --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_list_prompts 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_list_prompts --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_create_prompt 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_create_prompt --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_upsert_prompt 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_upsert_prompt --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_get_prompt 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_get_prompt --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_update_prompt 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_update_prompt --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_delete_prompt 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_delete_prompt --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_list_functions 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_list_functions --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_create_function 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_create_function --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_upsert_function 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_upsert_function --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_get_function 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_get_function --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_update_function 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_update_function --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_delete_function 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_delete_function --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_invoke_function 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_invoke_function --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_query_btql 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_query_btql --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_launch_eval 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_launch_eval --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_proxy_chat_completions 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_proxy_chat_completions --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_proxy_completions 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_proxy_completions --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_proxy_embeddings 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_proxy_embeddings --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_proxy_auto 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_proxy_auto --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_list_project_scores 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_list_project_scores --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_list_project_tags 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_list_project_tags --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_list_dataset_snapshots 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_list_dataset_snapshots --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_list_groups 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_list_groups --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_list_roles 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_list_roles --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_list_users 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_list_users --json
ParameterTypeRequiredDescription
No parameters.
braintrust.braintrust_list_organizations 0 parameters
Schema command
kosmo integrations:schema braintrust.braintrust_list_organizations --json
ParameterTypeRequiredDescription
No parameters.

Permissions

Headless calls still follow the integration read/write permission policy. Configure read/write defaults with integrations:configure. Add --force only for trusted automation that should bypass that policy.