Agent skills - CLI reference
CLI reference
Every agentkit-seo command, with its syntax and what it does. The binary name matches the package name, currently version 1.8.0.
Run any command with npx agentkit-seo <command>. To install skills, see the
installation guide; for invocation per environment, see the
usage guide and the providers page.
agentkit-seo version
npx agentkit-seo version Print the installed package version for a quick identity check.
agentkit-seo update
npx agentkit-seo update [--provider <provider>] [--json] [--timeout <ms>] Check the npm registry for the latest published version. Explicit and opt-in: it runs only when you invoke it and never checks for updates on its own. By default it compares the package you are running; with --provider it reads the installed provider manifest and compares the installed skill version against npm latest. When an update is available, reinstall the skills from the latest package.
agentkit-seo doctor
npx agentkit-seo doctor Validate the package layout. In 1.8.0 it enforces the Agent Skills description convention (a non-empty description within 1024 characters, warning over 500, stating when to use the skill) and a license field, and validates the Claude Code marketplace and plugin manifests against package.json, alongside wiki metadata, stale review dates, local wiki links, and packaged-file coverage for LLM-facing files.
agentkit-seo list providers
npx agentkit-seo list providers List the available provider targets you can install to.
agentkit-seo list skills
npx agentkit-seo list skills List the installed runtime skills in the bundle.
agentkit-seo list commands
npx agentkit-seo list commands --provider <provider> Show the commands available for a specific provider.
agentkit-seo template context
npx agentkit-seo template context --output ~/.agentkit-seo/my-context.md Scaffold the guided private context-file template to a path you choose, so an agent can fill it from trusted material.
agentkit-seo install
npx agentkit-seo install --provider <provider> [--target-dir <path>] Install the skills for a provider. Each install writes an agentkit-seo-install.json manifest in the install root with the package version, provider, skills, commands, and target paths.
agentkit-seo uninstall
npx agentkit-seo uninstall --provider <provider> [--dry-run] [--force] Remove an install using the same provider and destination. It reads the agentkit-seo-install.json manifest and removes only the skill folders, command wrappers, and manifest it created, leaving unrelated skills in shared directories untouched. Use --dry-run to preview the removal first.
agentkit-seo export
npx agentkit-seo export --provider <provider|all> Generate provider-specific layouts from the single canonical source. Useful for maintainers regenerating one or all provider adapters.
Claude Code plugin marketplace
In Claude Code, the skills are also available through the plugin marketplace instead of the CLI install:
/plugin marketplace add agentkit-seo/agentkit-seo
/plugin install agentkit-seo@agentkit-seo Source repository: https://github.com/agentkit-seo/agentkit-seo