skill-doc-coordinator

skill-doc-coordinator is an agent for Claude Code from grandcamel/JIRA-Assistant-Skills. It costs 30 tokens per session (830 once invoked), scanned A, original, MIT.

A coordinator that runs documentation reviews for a collection of JIRA-related skills. It assigns separate reviewers, gathers their findings, and produces one summary report.

In plain words
What is it for?
Use it for a full audit of the listed JIRA skills and to create a unified findings file.
Why use it?
It removes the need to review each skill and combine the results manually when checking documentation across the whole set.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model in frontmatter.

Part of the jira-assistant-skills plugin — 14 skills, 4 commands, 15 agents shipped together

Good fit Use it for a full audit of the listed JIRA skills and to create a unified findings file.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/grandcamel/jira-assistant-skills/skill-doc-coordinator
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/grandcamel/JIRA-Assistant-Skills

Made for: Claude Code.

Or install jira-assistant-skills, the plugin that ships this one along with the rest of its 14 skills, 4 commands, 15 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for skill-doc-coordinator

README.md
[![agentmods](https://agentmods.dev/badge/agents/grandcamel/jira-assistant-skills/skill-doc-coordinator/github.svg)](https://agentmods.dev/agents/grandcamel/jira-assistant-skills/skill-doc-coordinator)
Your own site
<a href="https://agentmods.dev/agents/grandcamel/jira-assistant-skills/skill-doc-coordinator"><img src="https://agentmods.dev/badge/agents/grandcamel/jira-assistant-skills/skill-doc-coordinator/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for skill-doc-coordinator

Your own site · 80×15
<a href="https://agentmods.dev/agents/grandcamel/jira-assistant-skills/skill-doc-coordinator"><img src="https://agentmods.dev/badge/agents/grandcamel/jira-assistant-skills/skill-doc-coordinator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 30 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 830 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00030 $0.00830
Opus 5 $0.00015 $0.00415
Sonnet 5 $0.00006 $0.00166
Haiku 4.5 $0.00003 $0.00083

Measured 3d ago against content hash 37bc707a147c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

skill-doc-coordinator scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/agents/skill-doc-coordinator.md · 122 lines

How it starts

The opening of the file, as written. The whole thing — 122 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Skill Documentation Coordinator

You coordinate parallel documentation reviews across all 14 JIRA skills, aggregate findings, and produce a unified report.

Your Role

  1. Orchestrate - Launch all 14 reviewer agents in parallel using the Task tool
  2. Monitor - Wait for all reviewers to complete
  3. Aggregate - Combine individual findings into a summary report
  4. Report - Generate docs/reviews/findings/summary.json

Review Agents to Launch

Launch these 14 agents in parallel using the Task tool:

Agent Skill CLI Group
jira-issue-reviewer jira-issue issue
jira-search-reviewer jira-search search
jira-lifecycle-reviewer jira-lifecycle lifecycle
jira-agile-reviewer jira-agile agile
jira-collaborate-reviewer jira-collaborate collaborate
jira-time-reviewer jira-time time
jira-relationships-reviewer jira-relationships relationships
jira-jsm-reviewer jira-jsm jsm
jira-bulk-reviewer jira-bulk bulk
jira-dev-reviewer jira-dev dev
jira-fields-reviewer jira-fields fields
jira-ops-reviewer jira-ops ops
jira-admin-reviewer jira-admin admin
jira-assistant-reviewer jira-assistant N/A (hub)

Execution Process

Step 1: Launch Parallel Reviews

Use the Task tool to spawn all 14 reviewers simultaneously:

For each reviewer agent:
  Task(subagent_type="jira-<skill>-reviewer",
       prompt="Review jira-<skill> SKILL.md against jira-as <group> CLI. Write findings to docs/reviews/findings/jira-<skill>.json")

Step 2: Wait for Completion

Monitor task completion. Each agent writes its findings to: docs/reviews/findings/<skill>.json

Step 3: Aggregate Findings

After all reviewers complete, read all JSON files from docs/reviews/findings/ and aggregate:

{
  "audit_date": "YYYY-MM-DD",
  "total_skills_reviewed": 14,
  "overall_summary": {
    "total_documented_commands": <sum>,
    "total_actual_commands": <sum>,
    "total_findings": <sum>,
    "severity_breakdown": {
      "high": <count>,
      "medium": <count>,
      "low": <count>
    }
  },
  "skills": [
    // Include summary from each skill review
  ],
  "critical_findings": [
    // All HIGH severity findings across skills
  ]
}

Read the full file on GitHub · 122 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago Changed 37bc707a147c
  2. 11d ago First seen · 122 lines · 30 tokens per session scan A 88a47bb81920

Subscribe to this mod's changes

skill-doc-coordinator is an agent published in the GitHub repository grandcamel/JIRA-Assistant-Skills (46 stars, last pushed 2d ago), licensed MIT. It adds 30 tokens to every session and 830 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other agents, from other repositories

django-fastapi-expert

Django ORM, Django REST Framework, FastAPI async patterns, and Pydantic v2 specialist. Use when building Python web applications, designing APIs with Django or FastAPI, or working with Python web frameworks. Trigger phrases: Django, FastAPI, DRF, Django REST Framework, Pydantic, ORM, queryset, viewset, serializer…

travisjneuman/.claude · 86 tokens

python-expert

Python best practices, type hints, async patterns, and ecosystem expertise. Use for Python-specific guidance, typing issues, or framework questions.

travisjneuman/.claude · 31 tokens

python-reviewer

Expert Python code reviewer specializing in PEP 8 compliance, Pythonic idioms, type hints, security, and performance. Use for all Python code changes. MUST BE USED for Python projects.

YousefNabil-SOC/claude-apex · 43 tokens

Geoprocessing Specialist

ArcPy and Python toolbox expert who automates spatial workflows — builds .pyt toolboxes, Model Builder processes, batch geoprocessing automation, and custom analysis scripts for ArcGIS Pro.

SHAdd0WTAka/Zen-Ai-Pentest · 45 tokens

go-expert

Go concurrency, error handling, stdlib patterns, Chi/Echo web frameworks specialist. Use when writing Go code, designing concurrent systems, or building Go web services. Trigger phrases: Go, Golang, goroutine, channel, Chi, Echo, stdlib, context, error handling, interface, module, go test.

travisjneuman/.claude · 69 tokens

product-analytics-specialist

PostHog, Mixpanel, Amplitude event tracking, funnels, cohorts, and A/B testing specialist. Use when implementing analytics, designing event schemas, or setting up experimentation. Trigger phrases: analytics, tracking, PostHog, Mixpanel, Amplitude, Segment, events, funnel, cohort, A/B test, feature flag, conversion…

travisjneuman/.claude · 80 tokens