https://github.com/jhandguy/jira-prompt
jira-prompt is a CLI to prompt Ollama using data from Jira issues.
https://github.com/jhandguy/jira-prompt
go jira ollama prompt
Last synced: 2 months ago
JSON representation
jira-prompt is a CLI to prompt Ollama using data from Jira issues.
- Host: GitHub
- URL: https://github.com/jhandguy/jira-prompt
- Owner: jhandguy
- License: mit
- Created: 2025-02-02T22:43:53.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-17T22:24:51.000Z (over 1 year ago)
- Last Synced: 2025-02-17T23:26:30.169Z (over 1 year ago)
- Topics: go, jira, ollama, prompt
- Language: Go
- Homepage:
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# jira-prompt
**jira-prompt** is a CLI to prompt Ollama using data from Jira issues.
## Requirements
[Ollama](https://ollama.com/) must be installed and the server running with `ollama serve` to use **jira-prompt**.
## Installation
**jira-prompt** can be installed via [homebrew-tap](https://github.com/jhandguy/homebrew-tap) with
```shell
brew install jhandguy/tap/jira-prompt
```
or downloaded as binary from the [releases page](https://github.com/jhandguy/jira-prompt/releases).
## Usage
```shell
➜ jp
jira-prompt is a CLI to prompt Ollama using data from Jira issues.
Usage:
jp [command]
Available Commands:
help Help about any command
prompt Prompt Ollama with Jira data
search Search Jira issues with JQL
Flags:
-d, --debug debug for jp
-h, --help help for jp
-e, --jira-excluded-fields string jira fields to exclude from the response (comma separated) (default "id,self,expand")
-q, --jira-request string jira search request (default "{\"jql\": \"project = FRGE AND status = \\\"In Progress\\\"\", \"fields\": [\"summary\"]}")
-t, --jira-token string jira API token
-u, --jira-url string jira base url (default "https://ecosystem.atlassian.net")
-v, --version version for jp
Use "jp [command] --help" for more information about a command.
```