All Products
Search
Document Center

AgentBay:AgentBay Skill Suite

Last Updated:Jun 02, 2026

The AgentBay Skill Suite provides a skill framework for agents, including a marketplace with 1,200+ verified skills, an enterprise SDK, and a bootstrap skill for autonomous discovery.

What is AgentBay Skill Suite

AgentBay Skill Suite extends agent capabilities through three components:

  • Skill Marketplace: Provides 1,200+ curated, security-verified skills from trusted sources.

  • Enterprise SDK: Integrates the skill framework and Skill Marketplace via SDK, with full lifecycle management for private skills.

  • Bootstrap Skill: Automates skill discovery, installation, and execution through the find-skills capability.

Architecture

Skill Marketplace

The Skill Marketplace provides skills from three sources:

Skill type

Source

Security verification

Visibility

Curated open-source skills

Open-source communities like GitHub

Multiple layers of security verification

All users

Skills provided by AgentBay

Official AgentBay

Official security validation

All users

Enterprise-created skills

Created in the enterprise console

Full lifecycle management

Intra-enterprise-only

Enterprise SDK

The Enterprise SDK manages private skill lifecycles with these core capabilities:

  • Quick integration: Integrate the skill framework and marketplace with a single SDK.

  • Progressive loading: Reduces initial context overhead by loading only metadata at startup.

  • Multi-tenant isolation: Uses namespaces to fully isolate storage, access, and execution.

  • Secure execution: Runs each task in an isolated sandbox.

Bootstrap Skill

The Bootstrap Skill's find-skills capability autonomously discovers, installs, and executes skills without manual intervention.

  • Autonomous discovery, installation, and execution.

  • Reduced manual intervention.

Use cases

  • Code execution: Run Python, JavaScript, R, and Java scripts in a cross-platform execution environment.

  • Browser automation: Automate web navigation, data scraping, and end-to-end testing.

  • GUI automation: Automate desktop and mobile workflows — manage files, windows, and commands on desktop, or run app tests, UI operations, and gesture simulations on mobile.

  • Document processing: Read, write, and convert PDF, Excel, and Word files for automated report generation and data extraction.

  • API integration: Connect third-party services and internal systems for data synchronization, authentication, and process orchestration.

  • AI workflow: Orchestrate multi-step AI workflows that combine GUI automation with intelligent decision-making.

Quick Integration

IDE integration

Install and run skills directly from your IDE. The following example uses Cursor:

Install find-skills

Enter the following command in the Cursor Agent chat box:

# Install the find-skills skill
npx skills add https://github.com/agentbay-ai/agentbay-skills -s find-skills

After installation, verify by asking the Agent: Is find-skills installed successfully?

Execute skills via conversation

Describe your needs in natural language. The Agent calls find-skills to locate and execute relevant skills:

User: "I need a sandbox that can run Python code."
↓
Cursor Agent automatically calls find-skills to search
↓
Agent: "I found 'agentbay-aio-skills', which can run Python/JS/R/Java code in a secure sandbox. Do you want to install it?"
↓
User: "Install it."
↓
Agent automatically installs the skill
↓
User: "Help me run this code: print('Hello from sandbox!')"
↓
Agent uses the newly installed sandbox skill to execute the code
↓
Agent: "Execution result: Hello from sandbox!"

FAQ

Skill Suite vs. Skill Marketplace

The AgentBay Skill Suite is a complete solution that includes three main components: the Skill Marketplace (a skill repository), the Enterprise SDK (an integration tool), and the Bootstrap Skill (for autonomous discovery).

The Skill Marketplace is the Skill Suite component for browsing, searching, and discovering verified skills.

Are AgentBay skills secure?

Yes. All published skills pass multiple security checks. Sensitive operations run in an isolated sandbox. Enterprise skills use namespace isolation for data security.

Install skills only from trusted sources.

Are skills free to use?

Currently, all open-source skills are free. Any changes to our billing policy will be announced in Announcements.

Do too many skills affect performance?

No. Skills load only metadata at startup. Details load on demand, so unused skills consume no resources.

Periodically remove unused skills.