> For the complete documentation index, see [llms.txt](https://docs.roomiekit.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.roomiekit.io/roomie-kit-cloud-and-hosted/cli-license.md).

# Browser login and manual keys

Roomie Kit Cloud uses browser login for the CLI and agent plugins.

```bash
npx roomie-kit-host login
```

The command opens `roomiekit.io/activate` with a short activation code. Log in with the email tied to your Roomie Kit Cloud subscription, approve the device, and return to the terminal.

After login, confirm the local account:

```bash
npx roomie-kit-host whoami
```

Browser login works for:

* Roomie Kit CLI
* Codex plugin
* Claude Code plugin

## Manual license key fallback

Manual keys are only needed for support, headless environments, or fallback login.

To get a manual key:

1. Open `https://roomiekit.io/login`.
2. Log in with the Stripe Checkout email.
3. Open the account dashboard.
4. Open **Need a manual license key?**
5. Generate or regenerate a manual key.
6. Copy the login command.

```bash
npx roomie-kit-host login --token <license-key>
```

The full manual license key is shown once when generated or regenerated. Roomie Kit stores only a hash and prefix after that.

If you lose the key, regenerate it from the account dashboard and run the login command again.

## Plugin Install

Roomie Kit Cloud also includes Codex and Claude Code plugins. Both use the same browser login as the CLI.

Claude Code:

```txt
/plugin marketplace add davidkc0/roomie-kit-plugins
/plugin install roomie-kit@roomie-kit
/reload-plugins
```

Codex:

```bash
codex plugin marketplace add davidkc0/roomie-kit-plugins
```

Then enable **Roomie Kit** from the Codex Plugins UI.

More detail:

* [Codex plugin](/roomie-kit-cloud-and-hosted/codex-plugin.md)
* [Claude Code plugin](/roomie-kit-cloud-and-hosted/claude-code-plugin.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.roomiekit.io/roomie-kit-cloud-and-hosted/cli-license.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
