Skip to main content
Glama

agy_install_skill_from_github

Install a skill from a GitHub repository by cloning it temporarily and extracting the skill directory. Specify a repository and optional path to add the skill to your environment.

Instructions

Install a skill directly from a GitHub repository.

Clones the repo temporarily and extracts the skill directory.

Return Format

{"success": bool, "repo": str, "skill_name": str}

Examples

agy_install_skill_from_github("sandraschi/python-expert") agy_install_skill_from_github("sandraschi/mcp-central-docs", "skills/fleet-expert")

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ctxNo
repoYes
skill_pathNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A3.8/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations are empty, so the description carries the behavioral burden. It discloses the core mechanism—temporarily cloning the repo and extracting the skill directory—and the return shape. It does not mention overwrite behavior, persistence, or failure modes, but the main behavior is transparent.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The purpose is front-loaded in one clear sentence, followed by the mechanism, return format, and two useful examples. Each block earns its place, and there is no filler or redundant restating of schema fields.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a medium-complexity tool with no annotations, the description covers what the tool does, how it works, what it returns, and how to call it with common argument shapes. Missing details like ctx semantics, overwrite/conflict handling, and explicit sibling selection keep it from being fully complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. The examples provide meaningful semantics for repo and skill_path, showing that skill_path is optional and can point to a subdirectory like 'skills/fleet-expert'. However, ctx is entirely unexplained and there are no explicit parameter descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific action-and-resource pair: install a skill, and further specifies the source as a GitHub repository. The description makes it reasonably distinct from sibling agy_install_skill, though it does not explicitly name that alternative.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Usage context is implied clearly: use this when installing a skill from a GitHub repository. The examples show both a bare repository call and a subdirectory call, but the description does not explicitly say when to prefer this over agy_install_skill or mention prerequisites/exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.