> ## Documentation Index
> Fetch the complete documentation index at: https://browseruse-0aece648-agency-browser-quickstart-v4-sdk.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Skills

> Retired. Existing skills still run; new skills are no longer created.

<Warning>
  Skills are retired. You can no longer create or refine a skill: `skills.create`,
  `skills.refine`, and manual recording return `410 Gone`. Existing skills can still
  be viewed and run, and Marketplace skills can still be cloned and executed.

  For new work, use [rerunnable scripts](/cloud/agent/scripts). A Cloud agent learns the
  task once and saves the working code in its workspace, so every later run reuses it.
</Warning>

## Run an existing skill

<CodeGroup>
  ```python Python theme={null}
  result = await client.skills.execute(
      skill_id,
      parameters={"X": 10},
  )
  print(result)
  ```

  ```typescript TypeScript theme={null}
  const result = await client.skills.execute(skillId, {
    parameters: { X: 10 },
  });
  console.log(result);
  ```
</CodeGroup>

## Marketplace

Browse, clone, and run community-created skills. Creating new skills is no longer available.

<CodeGroup>
  ```python Python theme={null}
  skills = await client.marketplace.list()
  my_skill = await client.marketplace.clone(skill_id)
  result = await client.marketplace.execute(skill_id, parameters={...})
  ```

  ```typescript TypeScript theme={null}
  const skills = await client.marketplace.list();
  const mySkill = await client.marketplace.clone(skillId);
  const result = await client.marketplace.execute(skillId, { parameters: { ... } });
  ```
</CodeGroup>

See [Pricing](https://browser-use.com/pricing) for skill costs.
