Agentics Marketplace Documentation

Everything you need to install, configure, and publish AI agent skills on the Agentics marketplace.

Installation

The Agentics CLI is the primary way to interact with the marketplace. Install skills using your preferred package runner:

# Using npx (recommended) npx agentics@latest install <skill-name> # Using pnpm pnpm dlx agentics@latest install <skill-name> # Using bun bunx agentics@latest install <skill-name>

Quick Start

Get started in under a minute. Here's how to install and use your first skill:

# 1. Install a skill npx agentics@latest install hubspot # 2. Set required environment variables export HUBSPOT_ACCESS_TOKEN=pat-na2-xxxxx # 3. The skill is now available to your AI agents
Tip: Not sure which skill to start with? Browse the marketplace or check out our curated bundles.

Installing Skills

Skills are installed into a skills/ directory in your project. Each skill creates its own folder with documentation and optional scripts.

Install a Specific Version

npx agentics@latest install hubspot@1.0.1

Install Multiple Skills

npx agentics@latest install hubspot lead-generation notion

List Installed Skills

npx agentics@latest list

Configuration

Many skills require environment variables for API keys or service credentials. Each skill's documentation lists its required variables.

Set environment variables in your shell or in a .env file:

# .env file HUBSPOT_ACCESS_TOKEN=pat-na2-xxxxx TAVILY_API_KEY=tvly-xxxxx
Security: Never commit .env files to version control. Add .env to your .gitignore.

Updating & Rollback

Keep your skills up to date or rollback if something breaks:

# Update a specific skill npx agentics@latest update hubspot # Update all installed skills npx agentics@latest update --all # Rollback to a previous version npx agentics@latest install hubspot@1.0.0

Using Bundles

Bundles are pre-configured sets of skills designed for common workflows. Install all skills in a bundle with a single command:

# Install the Sales Engine bundle npx agentics@latest install hubspot lead-generation outbound-prospecting explorium-company-research linkedin-cli

View available bundles on the Bundles page.

Skill Structure

Every skill is a directory containing at minimum a SKILL.md and _meta.json:

my-skill/ ├── SKILL.md # Skill documentation with frontmatter ├── _meta.json # Version and ownership metadata ├── scripts/ # Optional automation scripts │ └── search.mjs └── .clawhub/ # Origin registry tracking └── origin.json

SKILL.md Format

The SKILL.md file uses YAML frontmatter for metadata followed by Markdown documentation:

--- name: my-skill description: A brief description of what your skill does. homepage: https://github.com/you/my-skill metadata: {"emoji":"🚀","requires":{"bins":["curl"],"env":["API_KEY"]}} --- # My Skill Documentation with usage examples, API endpoints, etc.

Metadata Reference

Field Type Description
name string Unique skill identifier (kebab-case)
description string One-line description for search and display
homepage URL Source code or documentation URL
metadata.emoji string Display emoji for the skill
metadata.requires.bins string[] Required CLI tools (e.g., curl, jq)
metadata.requires.env string[] Required environment variables

_meta.json Format

{ "ownerId": "your-unique-owner-id", "slug": "my-skill", "version": "1.0.0", "publishedAt": 1773153550918 }

Publishing a Skill

To publish a skill to the Agentics marketplace:

  1. Create your skill directory with SKILL.md and _meta.json
  2. Test your skill locally to ensure it works correctly
  3. Submit your skill for review via the publish page
  4. Our team reviews for security and quality
  5. Once approved, your skill is live in the marketplace

Versioning

Skills follow semantic versioning (semver). When publishing updates:

  • Patch (1.0.x): Bug fixes and minor improvements
  • Minor (1.x.0): New features, backwards-compatible
  • Major (x.0.0): Breaking changes

Enterprise Features

Enterprise clients get access to additional marketplace features:

  • Priority security vetting for all installed skills
  • Custom skill development by the Agentics implementation team
  • Managed deployment with monitoring and alerting
  • SLA-backed support for production skill issues
  • Private skills registry for proprietary internal skills

Security & Vetting

Every skill in the marketplace undergoes security review:

  • Permission scope analysis—what can the skill access?
  • Dependency audit for known vulnerabilities
  • Code review for suspicious patterns
  • Environment variable handling verification
Enterprise: Use the Skill Vetter tool to run your own security analysis on any skill before installation.

Implementation Support

Agentics provides white-glove implementation support for marketplace skills:

  • Skill configuration—we set up API keys, integrations, and workflows
  • Custom orchestration—combine multiple skills into automated pipelines
  • Monitoring & optimization—ongoing performance tuning and error handling
  • Training—teach your team how to manage and extend your skill stack

Apply for membership to get started with implementation support.