Convert a Jira export JSON file to beads format
Converts Jira JSON export files to beads format for offline processing.
/plugin marketplace add conallob/jira-beads-sync/plugin install conallob-jira-beads-sync@conallob/jira-beads-sync<jira-export-file>Convert a previously exported Jira JSON file to beads format. This is useful when you have a Jira export file from the Jira UI or API export, rather than fetching directly from the API.
jira-beads-sync convert <jira-export-file>
The command will:
.beads/ directoryThe tool expects a JSON file in Jira's export format:
{
"issues": [
{
"key": "PROJ-123",
"fields": {
"summary": "Issue title",
"description": "Issue description",
"issuetype": { "name": "Story" },
"status": { "name": "In Progress", "statusCategory": { "key": "indeterminate" } },
"priority": { "name": "High" },
"created": "2024-01-01T10:00:00.000+0000",
"updated": "2024-01-15T14:30:00.000+0000"
}
}
]
}
project = PROJ AND status != Done)curl -u email@example.com:api-token \
"https://jira.example.com/rest/api/2/search?jql=project=PROJ" \
> jira-export.json
User: Convert my Jira export file jira-export.json to beads
Claude: I'll convert your Jira export file to beads format.
[Runs: jira-beads-sync convert jira-export.json]
Converting jira-export.json to beads format...
✓ Conversion complete!
3 epic(s) written to .beads/epics/
15 issue(s) written to .beads/issues/
The issues have been converted and saved to .beads/ directory.
To see the imported issues, run: bd list
For a complete import with dependency graph walking, use import-jira instead.
After conversion:
bd list # List all imported issues
bd show <issue-id> # Show details of a specific issue