Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Skill

import type { Skill } from "https://googleapis.deno.dev/v1/agentregistry:v1alpha.ts";

Represents the skills of an Agent.

interface Skill {
readonly description?: string;
readonly examples?: string[];
readonly id?: string;
readonly name?: string;
readonly tags?: string[];
}

§Properties

§
readonly description?: string
[src]

Output only. A more detailed description of the skill.

§
readonly examples?: string[]
[src]

Output only. Example prompts or scenarios this skill can handle.

§
readonly id?: string
[src]

Output only. A unique identifier for the agent's skill.

§
readonly name?: string
[src]

Output only. A human-readable name for the agent's skill.

§
readonly tags?: string[]
[src]

Output only. Keywords describing the skill.