Skill Management
Organization Skill Management
Administrators can manage organization-level skill modules in the system, which are functional components that agents can invoke. Through organization skill management, administrators can consolidate and reuse the enterprise's core business capabilities.
Viewing 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 configure from the organization skill list.
 - Click the "Configure" button: Click the “✏️” to enter the configuration page, where you can set the skill's execution parameters, trigger conditions, and permission controls.
 - Save configuration: After configuration, click the "Save" button to update the skill configuration.
 

Built-in Skill Functions and Configuration Instructions
Available Built-in Skills
- 
Google Search: Provides real-time, extensive information from the internet.
 - 
Tencent Search: Provides web information retrieval based on Tencent Search services, suitable for precise searches of Chinese content.
 - 
News Query Tool: This skill allows users to query the latest news information. Users can quickly obtain news reports on specific topics or keywords through simple commands, helping them stay informed about current hot events and information trends.
 - 
Webpage Reading: With this skill, users can specify a URL, and the system will automatically read the content of the webpage. This function is very useful for users who need to extract information from web pages, such as obtaining data from news websites, blogs, or any public web pages.
 - 
Text-to-Image: This skill uses the DALL-E interface to generate images. Users can input descriptive text, and the system will generate corresponding images based on these descriptions. This skill is suitable for scenarios requiring visual content generation, such as design, artistic creation, and educational purposes.
 
Custom Skill Functions and Configuration Instructions
Creating Skills Using Python Method
Target Users:
Users with some programming foundation (familiar with Python syntax and function definitions).
Function Description:
Python Function allows users to write Python functions directly 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 Management-AI Studio Custom Skills page, click “Create Skill”;
 - Select the “Python Function” type;
 - Fill in the basic information:
- Skill Name: Skill name;
 - Skill Description: Skill description;
 - 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 judgments;
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 Users:
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: Skill name and description;
 
 - In the Parameter Configuration area, fill in:
- OpenAPI Schema: Enter the OpenAPI description information 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.
 
