Development guide for maintaining and extending the Jira communication scripts.
Scanned 5/31/2026
Install via CLI
openskills install tools-only/X-Skills<!-- Managed by agent: keep sections & order; edit content, not structure. Last updated: 2025-12-12 -->
# AGENTS.md — jira-communication
Development guide for maintaining and extending the Jira communication scripts.
## Overview
Python CLI scripts using `uv run`. Each script is standalone with PEP 723 inline dependencies.
## Setup & environment
Development requires Python 3.11+ and `uv`. No virtual environment needed - `uv run` handles dependencies.
## Build & tests
```bash
# Test a script works
uv run scripts/core/jira-validate.py --help
# Test against real Jira (need ~/.env.jira configured)
uv run scripts/core/jira-validate.py --verbose
```
## Code style & conventions
**Script structure:**
- Use argparse with subcommands
- Import shared lib: `from lib.client import get_jira_client`
- PEP 723 header for inline dependencies
- PYTHONPATH manipulation at top (copy from existing scripts)
**Output formats:** Every script must support `--json`, `--quiet`, and default table output via `lib/output.py`.
**Write operations:** Must include `--dry-run` flag.
## Security & safety
- Never hardcode credentials
- Use `lib/config.py` for env loading
- Test `--dry-run` before actual writes
## PR/commit checklist
- [ ] Script follows existing structure (copy from similar script)
- [ ] All three output formats work (`--json`, `--quiet`, table)
- [ ] `--dry-run` for any write operation
- [ ] `--help` is descriptive
- [ ] Update SKILL.md with new script docs
## Good vs. bad examples
**Adding a new script:**
```python
# ✓ Copy structure from existing script
# ✓ Use lib/ imports
# ✓ Support all output formats
# ✗ Write from scratch without looking at patterns
# ✗ Hardcode auth or skip --dry-run
```
## When stuck
- Copy structure from `scripts/core/jira-issue.py` (good reference)
- Check `lib/` for shared utilities
- Run `--help` on similar scripts
## House rules
- Don't read SKILL.md for development - it's user docs
- Test against real Jira before PR
---
**Maintaining this file:** See root `AGENTS.md` for convention reference.
No comments yet. Be the first to comment!
Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.
SEO optimization with keyword analysis, readability assessment, technical validation, content quality. Use for search rankings, blog posts, content audits, or encountering keyword density, readability scores, meta tags, schema markup errors.
Python backend development expertise for FastAPI, security patterns, database operations, Upstash integrations, and code quality. Use when: (1) Building REST APIs with FastAPI, (2) Implementing JWT/OAuth2 authentication, (3) Setting up SQLAlchemy/async databases, (4) Integrating Redis/Upstash caching, (5) Refactoring AI-generated Python code (deslopification), (6) Designing API patterns, or (7) Optimizing backend performance.
Drive the full internationalization journey for a project — detect the stack, recommend a library, set up the chosen library, wrap existing strings, and optionally connect a translation platform. Use when the user asks to add or configure i18n, internationalization, localization, multi-language support, or translations — including when they explicitly mention LinguiJS, Lingui, next-intl, "wrap strings", "find hardcoded text", "make my app translatable", or "set up translations". Triggers on g...
PTES-aligned adversarial security audit for backend, frontend, and mobile applications. Produces a CVSS-scored Hacker Report with verified PoCs and phased remediation.