用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/diegosouzapw/awesome-omni-skill --skill bug命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | bug |
| description | Quickly create a bug task. |
| category | core |
| triggers | bug, file bug, report bug |
| metadata | {"gobby":{"audience":"all","format_overrides":{"autonomous":"full"}}} |
Create a bug/defect task with the provided title and optional description.
/gobby:bug <title>
/gobby:bug <title> - <description>
/gobby:bug Fix login timeout
/gobby:bug Database connection drops - Users report intermittent connection failures after 5 minutes of inactivity
First time calling a tool this session? Use get_tool_schema(server_name, tool_name) before call_tool to get correct parameters. Schemas are cached per session—no need to refetch.
Create a bug task with the following parameters:
title: The bug title from user inputtask_type: "bug"priority: 1 (high - bugs are important)Parse the user input:
-, --, — (em dash), – (en dash)\s*[-–—]+\s* to split once (first match only)call_tool(
server_name="gobby-tasks",
tool_name="create_task",
arguments={
"title": "<parsed title>",
"description": "<parsed description or null>", # Use null, not empty string
"task_type": "bug",
"priority": 1,
"session_id": "<session_id>" # Required - from session context
}
)
The session_id parameter is required. If session context is unavailable:
get_current_session from gobby-sessions to obtain or refresh the session# Example error handling
session_id = get_session_context()
if not session_id:
return error("Session context unavailable — please sign in or retry")
After creating, confirm with the task reference (e.g., "Created bug #123: Fix login timeout").