HJ38 downloadsSync Jira issues into your vault and weave them into your knowledge graph via wiki-links, Frontmatter, and Dataview.
Jira Weaver is a community plugin that syncs Jira issues directly into your Vault. Like weaving threads, it interlinks Jira issues with wiki links, Graph View, and Dataview into a rich knowledge network.
Language: 한국어 README
[[wiki links]] for Graph View and Dataview queriesmain.js, manifest.json, and styles.css from the latest release..obsidian/plugins/jira-weaver/ folder.


Open Settings → Jira Weaver.
| Field | Description |
|---|---|
| Auth mode | Bearer token for Server/Data Center; Basic auth for Cloud |
| Jira email | (Cloud only) the email address on your Atlassian account |
| Jira domain | Base URL of your Jira instance (e.g. https://acme.atlassian.net for Cloud, https://jira.internal for DC) |
| Personal Access Token | API token; stored locally, never transmitted elsewhere |
Under JQL Profiles, click Add profile. Fill in:
assignee = currentUser() AND sprint in openSprints()Enable the profile with the toggle and save.
Use the command palette (Ctrl/Cmd+P) and search for:
| Command | Description |
|---|---|
Sync Issues |
Normal sync (skips unchanged issues) |
Force Sync Issues (Overwrite All) |
Overwrites every file regardless of update time |
Reload Field List |
Fetches the current Jira field list (needed for custom fields) |
Open Sync Log |
Opens the sync history panel |
Each issue is saved as a Markdown file named KEY_summary-slug.md (e.g. PRJ-123_fix-login-bug.md).
---
jira_key: PRJ-123
title: "Fix login bug on SSO redirect"
status: In Progress
priority: High
assignee: "alice"
reporter: "bob"
created: "2025-01-15"
updated: "2025-04-01"
jira_url: "https://acme.atlassian.net/browse/PRJ-123"
---
# PRJ-123: Fix login bug on SSO redirect
Users are redirected to a blank page after SSO login when the
session cookie is missing.
| Field | Value |
|----------|--------------|
| Assignee | alice |
| Reporter | bob |
| Created | 2025-01-15 |
---
Last synced: 2025-05-10 09:30:00
[jira-weaver section end — notes below are preserved]
## My Notes
Notes written here are preserved across every sync.
A hidden section marker is written at the end of the Jira-managed block. On each sync, only the content above the marker is rewritten — everything below is left untouched.
If the marker is missing, the Memo protection → When the marker is missing setting controls the behaviour:
| Setting | Behaviour |
|---|---|
| Overwrite (default) | Rewrites the whole file |
| Skip the file | Leaves the file untouched and logs a warning |
| Append | Appends a new Jira block to the end of the file |
Go to Settings → Jira Weaver → Field Mapping to customise which Jira fields are written to Frontmatter.
fields.sprint[0].name)[[wiki link]]Use Export preset / Import preset buttons to save or restore your field mapping configuration as jira-weaver-preset.json in the Vault root.
| Trigger | Description |
|---|---|
| Manual | Only runs when you invoke a command |
| On startup | Runs once when Obsidian opens |
| Interval | Runs every N minutes (1–1440) |
| Symptom | Solution |
|---|---|
| "Authentication failed" notice | Verify your PAT hasn't expired; Cloud users must also set Jira email |
| "JQL error" notice | Test your JQL in Jira's issue search first |
| Custom fields not appearing | Click Reload fields after entering connection details |
| No files created | Check that the JQL query returns issues and that the target folder path is valid |
| Notes lost after sync | Make sure not to remove the section marker line at the end of the Jira block |
See CONTRIBUTING.md for development setup, coding conventions, and PR guidelines.