AgentSkillsCN

integration-jira-cloud

通过 AgenCo 可用的 Jira Cloud 操作

SKILL.md
--- frontmatter
name: integration-jira-cloud
description: "Jira Cloud actions available through AgenCo"
user-invocable: false
disable-model-invocation: false

Jira Cloud

Actions available through AgenCo secure gateway. All credentials are stored in the cloud vault — never exposed locally.

Actions

ActionDescription
search_issuesSearches for issues using JQL queries to find relevant tasks and bugs
get_issueRetrieves detailed information about a specific issue including comments and history
create_issueCreates new issues with summary, description, priority, and assignee
update_issueModifies issue fields like status, assignee, priority, or custom fields
delete_issuePermanently removes an issue from the project
assign_issueChanges the assignee of an issue to a different team member
transition_issueMoves an issue through workflow states like To Do, In Progress, Done
add_commentAdds comments to issues for updates and collaboration
search_projectsLists available projects to find relevant boards and backlogs
get_current_userRetrieves information about the authenticated user

How to Use

Always search first to discover exact tool names and their input schemas, then call the tool.

Step 1: Search for the tool

bash
agenco search-tools '{"queries":["jira cloud search issues"]}'

The response includes toolName (exact name) and inputSchema (required/optional parameters).

Step 2: Call the tool

Use the exact toolName and match the inputSchema from the search results:

bash
agenco call-tool '{"toolName":"<toolName from search>","input":{...}}'

Example

bash
# Find the right tool
agenco search-tools '{"queries":["jira cloud search issues"]}'

# Call it (use the exact toolName and schema from the search result)
agenco call-tool '{"toolName":"jira-cloud_search_issues","input":{...}}'

If Jira Cloud is not connected, run agenco list-connected-integrations to check, then connect it via the Shield UI.