From oh-my-feishu
Manages service registry for traceback monitoring: reads, adds, deletes, enables/disables entries tracking GitHub repos and log URLs in workspace/.claude/services.json. Useful for TracebackMonitor configurations.
npx claudepluginhub yjzhang2003/oh-my-feishu --plugin oh-my-feishuThis skill uses the workspace's default tool permissions.
管理服务注册表,配置需要被 TracebackMonitor 监控的 GitHub 仓库和日志地址。
Sets up service observability: structured JSON logging, Sentry error tracking, business/technical metrics, actionable alerts, and health endpoints. Useful for logging, monitoring, and alerting configurations.
Sets up automated scouts to monitor API changes, changelogs, and documentation updates for breaking changes, new features, deprecations, and rate limits in dependent services every 12 hours.
Creates and configures Sentry projects across staging/production environments via REST API. Extracts DSNs and generates SDK snippets for onboarding services to error monitoring.
Share bugs, ideas, or general feedback.
管理服务注册表,配置需要被 TracebackMonitor 监控的 GitHub 仓库和日志地址。
workspace/.claude/services.json
interface ServiceEntry {
name: string; // 服务唯一标识,如 "my-api"
githubOwner: string; // GitHub 组织/用户,如 "myorg"
githubRepo: string; // GitHub 仓库名,如 "my-api"
tracebackUrl: string; // 日志接口地址,如 "https://logs.example.com/api/tracebacks"
notifyChatId: string; // 飞书群 chat_id(可选)
tracebackUrlType: "json" | "text" | "html";
pollIntervalSec?: number; // 轮询间隔秒数(可选,默认 60)
enabled: boolean; // 是否启用监控
addedAt: string; // ISO 时间戳
addedBy: string; // 添加者标识
lastErrorHash?: string; // 上次错误哈希(系统自动维护)
lastCheckedAt?: string; // 上次检查时间(系统自动维护)
}
cat workspace/.claude/services.json
services.jsonservices 数组追加新条目:{
"name": "<service-name>",
"githubOwner": "<owner>",
"githubRepo": "<repo>",
"tracebackUrl": "<url>",
"notifyChatId": "<chat-id-or-empty>",
"tracebackUrlType": "json",
"enabled": true,
"addedAt": "<current-iso-time>",
"addedBy": "claude"
}
校验规则:
name 唯一,不能与现有服务重复githubOwner/githubRepo 格式正确(不含 /)tracebackUrl 必须以 http:// 或 https:// 开头services.jsonservices 数组中移除指定 name 的条目services.jsonenabled 字段支持修改以下字段:
tracebackUrlgithubOwner / githubReponotifyChatIdpollIntervalSec注意: name 字段不可修改,如需改名请删除后重新添加。
services 是数组,version 为 1)操作完成后汇报: