Skip to main content

aim-jira-sync

Synchronize Jira issues and comments to AI Memory

Ir para a instalação

Informações da origem

Repositório
Hidden-History/ai-memory
Última atividade na origem
3 de junho de 2026 às 18:19
Idioma detectado do SKILL.md
inglês
Estrelas
41
Forks
5

Opções de instalação

Por padrão, está selecionado o prompt que primeiro revisa a origem. Você pode mudar para um comando direto ou baixar uma cópia local.

Revise os arquivos de origem

Leia o SKILL.md e os arquivos complementares exibidos pelo SkillsMP antes de decidir se vai instalar.

Exibindo SKILL.md

SKILL.md
Instruções da origem · Visualização somente leitura
name
aim-jira-sync
description
Synchronize Jira issues and comments to AI Memory
allowed-tools
Bash
# Jira Sync - Synchronize Jira Content Synchronize Jira issues and comments from configured projects into the AI Memory jira-data collection. ## Activation ```text # Incremental sync (default) - only fetch updated issues /aim-jira-sync # Full sync - fetch all issues and comments /aim-jira-sync --full # Sync specific project /aim-jira-sync --project BMAD # Check sync status (last sync time, items synced, errors) /aim-jira-sync --status # Full sync for specific project /aim-jira-sync --full --project BMAD ``` ## Options - `--incremental` - Sync only updated issues since last sync (default) - `--full` - Full sync: fetch all issues and comments from scratch - `--project <key>` - Sync specific project (default: all configured projects) - `--status` - Display sync status (last sync time, items synced, errors) ## Sync Modes ### Incremental Sync (Default) - Fetches issues updated since last sync timestamp - Faster and more efficient for regular updates - Uses JQL: `project = PROJ AND updated >= "2026-02-01 00:00"` - Updates existing documents in-place (by jira_comment_id for comments) ### Full Sync - Fetches all issues and comments from scratch - Use for initial setup or after schema changes - Warning: Can be slow for large projects (hundreds/thousands of issues) - Overwrites existing documents ## Configuration Sync requires Jira credentials in `.env`: ```env JIRA_INSTANCE_URL=https://company.atlassian.net JIRA_EMAIL=user@company.com JIRA_API_TOKEN=your_api_token_here JIRA_PROJECTS=BMAD,PROJ,DEV JIRA_SYNC_ENABLED=true JIRA_SYNC_DELAY_MS=100 ``` ## Activation Examples ```text # Daily incremental sync (recommended) /aim-jira-sync # Initial full sync for new project /aim-jira-sync --full --project NEWPROJ # Check last sync status /aim-jira-sync --status # Full refresh of all projects (use sparingly) /aim-jira-sync --full ``` ## Implementation Reference This skill invokes `scripts/jira_sync.py`: ```bash "${AI_MEMORY_INSTALL_DIR:-$HOME/.ai-memory}/scripts/memory/run-with-env.sh" "${AI_MEMORY_INSTALL_DIR:-$HOME/.ai-memory}/scripts/jira_sync.py" --incremental "${AI_MEMORY_INSTALL_DIR:-$HOME/.ai-memory}/scripts/memory/run-with-env.sh" "${AI_MEMORY_INSTALL_DIR:-$HOME/.ai-memory}/scripts/jira_sync.py" --full --project BMAD "${AI_MEMORY_INSTALL_DIR:-$HOME/.ai-memory}/scripts/memory/run-with-env.sh" "${AI_MEMORY_INSTALL_DIR:-$HOME/.ai-memory}/scripts/jira_sync.py" --status ``` ## Technical Details - **Rate Limiting**: Configurable delay between API requests (default 100ms) - **Pagination**: Token-based for issues, offset-based for comments - **Deduplication**: SHA256 content hashing prevents duplicate storage - **Document Format**: ADF (Atlassian Document Format) → plain text - **Collection**: jira-data (separate from code-patterns/conventions/discussions) - **Tenant Isolation**: group_id = Jira instance hostname ## Notes - Requires Jira Cloud API token (create at id.atlassian.com) - Sync logs written to `~/.ai-memory/logs/activity.log` - First sync can take several minutes for large projects - Incremental sync timestamp stored in jira_sync_state.json - Comments are linked to parent issues via jira_issue_key
Ver no GitHub