TaskNotes Jira is an Obsidian companion plugin that imports Jira issues as TaskNotes tasks. It connects the Jira data supplied by the Jira Issue plugin to TaskNotes’ task-creation API, with configurable field mapping, import previews, and Jira backlinks.
TaskNotes Jira depends on two other Obsidian plugins:
tasknotes creates and manages the imported task notes.obsidian-jira-issue connects to Jira and retrieves issue data.Install, enable, and configure both dependencies before using TaskNotes Jira. In particular, verify that Jira Issue can load an issue from your Jira account and that TaskNotes can create a normal task.
JIRA:PROJ-1234 backlink to the imported task while preserving the mapped description.After the dependencies are configured:



PROJ-1234.

The companion plugin retrieves the issue through Jira Issue and submits the mapped task through TaskNotes’ public API. TaskNotes remains responsible for applying task defaults, generating a safe filename, writing the note, and updating its cache.
TaskNotes Jira does not implement Jira authentication and should not store Jira credentials. Jira requests and account configuration are delegated to Jira Issue. Sample issue data is held only in memory for the settings preview and is not saved in this plugin’s settings.
Jira issues can contain sensitive project information. Review raw JSON before copying or sharing it, and protect your Obsidian vault and plugin data accordingly. This plugin does not include telemetry.
This plugin requires the TaskNotes runtime API v1 with the tasks.write capability and the Jira Issue api.base.getIssue API. It detects missing or incompatible dependencies at runtime and reports actionable notices.
To install from source:
main.js, manifest.json, and styles.css for TaskNotes Jira.<vault>/.obsidian/plugins/tasknotes-jira/.npm install
npm run dev
Run npm run build for a production bundle and npm run lint before submitting changes. The required Obsidian release artifacts are main.js, manifest.json, and styles.css.
Because this repository already lives inside an Obsidian vault, npm run build makes the current sandbox installation ready to reload. To deploy the same artifacts to a separate test vault, run npm run build:test. Its destination defaults to the sibling TaskNotes E2E vault and can be overridden with OBSIDIAN_PLUGIN_PATH or a git-ignored .copy-files.local file containing one destination plugin directory per line.
Add user-facing changes to docs/releases/unreleased.md, then prepare a release with npm's version command:
npm version patch
git push --follow-tags
Use minor, major, or an explicit semantic version instead of patch when appropriate. The version lifecycle synchronizes manifest.json and versions.json, promotes the unreleased notes to docs/releases/<version>.md, regenerates the release index, commits the changes, and creates the version tag. Pushing the tag triggers GitHub Actions, which builds the plugin and creates a draft GitHub release using that Markdown file. Review and publish the draft in GitHub.
npm run version only invokes the lifecycle script directly and does not create npm's version commit or Git tag; use npm version ... for releases.
See LICENSE.