Skip to content
Open
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
10 changes: 10 additions & 0 deletions src/content/docs/docs/get-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,16 @@ This installs:

</Lang>

### Install Genkit Agent Skills

To provide your AI assistant with structured knowledge about Genkit, you can install the Genkit Agent Skills using the skills CLI:
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The npx command requires Node.js, which is not listed as a prerequisite for Go, Dart, or Python users in this guide. Since this section is visible to all users regardless of their chosen language, please add a brief note clarifying that Node.js is required for this step.

To provide your AI assistant with structured knowledge about Genkit, you can install the Genkit Agent Skills using the skills CLI (requires Node.js):


```bash
npx skills add genkit-ai/skills
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Per the general rules, documentation should specify supported package managers like npm or pnpm. Additionally, please verify the package name; Genkit packages are typically scoped under @genkit-ai. Using the scoped name @genkit-ai/skills ensures the correct CLI is installed and avoids potential conflicts with unrelated packages named skills.

npx @genkit-ai/skills add genkit-ai/skills
# or
pnpm dlx @genkit-ai/skills add genkit-ai/skills
References
  1. In documentation, specify supported package managers like npm or pnpm for installation instructions, rather than using generic phrases like 'your favorite package manager'.

```

For more details on AI-assisted development, see [AI-assisted development](/docs/develop-with-ai).

## Configure your model API key

Genkit can work with multiple model providers. This guide uses the **Gemini API**, which offers a generous free tier and doesn't require a credit card to get started.
Expand Down