AgentSkillsCN

feat

快速创建功能任务。使用方法:/feat <标题> [描述]

SKILL.md
--- frontmatter
name: feat
description: "Quickly create a feature task. Usage: /feat <title> [description]"
category: core

/feat - Create Feature Task

Create a new feature task with the provided title and optional description.

Usage

code
/feat <title>
/feat <title> - <description>

Examples

code
/feat Add dark mode toggle
/feat User profile avatars - Allow users to upload custom profile pictures with cropping support

Action

Create a feature task with the following parameters:

  • title: The feature title from user input
  • task_type: "feature"
  • priority: 2 (medium - standard priority for new features)

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": "feature",
        "priority": 2,
        "session_id": "<session_id>"  # Required - from session context
    }
)

After creating, confirm with the task reference (e.g., "Created feature #124: Add dark mode toggle").