Назад към всички

skr

// A skill for using the skr CLI tool.

$ git log --oneline --stat
stars:2
forks:0
updated:March 2, 2026
SKILL.mdreadonly
SKILL.md Frontmatter
nameskr
descriptionA skill for using the skr CLI tool

skr Tool Skill

This skill provides instructions for using the skr CLI tool to manage Agent Skills.

Overview

skr is the CLI tool for the Agent Skills ecosystem. It handles building, installing, publishing, and managing skills.

Capabilities

Build Skills

Build a local skill directory into an artifact.

skr build [path] --tag <tag>

Install Skills

Install a skill into the current workspace.

skr install <ref>

Publish Skills

Build and push a skill to a remote registry in one step.

skr publish [path] --tag <tag>

Batch Publish

Publish multiple skills from a monorepo. This is useful for CI/CD pipelines.

skr batch publish [path] --registry <host> --namespace <ns> [options]

Manage Registry

Login/Logout and manage remote artifacts.

skr registry login ghcr.io -u <user> -p <token>
skr registry logout ghcr.io
skr push <ref>
skr pull <ref>

Manage System Store

Inspect and clean up local artifacts.

skr system list
skr system inspect <ref>
skr system prune

Troubleshooting

  • Context Errors: If skr fails to find context, ensure you are in a directory with a valid .skr.yaml or initialize one.
  • Registry Auth: Ensure you are logged in via skr registry login before pushing/pulling private skills.