← Voltar para o catálogo Execute a raw Jira REST API call through the jirac CLI, including GET, POST, PUT, DELETE, and PATCH requests to any Jira REST endpoint
Ver no GitHub ↗ Copiar URL do repo Copiar link do SKILL.md Licença: NOASSERTION Como adicionar Copiar comando /plugin marketplace add mulhamna/jira-commands O comando exato pode variar conforme o repositório. Confira o README no GitHub.
Para o autor da skill
Mostra que sua skill está catalogada na Skillteca, gera backlink e tráfego rastreável.
Markdown HTML
[](https://www.skillteca.com.br/skills/jira-commands?utm_source=badge&utm_medium=readme&utm_campaign=badge) Copiar snippet Alerta por categoria
1 email curto, só com as skills novas de Automação. 4 minutos de leitura, sem spam, cancela com 1 clique.
Você confirma o email no primeiro envio. Sem spam. Cancela com 1 clique.
Execute raw Jira REST API requests with the jirac CLI.
Steps:
Check that jirac is available by running jirac --version. If it is missing, tell the user to install it with cargo install jira-commands.
Extract from the user's request:
HTTP method
API path, for example /rest/api/3/issue/PROJ-123
JSON body when needed
Run the matching command:
jirac api get <PATH>
jirac api post <PATH> --body '<JSON>'
jirac api put <PATH> --body '<JSON>'
jirac api delete <PATH>
jirac api patch <PATH> --body '<JSON>'
Show the response clearly.
If the user does not know the endpoint, help map their goal to the correct Jira REST path before running anything.
Examples:
"get server info" → jirac api get /rest/api/3/serverInfo
"get issue PROJ-123" → jirac api get /rest/api/3/issue/PROJ-123
"get all projects" → jirac api get /rest/api/3/project
"post to /rest/api/3/issue with body {...}" → jirac api post /rest/api/3/issue --body '{...}'
Ler descrição completa↓
Comentários · Nenhum comentário Ainda não há comentários. Seja o primeiro.