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

# Create your workspace from your website

> Paste your website, let the analysis build your company profile, then confirm the name, description, language and target industries.

export const UiPath = ({children}) => {
  const parts = String(children).split(/\s*(?:→|>)\s*/).filter(Boolean);
  return <span className="pl-path">
      {parts.map((part, index) => <span key={`${index}-${part}`}>
          {index > 0 && <span className="pl-path__sep">→</span>}
          {part}
        </span>)}
    </span>;
};

export const Kbd = ({children}) => <kbd className="pl-kbd">{children}</kbd>;

export const Screenshot = ({id, alt, caption, frame = 'browser', url, marks = [], lang = 'en', workspace = 'northwind-outbound'}) => {
  const src = `/images/screenshots/${lang}/${id}.png`;
  const chrome = url ? `app.pipelime.ai/${workspace}${url}` : 'app.pipelime.ai';
  return <figure className={`pl-shot pl-shot--${frame} not-prose`}>
      <div className="pl-shot__frame">
        {frame !== 'bare' && <div className="pl-shot__bar">
            <span className="pl-shot__dots">
              <span className="pl-shot__dot" />
              <span className="pl-shot__dot" />
              <span className="pl-shot__dot" />
            </span>
            <span className="pl-shot__url">{chrome}</span>
          </div>}
        <div className="pl-shot__media">
          <img src={src} alt={alt} loading="lazy" />
          {marks.map(mark => <span key={mark.n} className="pl-shot__mark" style={{
    left: `${mark.x}%`,
    top: `${mark.y}%`
  }} aria-hidden="true">
              {mark.n}
            </span>)}
        </div>
      </div>
      {caption && <figcaption className="pl-shot__caption">{caption}</figcaption>}
    </figure>;
};

When you finish you have a workspace whose profile (name, description, language and target industries) was written from your own website, and a first AI agent already being built inside it.

<div className="pl-availability">
  <div className="pl-availability__row">
    <div className="pl-availability__label">Where</div>
    <div className="pl-availability__value"><span className="pl-path">Workspaces<span className="pl-path__sep">→</span>New workspace</span></div>
  </div>

  <div className="pl-availability__note">Opens automatically the first time you sign in with no workspace yet.</div>
</div>

## Before you begin

Have the address of your website to hand. You can leave off `https://`; it is added for you when you leave the field or submit it.

You never have to use the analysis. **I'll set it up manually** on the first screen skips straight to the four fields and you type them yourself.

<Note>
  This screen is where a signed-in account with no workspace ends up: open almost
  any other page and the app sends you straight back here. The **Back to workspaces**
  link in the top right only appears once you already have a workspace, so on a
  brand-new account there is nothing to go back to. Finish the wizard. If the
  analysis will not run, set the workspace up manually.
</Note>

## Steps

<Steps>
  <Step title="Paste your website">
    Type or paste your address into the field (1), then choose **Analyze my website** or press <Kbd>Enter</Kbd>. If what you typed is not a usable web address, a warning appears and nothing runs. Check it for a typo, or take the manual route (2).

    <Screenshot id="getting-started/create-your-workspace--website-step" url="onboarding" workspace="" alt="The first onboarding screen: a single website field with the placeholder yourcompany.com, an Analyze my website button, and a text link reading I'll set it up manually" caption="The wizard has no sidebar and no header. It is the whole screen until you finish it or leave." marks={[{ n: 1, x: 50, y: 46 }, { n: 2, x: 50, y: 60 }]} />
  </Step>

  <Step title="Let the analysis read the site">
    The wait screen names each thing it is doing: reading your pages, extracting your brand, identifying your products, detecting your language, mapping your social profiles, finding your location, writing your profile. Those lines advance on a timer, not on real progress. The last one stays put until the result lands, so a line that stops moving does not mean anything is stuck.

    Underneath, the caption names the domain being read. **Change website** stops the run and returns you to the first screen.

    <Screenshot id="getting-started/create-your-workspace--analyzing" url="onboarding" workspace="" alt="The waiting screen, with the line Extracting your brand identity centred, a caption naming the domain being analysed, and a Change website link below it" caption="A representative example: the screen is shown against a simulated analysis that never finishes, so the wait stays on screen." />
  </Step>

  <Step title="Check what came back">
    The card shows your logo, the name, the domain, the language, your location and up to six of your target industries, with the description underneath. The analysis also finds your street address, a contact email, your social profiles and any industries past the sixth. All of that is saved with the workspace without being shown here.

    There are three ways on:

    * **Enter my workspace** creates the workspace exactly as the card describes it.
    * **Customize workspace** opens the same fields for editing first. It opens no field the card was not already built from, though its industries screen lists all of them rather than the first six.
    * **Not your company? Edit website** returns to the first screen with your address still in the field.

    <Screenshot id="getting-started/create-your-workspace--preview" url="onboarding" workspace="" alt="The preview card: logo, company name and domain, a row of chips for language, location and target industries, the drafted description, and the buttons Enter my workspace and Customize workspace" caption="A representative example, built from a simulated analysis. The description is what the AI will write from, so it is worth reading before you go on." />
  </Step>

  <Step title="Adjust the four fields">
    **Customize workspace** walks four short screens in this order: the name, the **Company description**, the language, and the target industries.

    * The name cannot be empty.
    * The description cannot be empty either. The screen says why it matters: "This is what our AI uses to write on-brand. Refine anything that isn't quite right." A counter under the box shows its length against the maximum. Go over it and the box turns red and **Continue** is refused.
    * The language is a grid of chips: the common outreach languages first, the rest behind a chip that opens the full list. The order is fixed when the screen opens, so choosing one does not move it. On this screen <Kbd>Enter</Kbd> anywhere moves you on, whether or not the field has focus.
    * The target industries are free text: type one, press <Kbd>Enter</Kbd>, repeat. This is the only optional screen and the only one with **Skip for now**.

    **Back** steps back one screen; from the first it returns to the preview card, or to the website screen if there was no analysis.

    <Screenshot id="getting-started/create-your-workspace--customize-language" url="onboarding" workspace="" alt="The language screen: a grid of language chips with the detected language highlighted, a dashed chip offering to view the remaining languages, and Back and Continue buttons" caption="A representative example. The chips you see first are the common outreach languages; the rest are one click away." />
  </Step>

  <Step title="Create the workspace">
    **Create workspace** on the last screen, or **Enter my workspace** on the card, does the same thing, because the four screens only edit fields the card was already carrying.

    The logo, the website and social links, the street address and the contact email are saved separately afterwards. Each is saved on its own. If one of them fails it is skipped, and the workspace is still created.

    Because target industries is the last screen, **Skip for now** there creates the workspace rather than moving you on.
  </Step>
</Steps>

## What happens next

<Check>You land on the <UiPath>AI Agents</UiPath> page of the new workspace, not the dashboard, and your first agent is already being built.</Check>

The workspace's part of the URL is built from its name. If you already have another workspace with the same name, its id is added to the end so the two addresses do not collide.

If the first agent cannot be started, the workspace is still created and you still land on the same page.

## Troubleshooting

<AccordionGroup>
  <Accordion title="This is taking longer than expected">
    Some sites take longer to read than others. The panel appears under the ticker, which keeps running, and so does the analysis. It gives you up to three ways out.

    * **Keep waiting** (1) closes the panel and does nothing else. Nothing was interrupted, so there is nothing to restart. If the analysis lands you move on to the card on your own.
    * **Continue manually** (2) abandons the analysis and puts you on the first of the four fields.
    * **Back to workspaces** (3) leaves the wizard. It only appears if you already have a workspace.

    <Screenshot id="getting-started/create-your-workspace--taking-longer" url="onboarding" workspace="" alt="The waiting screen with a panel headed This is taking longer than expected, offering Keep waiting, Continue manually and Back to workspaces" caption="A representative example. On a brand-new account the third button is absent, because there is no workspace to go back to." marks={[{ n: 1, x: 39, y: 78 }, { n: 2, x: 52, y: 78 }, { n: 3, x: 64, y: 78 }]} />
  </Accordion>

  <Accordion title="We couldn't analyze that website. Let's set it up manually.">
    A failed analysis is never a dead end. The warning appears and the wizard puts you on the first of the four fields with the address you typed still held, so nothing you have entered is lost. Fill in the name and description yourself and carry on.

    To try the analysis again instead, choose **Back** from that first field: with no result to return to, it takes you to the website screen.
  </Accordion>

  <Accordion title="No language is highlighted on the language screen">
    This is what you see when you set the workspace up manually. Matching your site to one of the languages in the list is something the analysis does; without it the screen opens with nothing selected, even though the workspace would be created in English. Choose your language explicitly before you go on.
  </Accordion>
</AccordionGroup>

## Related

<CardGroup cols={2}>
  <Card title="Your first AI agent, built for you" icon="rocket" href="/en/getting-started/your-first-ai-agent">
    What the agent that gets built at the end of this is, and what it is waiting on you for.
  </Card>

  <Card title="Switch between workspaces or create a new one" icon="layout-grid" href="/en/workspaces-account/switch-and-create-workspaces">
    Coming back to this wizard once you already have a workspace.
  </Card>

  <Card title="Your first agent: what to do when something looks wrong" icon="circle-question-mark" href="/en/getting-started/troubleshooting-your-first-agent">
    The things that look broken on a brand-new workspace but are not.
  </Card>
</CardGroup>
