Best use case
mcstatus is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
生成 Agent 与 Cron 的模型配置状态报告,展示主模型、fallback 链和任务分配情况。
Teams using mcstatus should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/mcstatus/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How mcstatus Compares
| Feature / Agent | mcstatus | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
生成 Agent 与 Cron 的模型配置状态报告,展示主模型、fallback 链和任务分配情况。
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# SKILL.md - Model Configuration Status (mcstatus)
## 触发条件
- `/mcstatus` 命令
- 用户询问模型配备、模型配置、model status、模型列表等
## 功能
实时生成 Agent + Cron 的模型配置报告,展示当前所有 agent 的主模型/fallback链和所有 cron 任务的模型分配。
## 执行步骤
### Step 1: 收集 Agent 模型配置
读取各 agent 的 models.json 获取主模型和 fallback 链:
```bash
for agent in main ops code quant data research content market finance pm law product sales batch; do
config=$(cat ~/.openclaw/agents/$agent/agent/models.json 2>/dev/null)
if [ -n "$config" ]; then
echo "=== $agent ==="
echo "$config" | python3 -c "
import sys,json
d=json.load(sys.stdin)
primary=d.get('primary','inherit')
fallbacks=d.get('fallbacks',d.get('fallback',[]))
print(f' 主模型: {primary}')
print(f' Fallback: {\" → \".join(fallbacks)}')
" 2>/dev/null
fi
done
```
### Step 2: 收集 Cron 任务模型
```bash
# 使用 cron list API 获取所有任务
# 然后提取每个 job 的 model 字段
```
实际使用 `cron(action='list')` 工具获取完整任务列表,提取每个任务的:
- `payload.model`(显式指定的模型)
- `agentId`(所属 agent)
- `name`(任务名)
- `enabled`(是否启用)
- `schedule`(执行时间)
### Step 3: 生成报告
按以下格式生成报告:
```
📊 模型配置总览 | {YYYY-MM-DD HH:MM}
━━━━━━━━━━━━━━━━━━━━
## 🤖 Agent 模型 ({N}个)
| Agent | 主模型 | Fallback |
|-------|--------|----------|
| main | xsc-opus46 | → zai-turbo → kimi → m2.5 → ollama/qwen3.5:9b |
| ... | ... | ... |
## ⏰ Cron 模型分布 ({N}个活跃)
| 模型 | 数量 | 占比 |
|------|------|------|
| zai/glm-5-turbo | X | X% |
| ... | ... | ... |
### 按模型分组
**zai/glm-5-turbo ({N}个)**
- 任务1 (agent, 时间)
- 任务2 (agent, 时间)
**minimax/MiniMax-M2.5 ({N}个)**
- ...
**ollama/qwen3.5:9b ({N}个)**
- ...
### ⚠️ 异常任务
- [任务名]: [原因]
## 📊 成本估算
- 云API任务: X个 ({X}%)
- 本地Ollama任务: X个 ({X}%)
- systemEvent: X个
```
## 报告规则
1. **Agent 配置**:从 `~/.openclaw/agents/<id>/agent/models.json` 实时读取
2. **Cron 配置**:从 `cron(action='list')` 实时获取
3. **模型别名**:使用简短别名显示(见下表)
4. **异常检测**:标记 consecutiveErrors > 0 的任务
5. **禁用任务**:单独列出已禁用的任务
## 模型别名映射
| 全称 | 别名 |
|------|------|
| xingsuancode/claude-opus-4-6 | xsc-opus46 |
| zai/glm-5-turbo | zai-turbo |
| minimax/MiniMax-M2.5 | m2.5 |
| xingjiabiapi/gemini-3-pro-preview | xjb-g3p |
| moonshot/kimi-k2.5 | kimi |
| ollama/qwen3.5:9b | ollama/qwen3.5:9b |
| zai/glm-5 | glm5 |
## 注意事项
- 每次调用都是实时数据,反映最新配置
- 不缓存结果
- 报告控制在 3000 字以内
- 适配 Telegram 格式(纯文本/Markdown)Related Skills
wemp-operator
> 微信公众号全功能运营——草稿/发布/评论/用户/素材/群发/统计/菜单/二维码 API 封装
zsxq-smart-publish
Publish and manage content on 知识星球 (zsxq.com). Supports talk posts, Q&A, long articles, file sharing, digest/bookmark, homework tasks, and tag management. Use when publishing content to 知识星球, creating/editing posts, uploading files/images/audio, managing digests, batch publishing, or formatting content for 知识星球.
zoom-automation
Automate Zoom meeting creation, management, recordings, webinars, and participant tracking via Rube MCP (Composio). Always search tools first for current schemas.
zoho-crm-automation
Automate Zoho CRM tasks via Rube MCP (Composio): create/update records, search contacts, manage leads, and convert leads. Always search tools first for current schemas.
ziliu-publisher
字流(Ziliu) - AI驱动的多平台内容分发工具。用于一次创作、智能适配排版、一键分发到16+平台(公众号/知乎/小红书/B站/抖音/微博/X等)。当用户需要多平台发布、内容排版、格式适配时使用。触发词:字流、ziliu、多平台发布、一键分发、内容分发、排版发布。
zhihu-post-skill
> 知乎文章发布——知乎平台内容创作与发布自动化
zendesk-automation
Automate Zendesk tasks via Rube MCP (Composio): tickets, users, organizations, replies. Always search tools first for current schemas.
youtube-knowledge-extractor
This skill performs deep analysis of YouTube videos through **both information channels** Multimodal YouTube video analysis through both audio (transcript) and visual (frame extraction + image analysis) channels. Especially powerful for HowTo videos, tutorials, demos, and explainer videos where what is SHOWN (screenshots, UI demos, diagrams, code, physical actions) is just as important as what is SAID. Use this skill whenever a user wants to analyze, summarize, or create step-by-step guides from YouTube videos, or when they share a YouTube URL and want to understand what happens in the video. Triggers on requests like "Analyze this YouTube video", "Create a step-by-step guide from this video", "What does this video show?", "Summarize this tutorial", or any YouTube URL shared with analysis intent.
youtube-factory
Generate complete YouTube videos from a single prompt - script, voiceover, stock footage, captions, thumbnail. Self-contained, no external modules. 100% free tools.
youtube-automation
Automate YouTube tasks via Rube MCP (Composio): upload videos, manage playlists, search content, get analytics, and handle comments. Always search tools first for current schemas.
xlsx
Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv, etc) for: (1) Creating new spreadsheets with formulas and formatting, (2) Reading or analyzing data, (3) Modify existing spreadsheets while preserving formulas, (4) Data analysis and visualization in spreadsheets, or (5) Recalculating formulas
xiaomo-assistant-template
小a助手配置模板。基于 xiaomo-starter-kit 改编,提供预配置的 OpenClaw 助手框架文件。当用户需要快速配置新助手、设置助手身份、创建助手配置文件时使用此技能。