AgentSkillsCN

gobby

Gobby 技能与 MCP 服务器的统一路由。使用方法:/gobby <技能> [参数] 或 /gobby mcp <服务器> [参数]

SKILL.md
--- frontmatter
name: gobby
description: "Unified router for Gobby skills and MCP servers. Usage: /gobby <skill> [args] or /gobby mcp <server> [args]"
version: "1.0.0"
category: core

/gobby - Unified Skill & MCP Router

Route to Gobby skills or MCP servers via a single entry point.

Usage

text
/gobby                     # Show help
/gobby help                # Show help
/gobby <skill> [args]      # Load and execute a skill
/gobby mcp <server> [args] # Route to an MCP server

Routing Logic

Parse the user's input after /gobby:

1. No args or "help" → Show Help

Display available skills and usage:

text
/gobby - Unified Gobby Router

Usage:
  /gobby <skill> [args]      Execute a Gobby skill
  /gobby mcp <server> [args] Route to MCP server

Quick-create tasks:
  /gobby bug <title>         Create bug task
  /gobby feat <title>        Create feature task
  /gobby chore <title>       Create chore task
  /gobby epic <title>        Create epic
  /gobby nit <title>         Create nitpick task
  /gobby ref <title>         Create refactor task

Core skills:
  /gobby tasks [cmd]         Task management
  /gobby plan                Specification planning
  /gobby expand <task>       Expand task into subtasks
  /gobby sessions            Session management
  /gobby memory [cmd]        Persistent memory
  /gobby workflows           Workflow management
  /gobby agents              Agent spawning
  /gobby worktrees           Git worktree management
  /gobby clones              Git clone management
  /gobby merge               AI merge conflict resolution
  /gobby metrics             Tool usage metrics
  /gobby diagnostic          Run systems check

MCP routing:
  /gobby mcp <server> <query>  Route to MCP server
  /gobby mcp context7 react    Query context7 for React docs

Aliases: /g is shorthand for /gobby

2. First arg is "mcp" → Route to MCP Server

When user provides /gobby mcp <server> [args]:

  1. Extract server name (second arg)
  2. Extract remaining args as query
  3. Use list_mcp_servers() to verify server exists
  4. Use list_tools(server) to find appropriate tool
  5. Call the tool with the query

Example: /gobby mcp context7 react hooks

python
# 1. Verify server exists
list_mcp_servers()
# 2. Get available tools on that server
list_tools(server="context7")
# 3. Call appropriate tool (e.g., resolve-library-id, query-docs)
call_tool(server_name="context7", tool_name="resolve-library-id", arguments={"libraryName": "react", "query": "hooks"})

3. First arg matches a skill → Load Skill

When user provides /gobby <skill> [args]:

  1. Call get_skill(name="<skill>") to load the skill
  2. If skill not found, suggest similar skills or show help
  3. If skill found, follow the skill's instructions with remaining args

Example: /gobby tasks list

python
# Load the skill
get_skill(name="tasks")
# Follow skill instructions with args: "list"

Skill name resolution:

  • Try exact match first: get_skill(name="tasks")
  • If not found with gobby- prefix skills, try with prefix: get_skill(name="gobby-tasks")
  • This allows both /gobby tasks and /gobby gobby-tasks to work

Quick-Create Skills

These skills create tasks directly:

CommandSkillTask Type
/gobby bug <title>bugbug (priority 1)
/gobby feat <title>featfeature
/gobby chore <title>choretask
/gobby epic <title>epicepic
/gobby nit <title>nittask
/gobby ref <title>reftask
/gobby evaleval- (guidance skill)

Core Skills (gobby-* prefix optional)

CommandSkillDescription
/gobby tasksgobby-tasksTask management
/gobby plangobby-planSpecification planning
/gobby expandgobby-expandExpand tasks
/gobby sessionsgobby-sessionsSession management
/gobby memorygobby-memoryPersistent memory
/gobby workflowsgobby-workflowsWorkflow management
/gobby agentsgobby-agentsAgent spawning
/gobby worktreesgobby-worktreesGit worktrees
/gobby clonesgobby-clonesGit clones
/gobby mergegobby-mergeAI merge
/gobby metricsgobby-metricsTool metrics
/gobby diagnosticgobby-diagnosticSystems check
/gobby mcp-guidegobby-mcpMCP tool discovery

Error Handling

Skill Not Found

If get_skill fails or returns no content:

text
Skill '<name>' not found.

Did you mean one of these?
  - tasks (task management)
  - plan (specification planning)
  - memory (persistent memory)

Run /gobby help to see all available skills.

MCP Server Not Found

If server doesn't exist:

text
MCP server '<name>' not found.

Available servers:
  - context7 (documentation lookup)
  - gobby-tasks (task management)
  - gobby-sessions (session management)
  ...

Run list_mcp_servers() for full list.

Implementation Notes

  1. Skill loading: Always use get_skill(name=...) - the name parameter works for both skill names and IDs.

  2. Fallback resolution: If exact name fails, try with gobby- prefix for core skills.

  3. Args passthrough: Pass remaining args to the loaded skill as context.

  4. Session context: Skills may need session_id - provide from your session context.