-
Notifications
You must be signed in to change notification settings - Fork 91
Add step to install Genkit Agent Skills to get-started.mdx #260
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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: | ||
|
|
||
| ```bash | ||
| npx skills add genkit-ai/skills | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Per the general rules, documentation should specify supported package managers like References
|
||
| ``` | ||
|
|
||
| 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. | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
npxcommand 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.