README.md
November 14, 2025 · View on GitHub
Derisk_Skills
DeRisk-Skills are community-Powered AIOps Skills for OpenDerisk.
Key features
- A Group of Toolkit to build AIOps skills
- MCP support
- Agent Skills support
Quick Start
Derisk-skills is published as a Python package on PyPI. we highly recommend installing it with uv. If you have not installed uv yet, please follow the instructions here to install it first.
Installation
Once uv is installed, you can install derisk-skills with:
uv tool install derisk-cli
Usage
Run derisk-cli command in the directory you want to work on, derisk-cli --help
Skills(技能)
We use Skills to organize the resources needed by the Agent. The resources included in Skills are as follows:
- MCP Server
- Tools/Scripts
- Knowledge
- Datasets For eval
Content Schema
In OpenDerisk Skills, we use the SPEC specification based on markdown text for skill organization and description, and strictly adhere to the Agent Skills specification published by Anthropics through relevant specifications. Based on domain considerations, we have made certain extensions.
File Structure
skills/
├── logskill/
│ ├── SKILL.md
│ ├── KNOWLEDGE.md
│ ├── tools/
│ │ └── INDEX.md
│ │ ├── __init__.py
│ │ └── logutil.py
│ │ └── analysis.py
│ ├── knowledge/
│ │ └── deepwiki.md
│ │ └── error_code.md
├── README.md