ワンクリックで
jira-rd-tagging
Use when creating or updating Jira issues via kspec to ensure R&D category tagging for reporting and analytics
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use when creating or updating Jira issues via kspec to ensure R&D category tagging for reporting and analytics
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | jira-rd-tagging |
| description | Use when creating or updating Jira issues via kspec to ensure R&D category tagging for reporting and analytics |
| metadata | {"skillport":{"category":"enterprise","tags":["jira","rd","compliance","reporting","enterprise"],"alwaysApply":false}} |
This skill ensures all Jira issues created via kspec are tagged with appropriate R&D categories for reporting, analytics, and compliance. It enables tracking of engineering effort across different work types (new development, maintenance, tech debt, etc.).
kspec sync-jirakspec jira-subtasksAnalyze the spec to determine the type of work:
Read spec.md for explicit type declarations:
## Type: Feature | Enhancement | Bug Fix | Refactor | Security | Performance
Scan for keywords if no explicit type:
Check steering docs for project-level classification:
.kiro/steering/rd-mapping.md for custom mappings.kiro/steering/product.md for project contextReference the R&D mapping configuration:
| Detected Type | R&D Category | Jira Label |
|---|---|---|
| New Feature | New Development | rd:new-dev |
| Enhancement | Enhancement | rd:enhancement |
| Bug Fix | Maintenance | rd:maintenance |
| Refactor | Tech Debt | rd:tech-debt |
| Security | Security | rd:security |
| Performance | Optimization | rd:optimization |
| Documentation | Documentation | rd:documentation |
| Testing | Quality | rd:quality |
| Unknown | Uncategorized | rd:uncategorized |
When creating or updating Jira issues, apply:
rd:<category> (e.g., rd:new-dev)kspec-managed---
kspec: {spec-folder-name}
rd-category: {category}
classified-at: {timestamp}
---
Update jira-links.json with R&D information:
{
"sourceIssues": ["PROJ-100"],
"specIssue": "PROJ-123",
"subtasks": ["PROJ-124", "PROJ-125"],
"rdTagging": {
"category": "new-dev",
"labels": ["rd:new-dev", "kspec-managed"],
"classifiedAt": "2026-01-31T10:00:00Z",
"classificationReason": "Keywords: 'implement', 'new feature'"
}
}
After applying tags, report to user:
✅ R&D Classification Applied
Category: New Development (rd:new-dev)
Reason: Keywords detected: "implement", "new feature"
Issue: PROJ-123
.kiro/steering/rd-mapping.mdCreate this file to customize R&D mappings for your organization:
# R&D Category Mappings
## Custom Mappings
| Project Keyword | R&D Category | Priority |
|-----------------|--------------|----------|
| auth | Security | high |
| api | New Development | medium |
| legacy | Tech Debt | low |
## Default Category
When no classification can be determined: `rd:uncategorized`
## Excluded Labels
Do not apply R&D tags to issues with these labels:
- `spike`
- `research`
- `meeting`
## Custom Labels
Additional labels to always apply:
- `team:platform`
- `quarter:Q1-2026`
.kiro/config.json{
"enterprise": {
"rdTagging": {
"enabled": true,
"defaultCategory": "rd:uncategorized",
"mappingFile": ".kiro/steering/rd-mapping.md",
"alwaysAddKspecLabel": true,
"includeSpecReference": true
}
}
}
Use these Atlassian MCP commands to apply labels:
# Add labels to issue
jira_update_issue(
issue_key: "PROJ-123",
labels: ["rd:new-dev", "kspec-managed"]
)
# Add to description
jira_update_issue(
issue_key: "PROJ-123",
description: "... existing description ...\n\n---\nkspec: 2026-01-31-user-auth\nrd-category: new-dev"
)
After applying tags, verify:
rd:* labelkspec-managed labeljira-links.json updated with rdTagging block## Type: section.kiro/steering/rd-mapping.md.kiro/steering/rd-mapping.md with correct mappings## Type: to spec.mdspec.md:
# User Authentication with OAuth
## Type: Feature
Implement OAuth 2.0 authentication...
Result:
rd:new-devspec.md:
# Fix Login Timeout Issue
Users report being logged out unexpectedly after 5 minutes...
Result:
rd:maintenancespec.md:
# Refactor Payment Module
Clean up legacy payment code and reduce technical debt...
Result:
rd:tech-debt