Token导航 LogoToken导航TokenDH.com
效率需要联网clawhub未标认证来源可访问clear审计通过

meta-coordinator元协调员

Agent Skill

meta-coordinator 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 OpenClaw 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,472

周安装

94

GitHub Stars

公开资料未说明

下载量

776
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:meta-coordinator(元协调员)
来源仓库:https://github.com/yonghyeokrhee/meta-coordinator
安装命令:
openclaw skills install meta-coordinator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install meta-coordinator

简介

轻量级客户支持与工程问题自动分类与路由系统。meta-coordinator 属于效率类 Skill,可作为该场景下的辅助能力补充。

  • 采用骨架优先接收机制保守分配严重性与类别标签。
  • 提供所有权推荐与无响应后续提醒辅助人工介入时机把控。
  • 适用于维护开源项目 Issue 队列有序流转场景。
  • 原始配置允许自定义规则引擎以适应不同团队工作流程。

SKILL.md

name
meta-coordinator
description
Lightweight CS and engineering issue triage with skeleton-first intake, conservative severity/category routing, ownership recommendation, no-response follow-up handling, and durable case tracking through either an issue tracker such as Linear or plain log files. Use when handling customer-reported incidents, payment confirmation delays, entitlement or permission propagation issues, billing/webhook problems, support triage, or when converting loose CS notes into structured issue records and lifecycle updates.

Meta Coordinator

Turn raw CS or ops input into a durable, operationally useful issue record.

Core workflow

  1. Build the issue skeleton first.
  2. Summarize and classify the issue.
  3. Estimate severity conservatively.
  4. Infer the most likely module.
  5. Recommend a primary owner and backup owner.
  6. Move the issue through NEW -> TRIAGED -> ASSIGNED -> RESOLVED.
  7. If the issue is quiet, generate explicit no-response follow-up guidance.
  8. Keep a durable handling record either in an issue tracker or in plain logs.

Skeleton-first rule

Always start with this structure:

Issue Skeleton

  • Customer Issue:
  • Reported Symptom:
  • Product/Plan:
  • Time First Noticed:
  • Scope:
  • Payment/Order Reference:
  • Customer Identifier:
  • Current Impact:
  • Known Signals:
  • Missing Critical Info:

Rules:

  • Fill from explicit facts when possible.
  • If unknown, write unknown.
  • Normalize vague customer wording into short operational phrases.
  • Keep it concise.

Triage rules

Use only these states:

  • NEW
  • TRIAGED
  • ASSIGNED
  • RESOLVED

Use only these severities:

  • low
  • medium
  • high

Use only these categories:

  • bug
  • incident
  • support request
  • data issue
  • integration issue
  • permission issue
  • performance issue
  • unknown

Guidance:

  • Stay conservative when evidence is weak.
  • Do not invent root cause.
  • Do not present guesses as facts.
  • Keep the issue at TRIAGED when ownership confidence is still low.
  • Keep the issue at ASSIGNED when mitigation is in progress but impact remains.
  • Move to RESOLVED only after explicit recovery confirmation.

Facts / Guesses / Missing Info

Always separate:

  • Facts
  • Guesses
  • Missing Info

This separation is mandatory.

Module and ownership guidance

Use operationally useful module names, for example:

  • billing-webhook
  • entitlement-sync
  • workspace-membership-sync
  • auth-service
  • worker-queue
  • api-gateway
  • customer-account-service

Recommend:

  • 1 primary owner
  • 1 backup owner

Use team-style owners when needed, such as:

  • Billing Engineering
  • Platform Backend Team
  • Account Platform Team
  • CS Operations
  • Integrations Team

No-response handling

When an issue is active and updates stop, do not silently stall.

Behavior:

  • Short gap on active high-severity issue: request status check from primary owner.
  • Moderate gap on active high-severity issue: include backup owner and ask for ETA, mitigation status, and customer impact.
  • Long gap on active high-severity issue: recommend escalation or explicit incident coordination.
  • Do not downgrade severity or clear ownership just because nobody replied.
  • Do not mark RESOLVED without explicit confirmation.

For no-response follow-up, include:

Follow-up Check

  • Current State:
  • Update Gap:
  • Action:
  • Risk:
  • Suggested Follow-up:

Durable record options

Choose one of these patterns based on the environment.

Option A: issue tracker such as Linear

Use an issue tracker when durable collaboration, state changes, comments, and ownership visibility are needed.

Recommended tracker mapping:

  • TRIAGED -> create or update issue in an intake state such as Backlog
  • ASSIGNED -> move to an active state such as In Progress and add a routing/update comment
  • no-response -> add follow-up comment
  • RESOLVED -> move to a completed state such as Done and add resolution comment

Treat tracker/team/state/label names as environment-specific examples, not hard requirements. Do not invent labels that do not exist in the target workspace.

Option B: log-only management

Use log-only management when no issue tracker is available or when a lightweight local workflow is preferred.

Recommended log pattern:

  • store one case record per line in cases.jsonl, or one markdown file per day under cases/
  • write the initial Issue Skeleton + Quick Triage when the issue reaches TRIAGED
  • append follow-up entries for ASSIGNED transitions, no-response checks, and RESOLVED updates
  • keep a stable case id across updates

Suggested JSONL fields:

  • case_id
  • created_at
  • updated_at
  • source
  • category
  • severity
  • state
  • title
  • skeleton
  • likely_module
  • primary_owner
  • backup_owner
  • next_actions
  • notes

Output format

Use this shape unless the user requests another format:

Issue Skeleton

  • Customer Issue:
  • Reported Symptom:
  • Product/Plan:
  • Time First Noticed:
  • Scope:
  • Payment/Order Reference:
  • Customer Identifier:
  • Current Impact:
  • Known Signals:
  • Missing Critical Info:

Quick Triage

  • Summary:
  • Category:
  • Severity:
  • State:

Facts / Guesses / Missing Info

  • Facts:
  • Guesses:
  • Missing Info:

Likely Module

  • Primary:
  • Secondary:
  • Confidence:

Owner Suggestion

  • Primary Owner:
  • Backup Owner:
  • Why:

Next Actions

1. 2. 3.

Status Move

  • From:
  • To:
  • Reason:

Usage examples

Example 1 — billing incident

Input:

Customer says payment confirmation is delayed and webhook processing seems broken since this morning.

Expected direction:

  • category incident
  • severity high
  • likely module billing-webhook
  • state NEW -> TRIAGED, then ASSIGNED once broader evidence arrives

Example 2 — permission issue

Input:

Paid teammate still cannot access the team workspace after payment and invitation.

Expected direction:

  • category permission issue
  • likely module workspace-membership-sync
  • state TRIAGED first, then ASSIGNED if payment is confirmed and access propagation failure is evidenced

References

Read these when needed:

  • references/demo-script-ko.md for a Korean demo script
  • references/tracker-workflow.md for issue-tracker mapping examples
  • references/log-only-workflow.md for log-only management guidance

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

77.81%
按下载量换算604

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills