Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
105 changes: 105 additions & 0 deletions content/Introduction/getting-started.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
---
title: Getting Started
description: Get started with Agentuity in minutes
---

import { Step, Steps } from 'fumadocs-ui/components/steps';

<Steps>
<Step>
### Create a Free Account
[Create a free Agentuity account](https://app.agentuity.com/sign-up) or [Sign in](https://app.agentuity.com/sign-in) to the cloud portal.

If you already have the Agentuity CLI installed, you can skip this step and signup using the CLI.
</Step>

<Step>
### Install the CLI

The [Agentuity CLI](/CLI/installation) is a cross-platform command-line tool for working with Agentuity Cloud. It supports Windows (using WSL), MacOS, and Linux.

<CLICommand command="curl -fsS https://agentuity.sh | sh" />
</Step>

<Step>
### Sign up for an Account with the CLI

You can sign up for a free account using the CLI or skip this step if you already have an account.

<CLICommand command="agentuity auth signup" />
</Step>

<Step>
### Login to Agentuity

You can skip this step if you used the CLI to sign up for an account, otherwise you must login to your account using the CLI.

<CLICommand command="agentuity login" />
</Step>

<Step>
### Create Your First Project

You can select a template to get started quickly.

<CLICommand command="agentuity create" />
</Step>

<Step>
### Run Your Agent Locally

You can run your agent locally to test it out before you deploy it to the cloud.

<CLICommand command="agentuity dev" />
</Step>

<Step>
### Deploy Your Project to the Cloud

Deploy your agent to the cloud and start using it! 🚀

<CLICommand command="agentuity deploy" />

<Callout type="info">
If you're using an Agentic Code Editor such as [Cursor](https://www.cursor.com), just tell your agent to deploy your project to the cloud such as "Deploy my project to the cloud" and it will do it for you.
</Callout>

</Step>

</Steps>

## Recommended Reading

<Cards>
<Card
title="Guides"
href="/Guides/what-is-an-agent"
description="Advanced guides for using Agentuity."
/>
<Card
title="Cloud Console"
href="/Cloud/"
description="Learn about the Agentuity Console capabilities."
/>
<Card
title="Command Line Interface"
href="/CLI/installation"
description="Reference for using Agentuity from the terminal."
/>
<Card
title="Examples & Tutorials"
href="/Examples/"
description="Explore sample projects, step-by-step tutorials, and implementation guides."
/>
<Card
title="SDKs & Integration"
href="/SDKs"
description="Integrate Agentuity Cloud into your applications using our SDKs and APIs."
/>
<Card
title="Changelogs"
href="/Changelog"
description="Changelogs for the Agentuity SDKs and CLI."
/>
</Cards>

110 changes: 6 additions & 104 deletions content/Introduction/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ description: Agentuity is rebuilding the cloud for AI Agents

Our mission is to provide a fully agentic infrastructure and tools necessary to build Agents that are fully operated by AI.

<Callout type="info">
If you're ready to dive in, skip to [Getting Started](/Introduction/getting-started) to get your first Agent up and running in minutes.
</Callout>


With Agentuity, you or your agents can:

- Deploy agents with a single command to a fully agentic infrastructure
Expand All @@ -36,107 +41,4 @@ We see a near future where Agents are the primary way to build and operate softw
allowFullScreen
></iframe>

## Getting Started

Signup and have your first Agent running in minutes.

import { Step, Steps } from 'fumadocs-ui/components/steps';

<Steps>
<Step>
### Create a Free Account
[Create a free Agentuity account](https://app.agentuity.com/sign-up) or [Sign in](https://app.agentuity.com/sign-in) to the cloud portal.

If you already have the Agentuity CLI installed, you can skip this step and signup using the CLI.
</Step>

<Step>
### Install the CLI

The [Agentuity CLI](/CLI/installation) is a cross-platform command-line tool for working with Agentuity Cloud. It supports Windows (using WSL), MacOS, and Linux.

<CLICommand command="curl -fsS https://agentuity.sh | sh" />
</Step>

<Step>
### Sign up for an Account with the CLI

You can sign up for a free account using the CLI or skip this step if you already have an account.

<CLICommand command="agentuity auth signup" />
</Step>

<Step>
### Login to Agentuity

You can skip this step if you used the CLI to sign up for an account, otherwise you must login to your account using the CLI.

<CLICommand command="agentuity login" />
</Step>

<Step>
### Create Your First Project

You can select a template to get started quickly.

<CLICommand command="agentuity create" />
</Step>

<Step>
### Run Your Agent Locally

You can run your agent locally to test it out before you deploy it to the cloud.

<CLICommand command="agentuity dev" />
</Step>

<Step>
### Deploy Your Project to the Cloud

Deploy your agent to the cloud and start using it! 🚀

<CLICommand command="agentuity deploy" />

<Callout type="info">
If you're using an Agentic Code Editor such as [Cursor](https://www.cursor.com), just tell your agent to deploy your project to the cloud such as "Deploy my project to the cloud" and it will do it for you.
</Callout>

</Step>

</Steps>

## Recommended Reading

<Cards>
<Card
title="Guides"
href="/Guides/what-is-an-agent"
description="Advanced guides for using Agentuity."
/>
<Card
title="Cloud Console"
href="/Cloud/"
description="Learn about the Agentuity Console capabilities."
/>
<Card
title="Command Line Interface"
href="/CLI/installation"
description="Reference for using Agentuity from the terminal."
/>
<Card
title="Examples & Tutorials"
href="/Examples/"
description="Explore sample projects, step-by-step tutorials, and implementation guides."
/>
<Card
title="SDKs & Integration"
href="/SDKs"
description="Integrate Agentuity Cloud into your applications using our SDKs and APIs."
/>
<Card
title="Changelogs"
href="/Changelog"
description="Changelogs for the Agentuity SDKs and CLI."
/>
</Cards>

If you're ready to have your own Agent, [Get Started](/Introduction/getting-started) in just a few minutes.
9 changes: 7 additions & 2 deletions content/Introduction/meta.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
{
"title": "Introduction",
"pages": ["index", "architecture", "templates"]
}
"pages": [
"index",
"getting-started",
"architecture",
"templates"
]
}