AgentSkills Runtime is a runtime environment for the Agent Skills standard implemented based on the Cangjie programming language. It is a domestic technology stack implementation of the AgentSkills open standard, providing a secure and efficient AI agent skill execution environment. It aims to enable AgentSkills to run anywhere. Open source project address: https://atomgit.com/uctoo/agentskills-runtime
AgentSkills Runtime is a comprehensive framework for building and executing AI agent skills. It provides a secure, portable, and intelligent runtime environment for AI agent tools that follow the agentskills standard. The framework is built on the Cangjie programming language and incorporates advanced features from the UCToo project architecture.
The framework includes:
- Support for the agentskills standard, including loading and validation of SKILL.md files
- DSL support with
@skill,@tool, and@agentmacros - Clean architecture with clear separation of concerns (domain layer, application layer, infrastructure layer)
- MCP (Model Context Protocol) support for integration with AI agents
- Skill-to-tool adapter for compatibility between skills and tools
- Progressive skill loading from configurable directories
- WASM-based security sandboxing for secure skill execution
- Advanced RAG search with hybrid dense+sparse search capabilities
- Multi-format skill support (WASM components and SKILL.md files)
Build a domestically developed and controllable AI agent skill runtime, promote the application of Agent Skills standards in the AI ecosystem, and construct an open, secure, and efficient AI-native application infrastructure. Aiming to enable AgentSkills to run anywhere.
This implementation follows clean architecture principles with clear separation of concerns:
- Domain Layer: Contains business logic and entities (SkillManifest, SkillParameter, etc.)
- Application Layer: Orchestrates use cases (SkillLoadingService, SkillValidationService, etc.)
- Infrastructure Layer: Handles external concerns (file loading, YAML processing, etc.)
- Presentation Layer: Manages skill and tool interactions
- Loading skills from SKILL.md files according to the agentskills specification
- YAML frontmatter parsing with validation
- Markdown body processing for skill instructions
- External resource access (scripts/, references/, assets/)
- Comprehensive RESTful API for skill management
- Endpoints for skill lifecycle management (add, edit, delete, execute)
- Real-time skill loading and reloading
- Standardized response formats following UCToo API specification
All API endpoints now follow the uctoo v4 standard with /api/v1/uctoo prefix:
- GET /api/v1/uctoo/agent_skills: Retrieve a list of installed skills with pagination support
- GET /api/v1/uctoo/agent_skills/:id: Retrieve details of a specific skill
- POST /api/v1/uctoo/skills/install: Install a skill from a local path or remote URL
- POST /api/v1/uctoo/agent_skills/edit: Update an existing skill
- POST /api/v1/uctoo/agent_skills/del: Uninstall a skill
- POST /api/v1/uctoo/skills/execute: Execute a skill with provided parameters
- POST /api/v1/uctoo/skills/search: Search for skills using semantic search
- GET /api/v1/uctoo/health: Health check endpoint
- GET /api/v1/uctoo/mcp/stream: MCP server with HTTP streaming mode
- GET /api/v1/uctoo/ws/chat: WebSocket chat interface
The API layer now provides real functionality using underlying services:
- POST /api/v1/uctoo/skills/install: Uses SkillPackageManager to perform actual skill installation from local paths or Git repositories
- POST /api/v1/uctoo/agent_skills/edit: Updates skills using the SkillPackageManager with proper reloading
- POST /api/v1/uctoo/agent_skills/del: Removes skills from the system using SkillPackageManager and refreshes the skill registry
@skillmacro for declarative skill definition@toolmacro for tool definition@agentmacro for agent definition
- WASM-based security sandboxing with Component Model support
- Capability-based access control (filesystem, network, etc.)
- Resource quotas and execution limits
- Execution context isolation
- Advanced RAG search with hybrid dense+sparse search (vector embeddings + BM25 with RRF fusion)
- Cross-encoder reranking for improved precision
- Query understanding with intent classification and entity extraction
- Context compression for token-efficient output
- WASM component model execution with Component Model support
- SKILL.md file parsing and execution following agentskills standard
- Format-agnostic skill interface
- Dynamic format detection and validation
- Dynamic tool discovery from skill manifests
- Semantic search integration with MCP protocol
- Pagination support for large skill catalogs
- HTTP streaming mode with embedded web UI
AgentSkills Runtime v2.0 provides a complete set of built-in tools supporting CLI, HTTP, and internal API invocation methods, all integrated with the RBAC permission system.
file_read- Read file (Sensitivity: Low)file_write- Write file (Sensitivity: Medium)file_edit- Edit file (Sensitivity: Medium)file_delete- Delete file (Sensitivity: High, requires confirmation)file_copy- Copy file (Sensitivity: Low)file_move- Move file (Sensitivity: Medium)file_search- Search files (Sensitivity: Low)directory_list- List directory (Sensitivity: Low)directory_create- Create directory (Sensitivity: Medium)
http_request- HTTP request (Sensitivity: Medium)web_fetch- Web page fetch (Sensitivity: Low)firecrawl- Firecrawl crawler (Sensitivity: Medium)browser_tool- Browser tool (Sensitivity: Medium)
skill_initializer- Initialize skill (Sensitivity: Medium)skill_packager- Package skill (Sensitivity: Medium)
template_engine- Template engine (Sensitivity: Low)code_snippet_generator- Code snippet generator (Sensitivity: Low)
cli_execute- Execute CLI command (Sensitivity: High, requires confirmation)
Base Path: /api/v1/tools
Endpoints:
GET /api/v1/tools/list- Get tool listGET /api/v1/tools/:toolName/info- Get tool informationPOST /api/v1/tools/:toolName- Invoke tool
Usage Example:
# Get tool list
curl -X GET https://javatoarktsapi.uctoo.com/api/v1/tools/list \
-H "Authorization: Bearer <token>"
# Invoke file read tool
curl -X POST https://javatoarktsapi.uctoo.com/api/v1/tools/file_read \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json" \
-d '{"path": "./SKILL.md"}'All tool invocations are protected by the RBAC permission system:
- Sensitivity Levels: Low(1), Medium(2), High(3)
- Permission Check: Every invocation validates user permissions
- Audit Logging: All operations are recorded in the database
- Confirmation Required: High-sensitivity operations require confirmation parameter
Detailed documentation: Built-in Tools Documentation
AgentSkills Runtime includes a high-performance HTTP/HTTPS application server providing enterprise-level API service capabilities.
- HTTPS Support: Built-in SSL/TLS encryption with certificate configuration
- High-Performance Routing: Efficient Trie-tree based route matching
- Middleware System: Extensible middleware chain
- WebSocket Support: Real-time bidirectional communication
- Connection Pool: Database connection pool management
- Cache System: Built-in cache manager
- HTTP/HTTPS protocol support
- Configurable thread pool
- Request/response interceptors
- Static file serving
- RESTful routing support
- Path parameter extraction
- Route grouping
- Middleware mounting
DeserializeUserMiddleware- JWT authenticationRequirePermissionMiddleware- Permission checkingCORSMiddleware- CORS supportLoggingMiddleware- Request logging
# .env configuration
PORT=443
HOST=0.0.0.0
SSL_CERT=./ssl/server.crt
SSL_KEY=./ssl/server.key
DB_URL=postgresql://user:pass@host:port/db# Build
cjpm build
# Start HTTPS service
cjpm run --skip-build --name magic.appGET /hello- Health checkGET /api/v1/health- Service statusGET /api/v1/info- Application info/api/v1/uctoo/*- UCToo business API/api/v1/tools/*- Tool management API/api/v1/skills/*- Skill management API
- Concurrent Connections: Supports 1000+ concurrent connections
- Response Time: Average response time < 50ms
- Throughput: > 10000 req/s
- Memory Usage: Base memory < 100MB
- Cross-Language Interoperability: Support for skills written in different programming languages working together in the same runtime environment
- Language Adapters: Standardized skill interface adapters for different programming languages
- Unified API Layer: Abstracts underlying implementation details and provides consistent programming interfaces
- Dependency Management: Intelligent handling of dependency relationships and version conflicts in multi-language projects
- JavaScript/TypeScript SDK: Complete Node.js and browser environment support
- Python SDK: Integration with popular Python AI and data science libraries
- Java SDK: Enterprise application and Android platform support
- Go SDK: High-performance concurrent processing and cloud-native application support
- Rust SDK: System-level performance and memory safety guarantees
- C# SDK: .NET ecosystem and Windows platform integration
- High Performance: High-performance runtime based on Cangjie programming language
- Strong Security: WASM sandbox secure execution environment + multi-layer permission control security architecture
- Standardization: Fully compatible with AgentSkills open standard specifications
- Execution Isolation: Multi-layer security protection mechanism
- Permission Control: Fine-grained permission management and resource access control
- Audit Tracking: Complete operation logs and security audit mechanism
- Fully compatible with AgentSkills open standards
- Support for SKILL.md file format
- Implementation of standard YAML frontmatter specifications
- Simple Integration: Provides clean API interfaces
- Rich Examples: Diverse usage examples and best practices
- Comprehensive Documentation: Complete Chinese and English technical documentation
- Plugin-based architecture design
- Support for custom skill development
- Rich API interfaces and tool sets
If you want to quickly experience AgentSkills Runtime's capabilities, you don't need to download the source code of this project. Simply deploy the UCToo project:
-
Deploy UCToo Project
- Follow the UCToo deployment documentation to deploy the backend and web frontend
- UCToo already includes the AgentSkills Runtime JavaScript SDK
-
Configure LLM API Key
- Find the
.envfile in the agentskills-runtime JavaScript SDK directory within the backend project - Configure the LLM API Key (supports DeepSeek, OpenAI, Huawei Cloud MaaS, etc.)
MODEL_PROVIDER=deepseek MODEL_NAME=deepseek-chat DEEPSEEK_API_KEY=your_api_key_here
- Find the
-
Experience Natural Language Database Queries
- Open the UCToo Web frontend's AI Module -> Chat Page
- Use natural language to chat with AI and perform CRUD operations on the UCToo database
- Example conversations:
- "Query the list of users registered in the past week"
- "Create a new user named 'John Doe'"
- "Calculate the total order amount for this month"
- Zero Configuration: No need to install the Cangjie programming language environment
- Ready to Use: UCToo already integrates the complete runtime environment
- Full Functionality: Supports the built-in uctoo-api-skill for natural language database operations
- Easy to Extend: Can continue developing custom skills based on the UCToo framework
If you need to perform secondary development on the runtime or contribute code, please refer to the following steps:
- Cangjie programming language environment (https://cangjie-lang.cn/)
- Supported operating systems: Windows/Linux/macOS
- Windows System Specific Requirement: OpenSSL library is required for WebSocket communication
- Download URL: https://slproweb.com/products/Win32OpenSSL.html
- During installation, select "Copy OpenSSL DLLs to: The OpenSSL binaries (/bin) directory"
- Ensure the OpenSSL bin directory is added to the system PATH environment variable
# Ensure Cangjie programming language environment is installed
cjpm --version
# Clone the project
git clone https://atomgit.com/uctoo/agentskills-runtime.git
cd agentskills-runtime# Build the project
cjpm build
# Run examples
cjpm run --skip-build --name magic.examples.uctoo_api_skill# Run the API service on default port 8080
cjpm run --skip-build --name magic.app
# Or run on a specific port
cjpm run --skip-build --name magic.app 8081For detailed instructions on running the API service, see API Service Run Guide.
AgentSkills Runtime provides an automated packaging script to build release packages from source.
# 1. Build the project
cjpm build
# 2. Run the packaging script (automatically reads version from cjpm.toml)
cjpm run --name magic.scripts.package_release- Automatic Version Detection: Reads version number from
cjpm.tomlfile - Automatic Platform Detection: Automatically detects current OS and architecture
- Lean Packaging: Automatically excludes examples, tests, and other non-essential modules
- Complete Dependencies: Includes all runtime-required DLL files
After packaging completes, release packages will be generated in the release/ directory:
release/
├── agentskills-runtime-win-x64.tar.gz # Windows x64 release package
├── agentskills-runtime-linux-x64.tar.gz # Linux x64 release package
├── agentskills-runtime-darwin-arm64.tar.gz # macOS ARM64 release package
└── .env.example # Environment variable template
release/
├── bin/ # Executables and all DLLs
│ ├── agentskills-runtime.exe # Main entry point
│ └── *.dll # All dependency libraries
├── magic/ # Runtime modules
├── commonmark4cj/ # Markdown parser
├── yaml4cj/ # YAML parser
├── VERSION # Version information
└── .env.example # Configuration template
# 1. Extract the release package
tar -xzf agentskills-runtime-win-x64.tar.gz
# 2. Enter directory and configure environment
cd release
cp .env.example bin/.env
# Edit .env file to configure API keys
# 3. Run the service
./bin/agentskills-runtime.exe 8080- Update version number in
cjpm.toml - Update
CHANGELOG.mdwith changes - Run
cjpm buildto build the project - Run
cjpm run --name magic.scripts.package_releaseto package - Create release notes in
release/release-notes-<version>.md - Upload release packages to GitHub Releases or AtomGit Releases
After starting the API service, the following endpoints will be available:
- GET //hello** - Health check endpoint returning "Hello World"
- GET /skills - Get list of available skills
- GET /skills/:id - Get details of a specific skill
- POST /skills/add - Add a new skill
- POST /skills/edit - Edit an existing skill
- POST /skills/del - Delete a skill
- POST /skills/execute - Execute a skill
- POST /skills/search - Search for skills
- GET /mcp/stream - MCP server streaming interface
- WS /ws/chat - WebSocket chat interface (supports AI conversation and skill execution)
The WebSocket endpoint /ws/chat provides real-time AI conversation and skill execution capabilities:
ws://127.0.0.1:8080/ws/chat
Send chat message:
{
"type": "chat",
"content": "Hello, please help me analyze this code"
}Execute skill:
{
"type": "execute_skill",
"skill_id": "skill-name",
"parameters": {
"param1": "value1"
},
"timeout": "60s"
}Get skill list:
{
"type": "list_skills"
}Heartbeat:
{
"type": "ping"
}welcome- Welcome message when connection is establishedchat_response- AI conversation responseskill_result- Skill execution resultskills_list- Skill liststatus- Status updateerror- Error messagepong- Heartbeat response
The WebSocket chat feature requires configuring a large model API Key. Configure in the .env file:
# Huawei Cloud MaaS configuration
MAAS_API_KEY=your_api_key_here
MAAS_BASE_URL=https://api.modelarts-maas.com/v2Supported model providers include: maas, openai, deepseek, dashscope, etc.
import { Skill, Tool } from "agentskills-runtime";
@Skill(
name = "hello-world",
description = "A simple skill that greets users",
license = "MIT",
metadata = {
author = "Your Name",
version = "1.0.0",
tags = ["greeting", "example"]
}
)
public class HelloWorldSkill {
@Tool(
name = "greet",
description = "Greet a user by name",
parameters = [
{ name: "name", type: "string", required: true, description: "The name of the person to greet" }
]
)
public String greet(String name) {
return "Hello, " + name + "!";
}
}Create a SKILL.md file:
---
name: example-skill
description: An example skill demonstrating the SKILL.md format
license: MIT
metadata:
author: Your Name
version: "1.0"
---
# Example Skill
This is an example skill that demonstrates the SKILL.md format.
## Tools Provided
### greet
Greet a user by name.
**Parameters:**
- `name` (required, string): The name of the person to greet
**Example:**
```bash
skill run example-skill:greet name=Alice
### Progressive Skill Loading
```cangjie
let skillDir = "path/to/skill/directory"
let loader = ProgressiveSkillLoader(skillBaseDirectory: skillDir)
let skillManager = CompositeSkillToolManager()
let skills = loader.loadSkillsToManager(skillManager)
uctoo-api-skill is a complete backend API integration skill example that demonstrates how to query databases using natural language.
- Natural Language to API Calls: Users can describe query requirements in natural language, and the skill automatically converts them to API calls
- Multi-Database Support: Works with the uctoo backend project to support multiple database types (MySQL, PostgreSQL, MongoDB, etc.)
- Any Database Structure: No need to pre-define table structures; supports querying any database structure
- Universal Query Capability: Supports user management, product management, order management, authentication, and more
User input: "Please query the list of users registered in the last week"
Skill automatically executes:
- Analyzes user intent (query users)
- Determines time range (last week)
- Constructs API request:
GET /api/uctoo/entity/10/0?filter={"created_at":{"gte":"2024-01-01"}}&sort=-created_at - Returns formatted results
API Specification: uctoo follows RESTFul style API. Query interface format is
/api/{database}/{table}/{limit}/{page}, supporting Prisma ORM where condition queries (filter parameter) and orderBy sorting (sort parameter, minus sign indicates descending order). See uctoo API Design Specification for details.
- Uses built-in
http_requesttool to make HTTP requests - Automatic Token management mechanism, no manual authentication handling required
- Supports full CRUD operations
View the complete example: src/examples/uctoo_api_skill
If you don't need to do secondary development on the runtime, you don't need to master or install the Cangjie programming language. Just use the multi-language SDK for quick integration.
1. Install JavaScript SDK
npm install @opencangjie/skills2. Install Runtime Binary Release
# Automatically download and install AgentSkills runtime
npx skills install-runtime
# Or specify version
npx skills install-runtime --runtime-version 0.0.163. Configure AI Model
Edit the .env file in the runtime directory:
- Windows:
%USERPROFILE%\.agentskills-runtime\release\.env - macOS/Linux:
~/.agentskills-runtime/release/.env
# Configure AI model (DeepSeek example)
MODEL_PROVIDER=deepseek
MODEL_NAME=deepseek-chat
DEEPSEEK_API_KEY=your_deepseek_api_key_here4. Start Runtime
npx skills start5. Install and Execute Skills
# Find skills
npx skills find database
# Install skill
npx skills add ./my-database-skill
# Execute skill
npx skills run my-database-skill -p '{"query": "Query user information"}'import { createClient } from '@opencangjie/skills';
const client = createClient({
baseUrl: 'http://127.0.0.1:8080'
});
// List skills
const skills = await client.listSkills();
// Execute skill
const result = await client.executeSkill('database-skill', {
query: 'Query users registered in the last week'
});
console.log(result.output);- Progressive AI Capability: Gradually implement "+AI" capability in existing projects
- Zero Learning Cost: No need to learn Cangjie programming language
- Quick Integration: Integrate AI skills with just a few lines of code
- Cross-Platform Support: Supports Windows, macOS, Linux
View the complete SDK documentation: sdk/javascript/README.md
import { AgentSkillsRuntime } from '@agentskills/runtime';
// Initialize runtime
const runtime = new AgentSkillsRuntime({
baseUrl: 'http://localhost:8080',
apiKey: 'your-api-key'
});
// Load and execute skill
const result = await runtime.executeSkill('example-skill', {
name: 'Alice',
age: 30
});
console.log('Execution result:', result);from agentskills import Runtime
# Initialize runtime
runtime = Runtime(
base_url="http://localhost:8080",
api_key="your-api-key"
)
# Load and execute skill
result = runtime.execute_skill("example-skill", {
"name": "Alice",
"age": 30
})
print(f"Execution result: {result}")import com.agentskills.Runtime;
import com.agentskills.SkillResult;
// Initialize runtime
Runtime runtime = Runtime.builder()
.baseUrl("http://localhost:8080")
.apiKey("your-api-key")
.build();
// Load and execute skill
Map<String, Object> parameters = new HashMap<>();
parameters.put("name", "Alice");
parameters.put("age", 30);
SkillResult result = runtime.executeSkill("example-skill", parameters);
System.out.println("Execution result: " + result.getOutput());# Install dependencies
cjpm install
# Run tests
cjpm test
# Code checking
cjpm checkapps/agentskills-runtime/
├── cjpm.toml # Cangjie package configuration
├── build.cj # Build script
├── README.md # Project documentation
├── README_cn.md # Chinese project documentation
├── LICENSE # License information
├── docs/ # Documentation
│ ├── architecture.md # Architecture overview
│ ├── quickstart.md # Quick start guide
│ ├── builtin-tools.md # Built-in tools documentation
│ └── api-reference.md # API reference
├── src/ # Source code
│ ├── app/ # Application server module
│ │ ├── main.cj # Application main entry
│ │ ├── core/ # Core components
│ │ │ ├── server/ # HTTP/HTTPS server
│ │ │ ├── router/ # Routing system
│ │ │ ├── middleware/ # Middleware
│ │ │ ├── http/ # HTTP request/response
│ │ │ └── database/ # Database connection pool
│ │ ├── routes/ # Route handlers
│ │ │ ├── skill/ # Skill routes
│ │ │ └── tool/ # Tool routes
│ │ ├── controllers/ # Controllers
│ │ ├── services/ # Business services
│ │ ├── middlewares/ # Middleware implementations
│ │ └── registry/ # Auto route registration
│ ├── skill/ # Skill-related functionality
│ │ ├── domain/ # Skill domain models
│ │ ├── infrastructure/ # Skill infrastructure components
│ │ └── application/ # Skill application services
│ ├── tool/ # Tool module
│ │ ├── tool_dispatcher.cj # Tool dispatcher
│ │ ├── permission_checker.cj # Permission checker
│ │ ├── builtin_tools_registry.cj # Built-in tools registry
│ │ └── file_tools.cj # File tools implementation
│ ├── security/ # Security module
│ │ ├── wasm_sandbox/ # WASM sandbox
│ │ └── access_control/ # Access control
│ ├── runtime/ # Runtime core
│ ├── utils/ # Utility functions
│ └── examples/ # Example implementations
├── specs/ # Specification documents
├── skills/ # Example and reference skills
├── sdk/ # Multi-language SDK implementations
│ ├── javascript/ # JavaScript/TypeScript SDK
│ ├── python/ # Python SDK
│ ├── java/ # Java SDK
│ ├── go/ # Go SDK
│ ├── rust/ # Rust SDK
│ └── csharp/ # C# SDK
└── tests/ # Test implementations
This implementation leverages existing libraries from the Cangjie ecosystem:
yaml4cj: For parsing YAML frontmatter from SKILL.md filescommonmark4cj: For processing markdown content in SKILL.md files according to CommonMark specificationstdx: For various utility functions
Each language SDK depends on its respective ecosystem:
- JavaScript: npm package manager, depending on mainstream AI libraries like langchain, openai-api
- Python: pip package manager, depending on numpy, scikit-learn, transformers, etc.
- Java: Maven/Gradle, depending on Spring Boot, Apache HttpComponents
- Go: Go modules, depending on gin, gorilla/websocket, etc.
- Rust: Cargo, depending on tokio, serde, reqwest, etc.
- C#: NuGet, depending on .NET Core related packages
import magic.agentskills.runtime
// Create skill runtime instance
let runtime = SkillRuntime()
// Load skill
let skill = runtime.loadSkill("path/to/skill")
// Execute skill
let result = skill.execute(params)import magic.agentskills.runtime
import magic.agentskills.skill.domain.models.skill_manifest
// Define skill manifest
let manifest = SkillManifest {
name: "example_skill",
version: "1.0.0",
description: "Example skill",
author: "UCToo",
parameters: [],
implementation: "./skill_impl.cj"
}
// Create skill runtime
let runtime = SkillRuntime()
// Load and execute skill
let skill_result = runtime.execute(manifest, {})Welcome to contribute to the project! Please check CONTRIBUTING.md for details.
Please refer to the contribution guidelines in the documentation.
- Code Contribution: Submit Pull Request to improve code
- Documentation Improvement: Help improve technical documentation and usage guides
- Issue Feedback: Report bugs or propose feature suggestions
- Skill Development: Develop new skill examples
- SDK Development: Develop SDKs for new programming languages
- Language Adapters: Develop new language adapters and bindings
- Ecosystem Integration: Integrate mainstream development tools and platforms
# Fork the project
# Create feature branch
git checkout -b feature/your-feature
# Commit changes
git commit -am 'Add new feature'
# Push branch
git push origin feature/your-feature
# Create Pull Request- Core runtime implementation
- Security sandbox mechanism
- Standard compatibility verification
- Performance optimization
- Production environment deployment
- Community ecosystem building
-
Skill Discovery and Loading
- Automatically scan skill files in configuration directories
- Parse YAML frontmatter of SKILL.md files
- Validate skill format and dependency relationships
-
Secure Execution Environment
- WASM sandbox provides isolated execution environment
- Capability-based permission control system
- Resource usage monitoring and limitations
-
Skill Execution and Orchestration
- Dynamic parameter parsing and validation
- Inter-skill dependency relationship management
- Execution result collection and processing
- Skill Manifest Parser: Parse and validate SKILL.md file format
- WASM Runtime: Secure skill execution environment
- Capability Manager: Fine-grained permission control system
- Resource Monitor: Resource usage monitoring and quota management
- Dependency Resolver: Skill dependency relationship resolution
- Execution Orchestrator: Skill execution orchestration engine
This project uses the MIT license. See LICENSE file for details.
- Project Homepage: https://atomgit.com/uctoo/agentskills-runtime
- Issue Feedback: https://atomgit.com/uctoo/agentskills-runtime/issues
- Email Contact: contact@uctoo.com
- WeChat Group: Please get the QR code through the project homepage
Thanks for the support from the following open source projects and communities:
- UCToo
- CangjieMagic
- Various excellent open source libraries and tools
- Developing Powerful Agents with Cangjie Using Only Free AI
- In-depth Analysis of Agent Skill Standards
AgentSkills Runtime - Making AI Development Simpler, Safer, and Faster!