ClaudeCode_Playwright_Demo: Skill for Claude Code

.claude/skills/jira_integration/SKILL.md

jira_integration is a skill for Claude Code from anhtester/ClaudeCode_Playwright_Demo. It costs 34 tokens per session (1,461 once invoked), scanned A, a copy of jira_integration, MIT.

An integration skill connecting Jira, a project and issue-tracking system, with Xray, a test-management extension for Jira. It retrieves requirements and user stories, checks the connection, and sends test results to Xray Cloud or Server.

In plain words
What is it for?
Use it to fetch Jira requirements, validate Jira or Xray access, import Playwright, JUnit, or Allure results, and connect these steps to a CI/CD pipeline.
Why use it?
It removes manual copying between Jira, test tools, and Xray. It also helps verify that the required accounts and tokens work before importing results.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is anhtester/ClaudeCode_Playwright_Demo's own configuration. It tells Claude Code how to work on ClaudeCode_Playwright_Demo itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything ClaudeCode_Playwright_Demo configures →

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is node scripts/integrations/jira/jira_fetcher.js --issue PROJ-123.

Reuse

Borrowing it

Nothing to install: this file belongs to anhtester/ClaudeCode_Playwright_Demo. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/anhtester/ClaudeCode_Playwright_Demo/main/.claude/skills/jira_integration/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/anhtester/ClaudeCode_Playwright_Demo

Made for: Claude Code.

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 jira_integration

README.md
[![agentmods](https://agentmods.dev/badge/skills/anhtester/claudecode_playwright_demo/jira_integration.svg)](https://agentmods.dev/skills/anhtester/claudecode_playwright_demo/jira_integration)
Your own site
<a href="https://agentmods.dev/skills/anhtester/claudecode_playwright_demo/jira_integration"><img src="https://agentmods.dev/badge/skills/anhtester/claudecode_playwright_demo/jira_integration.svg" alt="Measured on agentmods" height="20"></a>
Per session 34 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,461 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 100% copy Near-identical to another mod 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.00034 $0.01461
Opus 5 $0.00017 $0.00731
Sonnet 5 $0.00007 $0.00292
Haiku 4.5 $0.00003 $0.00146

Measured 7d ago against content hash 04c8717ed063, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

jira_integration 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 7d 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.

Origin

This is a copy

100% identical to jira_integration — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.claude/skills/jira_integration/SKILL.md · 176 lines

How it starts

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

Jira & Xray Integration Skill

Mô tả

Skill này cung cấp khả năng tích hợp giữa Antigravity Testing Kit với hệ thống Jira và Xray để:

  1. Lấy Requirements/User Stories từ Jira → chuyển thành tài liệu yêu cầu chuẩn
  2. Xác thực Xray (Cloud hoặc Server/Data Center)
  3. Đẩy kết quả test (Playwright, JUnit, Allure) lên Xray Test Management

Khi nào sử dụng

Agent sử dụng skill này khi user yêu cầu:

  • Lấy requirement / user story từ Jira
  • Kết nối / test connection đến Jira API
  • Đẩy kết quả test lên Xray
  • Import test results lên Jira
  • Xác thực Xray token
  • Tích hợp CI/CD với Jira

Trigger keywords:

  • "fetch jira", "lấy requirement từ jira", "get jira ticket"
  • "import xray", "đẩy kết quả lên xray", "push test results"
  • "test jira connection", "kiểm tra kết nối jira"

Cấu trúc Scripts

scripts/integrations/
├── jira/
│   ├── jira_fetcher.js      # Lấy Requirement/User Story từ Jira
│   ├── xray_auth.js         # Xác thực và lấy Token Xray
│   ├── xray_importer.js     # Import kết quả test lên Xray
│   └── utils.js             # Hàm utility dùng chung
└── package.json             # Dependencies (axios, dotenv)

Điều kiện tiên quyết (Prerequisites)

1. Cài đặt dependencies

cd scripts/integrations
npm install

2. Cấu hình .env

Copy .env.example thành .env ở thư mục gốc project:

cp .env.example .env

Điền các thông tin bắt buộc:

Biến Mô tả Bắt buộc
JIRA_BASE_URL URL Jira instance (VD: https://domain.atlassian.net)
JIRA_EMAIL Email tài khoản Jira (Cloud) ✅ (Cloud)
JIRA_API_TOKEN API Token (Cloud) ✅ (Cloud)
JIRA_PAT Personal Access Token (Server/DC) ✅ (Server)
JIRA_PROJECT_KEY Project key mặc định Khuyến nghị
XRAY_PLATFORM cloud hoặc server Mặc định: cloud
XRAY_CLIENT_ID Xray API Client ID Khi dùng Xray Cloud
XRAY_CLIENT_SECRET Xray API Client Secret Khi dùng Xray Cloud

Read the full file on GitHub · 176 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. 7d ago First seen · 176 lines · 34 tokens per session scan A 04c8717ed063

Subscribe to this mod's changes

jira_integration is a skill published in the GitHub repository anhtester/ClaudeCode_Playwright_Demo (2 stars, last pushed 3mo ago), licensed MIT. It adds 34 tokens to every session and 1,461 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to jira_integration, differing in 0 lines, and is treated as a copy.