> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cekura.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Using Cekura with Claude Code

> Recommended setup: install the Cekura Claude Code plugin, connect MCP, and use Skills plus slash commands.

export const CopyPageButton = () => {
  if (typeof window !== 'undefined') {
    setTimeout(function () {
      if (document.getElementById('ck-tools')) return;
      var anchor = document.getElementById('content-area') || document.querySelector('.mdx-content');
      if (!anchor) return;
      if (!document.getElementById('ck-style')) {
        var s = document.createElement('style');
        s.id = 'ck-style';
        s.textContent = '#ck-tools{position:absolute;top:6px;right:0;z-index:100;font-family:inherit;}' + '.ck-row{display:inline-flex;align-items:stretch;border:1px solid rgba(0,0,0,0.15);border-radius:8px;overflow:hidden;background:#fff;}' + ':root.dark .ck-row{background:rgba(255,255,255,0.06);border-color:rgba(255,255,255,0.12);}' + '.ck-btn{padding:5px 12px;border:none;background:none;cursor:pointer;font-size:13px;font-weight:500;font-family:inherit;color:#374151;}' + ':root.dark .ck-btn{color:#d1d5db;}' + '.ck-btn:hover{background:rgba(0,0,0,0.04);}' + ':root.dark .ck-btn:hover{background:rgba(255,255,255,0.06);}' + '.ck-chevron{padding:5px 8px;border:none;background:none;cursor:pointer;font-size:14px;font-family:inherit;color:#374151;}' + ':root.dark .ck-chevron{color:#d1d5db;}' + '.ck-chevron:hover{background:rgba(0,0,0,0.04);}' + ':root.dark .ck-chevron:hover{background:rgba(255,255,255,0.06);}' + '.ck-divider{width:1px;background:rgba(0,0,0,0.12);flex-shrink:0;}' + ':root.dark .ck-divider{background:rgba(255,255,255,0.12);}' + '.ck-dd{position:absolute;top:calc(100% + 4px);right:0;min-width:180px;background:#fff;border:1px solid rgba(0,0,0,0.12);border-radius:8px;box-shadow:0 4px 12px rgba(0,0,0,0.1);padding:4px;display:none;z-index:200;}' + ':root.dark .ck-dd{background:#1f2937;border-color:rgba(255,255,255,0.1);box-shadow:0 4px 16px rgba(0,0,0,0.35);}' + '.ck-item{display:block;width:100%;padding:7px 12px;border:none;background:none;border-radius:6px;cursor:pointer;font-size:13px;font-family:inherit;text-align:left;color:#374151;}' + ':root.dark .ck-item{color:#d1d5db;}' + '.ck-item:hover{background:rgba(0,0,0,0.05);}' + ':root.dark .ck-item:hover{background:rgba(255,255,255,0.07);}';
        document.head.appendChild(s);
      }
      var wrap = document.createElement('div');
      wrap.id = 'ck-tools';
      var row = document.createElement('div');
      row.className = 'ck-row';
      var mainBtn = document.createElement('button');
      mainBtn.className = 'ck-btn';
      mainBtn.textContent = 'Copy page';
      var divider = document.createElement('span');
      divider.className = 'ck-divider';
      var chevron = document.createElement('button');
      chevron.className = 'ck-chevron';
      chevron.textContent = '▾';
      var dd = document.createElement('div');
      dd.className = 'ck-dd';
      function closeDD() {
        dd.style.display = 'none';
      }
      function openDD() {
        dd.style.display = 'block';
      }
      chevron.onclick = function (e) {
        e.stopPropagation();
        if (dd.style.display === 'block') {
          closeDD();
        } else {
          openDD();
        }
      };
      document.addEventListener('click', function (e) {
        if (!e.target.closest('#ck-tools')) {
          closeDD();
        }
      });
      document.addEventListener('keydown', function (e) {
        if (e.key === 'Escape') {
          closeDD();
        }
      });
      function makeItem(label, fn) {
        var b = document.createElement('button');
        b.className = 'ck-item';
        b.textContent = label;
        b.onclick = function () {
          fn();
          closeDD();
        };
        return b;
      }
      function getMarkdown() {
        var walk = function (node) {
          if (!node) return '';
          if (node.nodeType === 3) return node.textContent || '';
          if (node.nodeType !== 1) return '';
          var tag = node.tagName.toLowerCase();
          var skip = ['script', 'style', 'svg', 'noscript', 'button', 'iframe'];
          if (skip.indexOf(tag) !== -1) return '';
          if (node.id === 'ck-tools') return '';
          var ch = Array.from(node.childNodes).map(walk).join('');
          if (tag === 'h1') return '\n# ' + ch.trim() + '\n\n';
          if (tag === 'h2') return '\n## ' + ch.trim() + '\n\n';
          if (tag === 'h3') return '\n### ' + ch.trim() + '\n\n';
          if (tag === 'p') return '\n' + ch.trim() + '\n\n';
          if (tag === 'pre') return '\n```\n' + node.textContent.trim() + '\n```\n\n';
          if (tag === 'li') return '- ' + ch.trim() + '\n';
          if (tag === 'code') return '`' + ch.trim() + '`';
          return ch;
        };
        var content = document.querySelector('.mdx-content') || document.getElementById('content-area') || document.body;
        return walk(content).replace(/\n\n\n+/g, '\n\n').trim();
      }
      function copyMd() {
        var md = getMarkdown();
        navigator.clipboard.writeText(md).then(function () {
          mainBtn.textContent = 'Copied!';
          setTimeout(function () {
            mainBtn.textContent = 'Copy page';
          }, 2000);
        });
      }
      function viewMd() {
        var md = getMarkdown();
        var safe = md.split('&').join('&amp;').split('<').join('&lt;').split('>').join('&gt;');
        var html = '<!DOCTYPE html><html><head><meta charset="utf-8"><style>body{font-family:monospace;max-width:860px;margin:40px auto;padding:0 24px;line-height:1.7;white-space:pre-wrap;word-wrap:break-word}</style></head><body>' + safe + '</body></html>';
        window.open(URL.createObjectURL(new Blob([html], {
          type: 'text/html'
        })), '_blank');
      }
      function openClaude() {
        var prompt = 'Can you read this Cekura docs page ' + window.location.href + ' so I can ask you questions?';
        window.open('https://claude.ai/new?q=' + encodeURIComponent(prompt), '_blank');
      }
      mainBtn.onclick = copyMd;
      dd.appendChild(makeItem('Copy page', copyMd));
      dd.appendChild(makeItem('View as Markdown', viewMd));
      dd.appendChild(makeItem('Open in Claude', openClaude));
      row.appendChild(mainBtn);
      row.appendChild(divider);
      row.appendChild(chevron);
      wrap.appendChild(row);
      wrap.appendChild(dd);
      anchor.style.position = 'relative';
      anchor.insertBefore(wrap, anchor.firstChild);
    }, 50);
  }
  return null;
};

<CopyPageButton />

Claude Code is the best Cekura assistant experience. The Cekura plugin bundles Skills, slash commands, MCP configuration, update support, and MCP failure help.

## Install the plugin

<Tabs>
  <Tab title="Claude Code CLI">
    Run these in a Claude Code session:

    ```plaintext theme={null}
    /plugin marketplace add cekura-ai/cekura-skills
    /plugin install cekura@cekura-skills
    ```

    Restart the session if prompted, then continue to **Connect MCP** below.
  </Tab>

  <Tab title="Claude Code in VS Code">
    1. Open the Claude Code chat panel.
    2. Open **Manage Plugins > Marketplaces**.
    3. Add `cekura-ai/cekura-skills`.
    4. Open **Plugins**, search `cekura`, and install the plugin.
    5. Restart VS Code if prompted.
  </Tab>
</Tabs>

## Connect MCP

Run this in Claude Code:

```plaintext theme={null}
/setup-mcp
```

Choose OAuth unless you specifically need an API key. OAuth opens a browser, lets you sign into Cekura, and avoids storing keys in config files.

<Tip>
  The plugin already includes the Cekura MCP server URL. `/setup-mcp` verifies whether MCP is working, registers the server if needed, and confirms connectivity.
</Tip>

## Verify setup

Ask Claude Code:

```plaintext theme={null}
Use the Cekura skills and MCP. List my Cekura agents, pick one, and propose 3 evaluators I should create first. Do not create anything until I approve.
```

If setup is working, Claude Code should list real agents from your workspace and use Cekura evaluator-design guidance before proposing next steps.

## Start with onboarding

For a guided first run, use:

```plaintext theme={null}
/cekura-onboarding
```

You can also ask in plain English:

```plaintext theme={null}
I'm new to Cekura. Walk me through setting up my first useful agent evaluation workflow.
```

### First-run flow

A typical first session, in order:

1. `/setup-mcp` — connect MCP
2. `/cekura-onboarding` — guided setup (or say "I'm new to Cekura")
3. Ask "set up my agent" — connect your voice agent
4. `/autogen-eval` — auto-generate test scenarios
5. `/run-evals` — run your first tests
6. Ask "create a metric for X" — design a metric
7. `/cekura-report` — full end-to-end quality report

## Common workflows

| Goal                           | Use                          |
| ------------------------------ | ---------------------------- |
| Configure MCP                  | `/setup-mcp`                 |
| Get started                    | `/cekura-onboarding`         |
| Create a metric                | `/create-metric`             |
| Improve a metric               | `/improve-metric`            |
| Generate evaluators            | `/autogen-eval`              |
| Create one evaluator carefully | `/manual-create-update-eval` |
| Run evaluators                 | `/run-evals`                 |
| Review results                 | `/eval-results`              |
| Produce a quality report       | `/cekura-report`             |
| Update the plugin              | `/upgrade-skills`            |

## Example advanced workflow

Watch an end-to-end walkthrough of evaluating complex voice agents, running multiple tools across coordinating agents, using Claude Code, the Cekura MCP, and Cekura Skills.

<iframe
  style={{
aspectRatio: "16 / 9",
border: "1px solid #ccc",
borderRadius: "8px",
marginBottom: "20px",
}}
  src="https://www.youtube.com/embed/uhqsdYiJFhc"
  width="100%"
  frameborder="0"
  allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
  allowfullscreen
  title="Using Cekura with Claude Code"
/>

## Keep it updated

Run `/upgrade-skills` in any Claude Code session — it refreshes the marketplace, re-pins the plugin to the latest version, and prompts you to run `/reload-plugins` (no restart needed in the common case). To update manually:

```bash theme={null}
claude plugin marketplace update cekura-skills   # refresh catalog from GitHub
claude plugin update cekura@cekura-skills         # move the installed pin to latest
```

Then run `/reload-plugins` to apply it. A plain `git pull` of the marketplace checkout does **not** move the version pin, so it won't upgrade you on its own.

### Auto-update (optional)

To pull new versions automatically at launch (it still prompts `/reload-plugins`), run `/setup-mcp` — which offers to enable it — or add this to `~/.claude/settings.json`:

```json theme={null}
{
  "extraKnownMarketplaces": {
    "cekura-skills": {
      "source": { "source": "github", "repo": "cekura-ai/cekura-skills" },
      "autoUpdate": true
    }
  }
}
```

## Troubleshooting

<AccordionGroup>
  <Accordion title="MCP is not connected">
    Run `/setup-mcp` again and choose OAuth. Then ask Claude Code to list available Cekura tools or list your agents.
  </Accordion>

  <Accordion title="Commands do not appear">
    Restart Claude Code after installing the plugin. If the plugin still does not appear, reinstall from the marketplace and confirm `cekura@cekura-skills` is listed.
  </Accordion>

  <Accordion title="Plugin update looks stale">
    Run `/upgrade-skills`. If it reports stale plugin entries, follow the reinstall steps in the [Skills Catalog](/mcp/skills#reinstall-claude-code-plugin).
  </Accordion>
</AccordionGroup>
