README.md

November 14, 2025 · View on GitHub

Derisk_Skills


DeRisk-Skills are community-Powered AIOps Skills for OpenDerisk.

stars forks License: MIT Release Notes Open Issues Open in GitHub Codespaces

English | 简体中文 | 日本語 | 视频教程

Key features

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:

  1. MCP Server
  2. Tools/Scripts
  3. Knowledge
  4. 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

Content Format

Acknowledgement