Skill Callout
Experimental: This plugin is in early development. Expect breaking changes between releases.
To prominently recommend an agent skill and show how to install it, use the <SkillCallout> component.
The component requires Astro’s site option to be set to your site’s deployed URL.
Import
Section titled “Import”import SkillCallout from 'starlight-to-skills/components/SkillCallout.astro'Recommend a skill prominently using the <SkillCallout> component.
A <SkillCallout> requires a skill prop matching the name of an approved skill.
import SkillCallout from 'starlight-to-skills/components/SkillCallout.astro'
<SkillCallout skill="starlight-to-skills-install" />Add a description
Section titled “Add a description”Add a description to provide additional context or instructions.
import SkillCallout from 'starlight-to-skills/components/SkillCallout.astro'
<SkillCallout skill="starlight-to-skills-install">
We have a skill specifically designed to help you install Starlight to Skills.Install it before asking your agent to add and configure the plugin.
</SkillCallout>Use custom titles
Section titled “Use custom titles”Override the default title by using the title attribue.
import SkillCallout from 'starlight-to-skills/components/SkillCallout.astro'
<SkillCallout skill="starlight-to-skills-install" title="Use your agent to install Starlight to Skills"/>Add follow-up instructions
Section titled “Add follow-up instructions”Add follow-up instructions displayed below the installation command by using the footer slot.
import SkillCallout from 'starlight-to-skills/components/SkillCallout.astro'
<SkillCallout skill="starlight-to-skills-install">
Install the skill specifically designed to help you add Starlight to Skills to your project.
<Fragment slot="footer"> Then ask your agent to add and configure the plugin.</Fragment>
</SkillCallout><SkillCallout> Props
Section titled “<SkillCallout> Props”The <SkillCallout> component accepts the following prop:
Required
Type: string
The name of the skill to recommend.