Jira issue
Skill CloudChef/atlasclaw-providers/providers/jira/skills/jira-issue
atlasclaw-providers are the integration with enterprise systems through skills and webhook.
npx -y skills add CloudChef/atlasclaw-providers --skill jira-issueAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 14 stars14 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Jira issue skill for CRUD. Trigger when user asks to create, get, update, or delete Jira issues.
SKILL.md
2.8 KB, as published. Nobody here has run it
jira-issue
This is a provider skill under providers/jira/skills/jira-issue.
Purpose
Handle Jira Issue CRUD by orchestrating local scripts in scripts/ that call Jira REST API.
Trigger Conditions
Use this skill when user intent is any of:
- Create issue / report bug / log incident
- Get issue details
- Update issue fields
- Delete issue
Script Entry Points
scripts/create_issue.pyscripts/get_issue.pyscripts/update_issue.pyscripts/delete_issue.py
Invocation Guidance
When the user says:
- "Create a Jira issue for service startup failure"
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.
Notes
- Scripts read Jira connection from
atlasclaw.json(service_providers.jira). - API mappings are in
references/api_mapping.md. - Skill scripts are part of this skill package, not standalone global skills.