Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/johnalbertini14-glitch/openclaw-skills --skill aiops-agent명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Use this skill to create a Polymarket wallet for your agent and trade on prediction markets. Browse markets, place bets, manage positions — all without exposing private keys.
ClawSec suite manager with embedded advisory-feed monitoring, cryptographic signature verification, approval-gated malicious-skill response, and guided setup for additional security skills.
Automated daily security audits for OpenClaw agents with email reporting. Runs deep audits and sends formatted reports.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | aiops-agent |
| description | AI驱动的智能运维系统,实现主动预警、智能诊断和自动化治理 |
| author | James Mei |
| contact | {"email":"meijinmeng@126.com","blog":"https://www.cnblogs.com/Jame-mei"} |
| metadata | {"openclaw":{"emoji":"🤖"}} |
AI-driven intelligent operations system for proactive monitoring, intelligent diagnosis, and automated remediation.
What's New:
# Clone and setup
git clone <repo-url>
cd sre-agent
cp .env.example .env
# Install dependencies
pip install -r requirements.txt
# Start services
make up
# Access
# API: http://localhost:8000
# Docs: http://localhost:8000/docs
pip install fastapi uvicorn
pip install kubernetes
pip install anthropic # or openai
pip install scikit-learn
pip install pandas numpy
pip install pytest pytest-asyncio pytest-cov
pip install prometheus-client
pip install langchain
pip install prophet # for time series prediction
# Run all tests
pytest
# With coverage
pytest --cov=src --cov-report=html
# Test results: 18/18 passing ✅