Back to skills
SkillHub ClubRun DevOpsDevOpsBackendFull Stack

Delegating to Jira Agent

This skill delegates Jira-related queries to a specialized sub-agent to prevent context pollution in the main Claude session. It provides clear trigger patterns, delegation templates, and example flows for handling Jira operations without loading detailed API knowledge into the primary context.

Packaged view

This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.

Stars
33
Hot score
89
Updated
March 20, 2026
Overall rating
A7.7
Composite score
5.3
Best-practice grade
C61.2

Install command

npx @skill-hub/cli install ryancnelson-deli-gator-delegating-to-issuetracker-agent
jiraagent-delegationcontext-managementworkflow-automation

Repository

ryancnelson/deli-gator

Skill path: examples/1-issue-tracker/skills/delegating-to-issuetracker-agent

This skill delegates Jira-related queries to a specialized sub-agent to prevent context pollution in the main Claude session. It provides clear trigger patterns, delegation templates, and example flows for handling Jira operations without loading detailed API knowledge into the primary context.

Open repository

Best for

Primary workflow: Run DevOps.

Technical facets: DevOps, Backend, Full Stack.

Target audience: Development teams using Jira who want to integrate issue tracking queries into Claude workflows without polluting main session context.

License: Unknown.

Original source

Catalog source: SkillHub Club.

Repository owner: ryancnelson.

This is still a mirrored public skill entry. Review the repository before installing into production workflows.

What it helps with

  • Install Delegating to Jira Agent into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
  • Review https://github.com/ryancnelson/deli-gator before adding Delegating to Jira Agent to shared team environments
  • Use Delegating to Jira Agent for devops workflows

Works across

Claude CodeCodex CLIGemini CLIOpenCode

Favorites: 0.

Sub-skills: 0.

Aggregator: No.

Original source / Raw SKILL.md

---
name: Delegating to Jira Agent
description: Recognize Jira queries and delegate to specialized sub-agent to avoid context pollution
keywords: jira, atlassian, devops, issue, ticket, bug, task, search, comment, delegate, agent
when_to_use: When user mentions "jira", "issue", "ticket", or asks to view/create/search/update Acme Jira issues. ALWAYS delegate to sub-agent.
version: 1.0.0
---

# Delegating to Jira Agent

## Core Principle

**Never handle Jira operations directly.** Always delegate to a specialized sub-agent to keep your context clean and costs low.

## Recognition Patterns

Delegate when user says:
- "show me jira issue PROJ-1234"
- "what jira issues do I have?"
- "search jira for nginx"
- "create a jira for this work"
- "add a comment to PROJ-1234"
- Any mention of: jira, issue, ticket, PROJ-*, AcmeED-*

## How to Delegate

Use the Task tool with a specialized prompt:

```
Task(
  subagent_type: "general-purpose",
  description: "Query Acme Jira",
  prompt: "<full agent instructions from AGENT-INSTRUCTIONS.md>"
)
```

## Agent Prompt Template

When delegating, include:
1. The complete agent instructions (see AGENT-INSTRUCTIONS.md)
2. The user's specific request
3. Clear output format requirements

**Example:**

```
You are a Acme Jira specialist. Your job is to query Acme's Atlassian Jira using shell wrappers and return clean results.

<AGENT INSTRUCTIONS HERE>

USER REQUEST: Show me my jira issues for production-main

Return a clean summary with:
- Issue keys
- Summaries
- Status
- URLs
```

## After Agent Returns

1. **Present results cleanly** to user
2. **Offer follow-up** if relevant (e.g., "Would you like details on PROJ-1234?")
3. **Don't expose mechanics** (curl, auth, etc.) to user

## Benefits

- ✅ Main context stays clean
- ✅ Cheaper queries (sub-agent uses less expensive model)
- ✅ Specialized knowledge isolated
- ✅ Scalable pattern for other services

## Example Flow

```
User: "show me my open jira issues"

Main Assistant: [Recognizes Jira query]
              → Invokes Task tool with agent instructions
              → Agent runs issuetracker-mine wrapper
              → Agent returns formatted results

Main Assistant: "You have 20 open issues. Here are the highlights:
                - PROJ-1638: production-main (In Development)
                - PROJ-2216: Reduce catdv log noise (Scheduled)
                ..."
```

## Red Flags

**DON'T:**
- ❌ Try to run issuetracker-* scripts yourself
- ❌ Construct curl commands in main session
- ❌ Load detailed Jira API knowledge
- ❌ Handle authentication directly

**DO:**
- ✅ Immediately delegate on Jira keywords
- ✅ Trust the sub-agent's results
- ✅ Present clean summaries to user

## Version History

- 1.0.0 (2025-10-14): Initial delegation skill created to reduce context pollution
Delegating to Jira Agent | SkillHub