DeRisk-Skills are community-Powered AIOps Skills for OpenDerisk.
- A Group of Toolkit to build AIOps skills
- MCP support
- Agent Skills support
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.
Once uv is installed, you can install derisk-skills with:
uv tool install derisk-cli
Run derisk-cli command in the directory you want to work on, derisk-cli --help
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
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.
skills/
├── logskill/
│ ├── SKILL.md
│ ├── KNOWLEDGE.md
│ ├── tools/
│ │ └── INDEX.md
│ │ ├── __init__.py
│ │ └── logutil.py
│ │ └── analysis.py
│ ├── knowledge/
│ │ └── deepwiki.md
│ │ └── error_code.md
├── README.md

