技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 0 · 85 · 0 current installs · 0 all-time installs
⭐ 0
安装量(当前) 0
🛡 VirusTotal :可疑 · OpenClaw :可疑
Package:alfredming-2026/conflict-coordination
安全扫描(ClawHub)
- VirusTotal :可疑
- OpenClaw :可疑
OpenClaw 评估
The skill's behavior mostly matches its description (detecting crontab/systemd/script/log issues) but it assumes undocumented platform-specific artifacts and sends reports to a hard-coded external messaging target — those mismatches are concerning and should be clarified before install.
目的
The script implements the stated detection capabilities (crontab, systemd, script overlap, logs, docs). However it assumes a specific OpenClaw runtime layout (/home/admin/.openclaw/workspace), sources task-utils.sh from that workspace, and uses an openclaw CLI call; none of those platform-specific requirements are declared in the skill metadata. That mismatch (undocumented required files/paths/CLI) is disproportionate to the SKILL.md/runtime c…
说明范围
SKILL.md instructs running the included detect-conflicts.sh, which reads the user's crontab, queries systemctl --user, enumerates files under /home/admin/.openclaw/workspace, writes a report into that workspace, and then calls 'openclaw message send' to push the report. Those actions go beyond passive checks: they access local configuration and workspace data and actively send a report to a fixed recipient. The SKILL.md does not warn users abo…
安装机制
No install spec (instruction-only plus a script) — nothing is downloaded or written at install time beyond the included files. This is low-risk from an installation/download perspective.
证书
The skill declares no required env vars or config paths but the script depends on several environment-specific artifacts: a fixed WORKSPACE path (/home/admin/.openclaw/workspace), a sourced helper script (task-utils.sh), and an openclaw CLI capable of sending Feishu messages. It also hard-codes a Feishu recipient ('user:g68578ee'). These undeclared dependencies and implicit use of messaging credentials are disproportionate and may leak sensiti…
持久
always:false and no system-wide configuration changes are requested. The script writes reports into the workspace, which is expected for a monitoring tool. However, because the skill can be invoked autonomously (default) and its runtime triggers include cron/inotify, the combination of autonomous invocation plus the hard-coded message send increases potential blast radius if the messaging integration is misconfigured.
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Conflict Coordination」。简介:Mechanism conflict detection and coordination for AI assistant systems. Automat…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/alfredming-2026/conflict-coordination/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: conflict-coordination
version: 1.0.0
description: Mechanism conflict detection and coordination for AI assistant systems. Automatically detects crontab conflicts, systemd service conflicts, script overlaps, and log path inconsistencies. Use for maintaining system harmony and preventing internal conflicts.
---
# Conflict Coordination - 机制冲突协调机制
> **核心原则**: 实时性优先,可靠性优先,人工确认优先
---
## 🚀 快速开始
### Crontab 配置
```bash
# 每周六 22:00 冲突检测
0 22 * * 6 /path/to/detect-conflicts.sh
```
---
## 🔧 核心功能
### 1. 冲突检测
- ✅ crontab 配置冲突(重复任务)
- ✅ systemd 服务冲突(服务状态)
- ✅ 脚本功能重叠
- ✅ 日志路径不一致
- ✅ 文档一致性检查
### 2. 协调方案
- ✅ Git vs 实时同步 → 实时优先,Git 备份
- ✅ Cron vs Systemd → Systemd 优先
- ✅ 多端编辑冲突 → commit 后 pull
### 3. 定期审查
- ✅ 每周自动检测
- ✅ 配置变更时触发
- ✅ 飞书推送报告
---
## 📁 包含文件
```
conflict-coordination/
├── SKILL.md # 主文档
├── README.md # 项目说明
├── scripts/
│ └── detect-conflicts.sh # 冲突检测脚本
└── docs/
├── QUICKSTART.md # 快速上手
└── coordination-guide.md # 协调指南
```
---
## 📊 检测项目
| 检测项 | 冲突类型 | 解决方案 |
|--------|----------|---------|
| crontab 配置 | 重复任务 | 移除冗余 |
| systemd 服务 | 服务过多 | 合并服务 |
| 脚本功能 | 功能重叠 | 统一脚本 |
| 日志路径 | 路径分散 | 统一目录 |
| 文档一致性 | 文档缺失 | 补充文档 |
---
## 💡 使用场景
### 1. 每周冲突检测
```bash
# 手动执行
./detect-conflicts.sh
# 定时执行(每周六 22:00)
0 22 * * 6 ./detect-conflicts.sh
```
### 2. 配置变更时检测
```bash
# 修改 crontab 后触发
crontab -e
./detect-conflicts.sh
```
---
## 📈 协调原则
1. **实时性优先**: inotifywait > cron
2. **可靠性优先**: systemd > nohup
3. **可恢复优先**: trash > rm
4. **人工确认优先**: 高风险操作需批准
---
## 📝 更新日志
### v1.0.0 (2026-03-15)
- ✅ 初始版本发布
- ✅ 冲突检测功能
- ✅ 协调方案文档
- ✅ 定期审查机制
---
**维护者**: 虾球 🦐
**许可**: MIT