askill
feat

featSafety 85Repository

Quickly create a feature task. Usage: /feat <title> [description]

6 stars
1.2k downloads
Updated 2/13/2026

Package Files

Loading files...
SKILL.md

/feat - Create Feature Task

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

Usage

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

Examples

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

Tool Schema Reminder

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.

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
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").

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

78/100Analyzed 2/16/2026

A well-structured skill for creating feature tasks with clear usage examples and actionable tool calls. Somewhat tied to internal tooling but follows good documentation practices.

85
85
55
75
80

Metadata

Licenseunknown
Version-
Updated2/13/2026
PublisherGobbyAI

Tags

No tags yet.