Skills Management
Organization Skill Management
Administrators can manage organization-level skill modules in the system. These skills are functional components that agents can invoke. Through organization skill management, administrators can consolidate and reuse the core business capabilities of the enterprise.
View Skill Cards
- Enter the Organization Skill Management Page: Navigate to "Organization Studio -> Skill Management".
- View Organization-Level Skills: Organization-level skills are divided into Built-in Skills and Custom Skills.

Skill Configuration
- Select the Skill to Configure: Select the item to be configured from the organization skill list.
- Click the "Configure" Button: Click “✏️” to enter the configuration page, where you can set the skill's execution parameters, trigger conditions, and permission controls.
- Save Configuration: After completing the configuration, click the "Save" button to update the skill configuration.

Custom Skill Functionality and Configuration Instructions
Creating Skills Using Python Methods
Target Audience:
Users with some programming background (familiar with Python syntax and function definitions).
Function Description:
Python Function allows users to directly write Python functions on the platform to implement personalized business logic or data processing functions.
For example, text analysis, data format conversion, simple calculations, rule validation, etc., can all be implemented through custom functions.
Creation Steps:
- On the Custom Skills page of Management-AI Studio, click "Create Skill";
- Select the "Python Function" type;
- Fill in the basic information:
- Skill Name: Name of the skill;
- Skill Description: Description of the skill;
- Plugin Description / Plugin Name: Used to define plugin metadata.
- Write Python code in the editor on the right, for example:
You can modify the code based on actual business logic, such as adding data calculations, text extraction, or rule judgment functions;
def python_function(text: str) -> str:
"""This is a default python function that returns the input text"""
return text - Click "Create Skill" to complete the creation.

Creating Skills via API Interface
Target Audience:
Technical personnel familiar with RESTful API, OpenAPI Schema, and basic authentication mechanisms.
Function Description:
API Function Call V2 allows users to extend AI capabilities through external interfaces,
enabling Agents to directly access third-party systems or internal enterprise services, such as CRM systems, ERP interfaces, weather queries, translation services, etc.
Creation Steps:
- On the Skills page, select "API Function Call V2";
- Fill in the basic information:
- Skill Name / Skill Description: Name and description of the skill;
- In the Parameter Configuration area, fill in:
- OpenAPI Schema: Enter the OpenAPI description of the target interface;
- Authentication Method: Select the appropriate authentication type (None / API Key / Internal);
- API Key: If API Key authentication is selected, fill in the key;
- Auth Type: Supports Basic or Bearer authentication methods.
- Save the configuration and create the skill.
