# Quick start

## 1. Connect your wallet

LoopDesk uses wallet-only sign-in. From the landing page, click **Connect wallet**, pick Phantom or Solflare, and sign the SIWS message. That's the entire login flow — no email, no password.

## 2. Create a project

From the dashboard, create a project to group related review items (e.g. "Support replies — EU region").

## 3. Submit items via API

Push items from your AI pipeline into LoopDesk's public API:

```bash
curl -X POST https://human-in-the-loop.cc/api/public/items \
  -H "Content-Type: application/json" \
  -H "x-api-key: $LOOPDESK_API_KEY" \
  -d '{
    "project_id": "...",
    "input": { "message": "..." },
    "suggestion": "...",
    "confidence": 0.82,
    "risk_flags": []
  }'
```

See [Public API](/hitl-docs/api/public-api.md) for the full schema.

## 4. Review in the queue

Open `/queue` to approve, edit, or reject items. Every override is captured under **Learnings**.


---

# 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://hitl-01.gitbook.io/hitl-docs/getting-started/quick-start.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.
