askill
epic

epicSafety 95Repository

Quickly create an epic (parent task for large features). Usage: /gobby epic <title> [description]

13 stars
1.2k downloads
Updated 3/29/2026

Package Files

Loading files...
SKILL.md

/gobby epic - Create Epic Task

Create an epic task - a parent container for a large feature or initiative that will be broken down into subtasks.

Usage

/gobby epic <title>
/gobby epic <title> - <description>

Examples

/gobby epic User authentication system
/gobby epic API v2 migration - Migrate all endpoints from REST to GraphQL with backwards compatibility
/gobby epic Performance optimization sprint

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 an epic task with the following parameters:

  • title: The epic title from user input
  • task_type: "epic"
  • priority: 2 (medium - epics are tracked but individual subtasks drive priority)

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

After creating, confirm with the task reference and suggest next steps:

  • "Created epic #127: User authentication system"
  • "Use expand_task to break this down into subtasks."

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

58/100Analyzed 3/30/2026

Decent skill with clear structure and actionable steps, but highly internal to GobbyAI's task management system. The content is well-organized with good examples, but lacks completeness (no error handling) and has limited reusability due to deep coupling with internal APIs. Deep path nesting confirms internal-only intent.

95
85
38
62
78

Metadata

Licenseunknown
Version-
Updated3/29/2026
PublisherGobbyAI

Tags

apigraphql