AgentSkillsCN

nit

快速创建小瑕疵或微调任务。使用方法:/nit <标题> [描述]

SKILL.md
--- frontmatter
name: nit
description: "Quickly create a nitpick/minor cleanup task. Usage: /nit <title> [description]"
category: core

/nit - Create Nitpick Task

Create a minor cleanup or nitpick task with the provided title and optional description. These are small improvements that don't warrant a full feature or bug.

Usage

code
/nit <title>
/nit <title> - <description>

Examples

code
/nit Rename confusing variable
/nit Fix typo in error message - "authentification" should be "authentication"
/nit Remove unused import in utils.py

Action

Create a nitpick task with the following parameters:

  • title: The nitpick title from user input
  • task_type: "chore"
  • labels: ["nitpick"]
  • priority: 4 (backlog - low priority, do when convenient)

Parse the user input:

  • If input contains " - ", split into title and description
  • Otherwise, use entire input as title
python
call_tool(
    server_name="gobby-tasks",
    tool_name="create_task",
    arguments={
        "title": "<parsed title>",
        "description": "<parsed description if any>",
        "task_type": "chore",
        "labels": ["nitpick"],
        "priority": 4,
        "session_id": "<session_id>"  # Required - from session context
    }
)

After creating, confirm with the task reference (e.g., "Created nitpick #125: Rename confusing variable").