Humanloop
Use Humanloop from your AI agent through ClawLink — browser login, no API key to paste, no config to edit. Connect Humanloop once and the agent can read and act on it. Works in any agent that can run shell commands (Claude Code, Cursor, Codex, Cline, and more).
Setup
Run these once — the agent can run them for you:
npx @useclawlink/cli login # opens browser → approve (mints + stores a key)
npx @useclawlink/cli connect humanloop # opens browser → authorize Humanloop
No API key to create or paste — login stores the credential at ~/.clawlink/credentials.json.
Using Humanloop
npx @useclawlink/cli actions humanloop "<what you want to do>" # find an action
npx @useclawlink/cli describe humanloop <action-id> # see its inputs (before writes)
npx @useclawlink/cli run humanloop <action-id> --input '<json>' # execute
Reads first; confirm with the user before any write.
Available actions
| Action |
Description |
humanloop_create_project |
This tool creates a new project in Humanloop. It is an independent action that generates a project by accepting a project's name (required), an optional description, and an optional organization_id. Upon execution, it returns details of the created project, including the project's id, name, description, created_at timestamp, and organization_id. |
humanloop_delete_project |
This tool allows you to delete a specific project from your Humanloop organization. The deletion is permanent and cannot be undone. All associated data, including sessions, datapoints, and evaluations linked to the project, will be permanently removed. |
humanloop_list_experiments |
This tool retrieves an array of experiments associated with a specific project in Humanloop. It requires a project_id (starting with 'pr_') and returns details including experiment_id, name, description, creation timestamp, status, configuration details, and metrics/results. It is useful for monitoring experiments, analyzing results, tracking model configurations, and comparing experimental setups. |
humanloop_list_sessions |
This tool retrieves a paginated list of sessions for a specific project in Humanloop. It requires a project_id (and optionally, page and size for pagination) and returns session details such as id, reference_id, project information, datapoints_count, first_inputs, last_output, created_at, and updated_at. This enables users to monitor and analyze historical project interactions. |
Notes
- No API key for Humanloop itself — ClawLink holds the OAuth token; the agent only holds your ClawLink credential.
- Not connected yet, or access expired? Re-run
npx @useclawlink/cli connect humanloop.
- The action list above is a snapshot;
npx @useclawlink/cli actions humanloop is always current.
Resources
Powered by ClawLink — connect 90+ apps to any AI agent.
1---2name: humanloop3description: Humanloop integration for AI agents via ClawLink — browser login, no API key setup. Connect humanloop through ClawLink's hosted setup. Use this skill when the user wants to work with Humanloop (AI & ML) — connect Humanloop, read or update Humanloop data, or take actions in Humanloop from chat instead of saying you cannot access it.4---56# Humanloop78Use **Humanloop** from your AI agent through [ClawLink](https://claw-link.dev) — browser login, no API key to paste, no config to edit. Connect Humanloop once and the agent can read and act on it. Works in any agent that can run shell commands (Claude Code, Cursor, Codex, Cline, and more).910## Setup1112Run these once — the agent can run them for you:1314```bash15npx @useclawlink/cli login # opens browser → approve (mints + stores a key)16npx @useclawlink/cli connect humanloop # opens browser → authorize Humanloop17```1819No API key to create or paste — `login` stores the credential at `~/.clawlink/credentials.json`.2021## Using Humanloop2223```bash24npx @useclawlink/cli actions humanloop "<what you want to do>" # find an action25npx @useclawlink/cli describe humanloop <action-id> # see its inputs (before writes)26npx @useclawlink/cli run humanloop <action-id> --input '<json>' # execute27```2829Reads first; confirm with the user before any write.3031## Available actions3233| Action | Description |34|--------|-------------|35| `humanloop_create_project` | This tool creates a new project in Humanloop. It is an independent action that generates a project by accepting a project's name (required), an optional description, and an optional organization_id. Upon execution, it returns details of the created project, including the project's id, name, description, created_at timestamp, and organization_id. |36| `humanloop_delete_project` | This tool allows you to delete a specific project from your Humanloop organization. The deletion is permanent and cannot be undone. All associated data, including sessions, datapoints, and evaluations linked to the project, will be permanently removed. |37| `humanloop_list_experiments` | This tool retrieves an array of experiments associated with a specific project in Humanloop. It requires a project_id (starting with 'pr_') and returns details including experiment_id, name, description, creation timestamp, status, configuration details, and metrics/results. It is useful for monitoring experiments, analyzing results, tracking model configurations, and comparing experimental setups. |38| `humanloop_list_sessions` | This tool retrieves a paginated list of sessions for a specific project in Humanloop. It requires a project_id (and optionally, page and size for pagination) and returns session details such as id, reference_id, project information, datapoints_count, first_inputs, last_output, created_at, and updated_at. This enables users to monitor and analyze historical project interactions. |3940## Notes4142- **No API key for Humanloop itself** — ClawLink holds the OAuth token; the agent only holds your ClawLink credential.43- Not connected yet, or access expired? Re-run `npx @useclawlink/cli connect humanloop`.44- The action list above is a snapshot; `npx @useclawlink/cli actions humanloop` is always current.4546## Resources4748- ClawLink: https://claw-link.dev49- Docs: https://docs.claw-link.dev50- CLI: https://www.npmjs.com/package/@useclawlink/cli5152---5354**Powered by [ClawLink](https://claw-link.dev)** — connect 90+ apps to any AI agent.