بنقرة واحدة
jira-issue
Jira issue skill for CRUD. Trigger when user asks to create, get, update, or delete Jira issues.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Jira issue skill for CRUD. Trigger when user asks to create, get, update, or delete Jira issues.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Cost optimization skill. Review FinOps and optimization recommendations, analyze savings opportunities with multi-dimensional insights plus datasource-enriched resource context, risk assessment, and best practices guidance. Execute native day2 remediation and track remediation state.
Use when creating, reading, normalizing, regenerating, or modifying SmartCMP Angular form schema JSON, including dynamic JavaScript behavior, catalog context values, visibility, selects, tables, and form edit URLs.
Alarm operations skill. List alerts, analyze alert rule context with datasource-enriched resource facts, and perform alert status operations with remediation guidance.
Approval workflow skill. View pending approval tasks and approve or reject service requests.
Discovery skill. Browse SmartCMP reference data such as service catalogs, business groups, tenant/租户/部门/BU/项目 scopes, applications, OS templates, images, and generic resource details before submitting a request. Standalone business-group discovery belongs here; standalone resource-pool and resource browsing still use their dedicated skills.
Self-service request skill. Request cloud resources, application environments, ticket/work order services, or check submitted request status by Request ID. Keywords: request, provision, deploy, create VM, apply resources, submit ticket, request status, 申请资源, 创建虚拟机, 提交工单, 申请状态.
| name | jira-issue |
| description | Jira issue skill for CRUD. Trigger when user asks to create, get, update, or delete Jira issues. |
| category | provider:jira |
| provider_type | jira |
| instance_required | true |
| triggers | ["create issue","get issue","update issue","delete issue","report bug","log incident"] |
| use_when | ["User wants to create, read, update, or delete Jira issues","User mentions bug reports or incident logging","User asks about issue details by issue key"] |
| avoid_when | ["User wants to search multiple issues (use jira-search skill)","User wants bulk operations (use jira-bulk skill)","User asks about worklogs or time tracking (use jira-time skill)"] |
| examples | ["Create a Jira issue for the login bug","Get details for PROJ-123","Update the priority of PROJ-456 to High","Delete issue PROJ-789"] |
| related | ["jira-search","jira-bulk"] |
| tool_create_name | jira_issue_create |
| tool_create_entrypoint | scripts/jira_issue_create.py:handler |
| tool_create_groups | ["jira","issue"] |
| tool_create_capability_class | provider:jira |
| tool_create_priority | 120 |
| tool_get_name | jira_issue_get |
| tool_get_entrypoint | scripts/jira_issue_get.py:handler |
| tool_get_groups | ["jira","issue"] |
| tool_get_capability_class | provider:jira |
| tool_get_priority | 100 |
| tool_update_name | jira_issue_update |
| tool_update_entrypoint | scripts/jira_issue_update.py:handler |
| tool_update_groups | ["jira","issue"] |
| tool_update_capability_class | provider:jira |
| tool_update_priority | 130 |
| tool_delete_name | jira_issue_delete |
| tool_delete_entrypoint | scripts/jira_issue_delete.py:handler |
| tool_delete_groups | ["jira","issue"] |
| tool_delete_capability_class | provider:jira |
| tool_delete_priority | 140 |
This is a provider skill under providers/jira/skills/jira-issue.
Handle Jira Issue CRUD by orchestrating local scripts in scripts/ that call Jira REST API.
Use this skill when user intent is any of:
scripts/create_issue.pyscripts/get_issue.pyscripts/update_issue.pyscripts/delete_issue.pyWhen the user says:
Construct and run:
python app/atlasclaw/providers/jira/skills/jira-issue/scripts/create_issue.py \
--summary "Service startup failure" \
--description "Service failed to start due to a database connection timeout"
Then return created issue key to user.
atlasclaw.json (service_providers.jira).references/api_mapping.md.