backlog-git-tracker — Azure DevOps integration backlog-git-tracker, pm-workspace, gonzalezpazmonica, community, Azure DevOps integration, ai agent skill, ide skills, agent automation, JIRA project management, Git snapshot management, WIQL query implementation, AI agent delegation

v1.0.0
GitHub

About this Skill

Perfect for Development Agents needing automated project management and backlog tracking with Azure DevOps and JIRA integration. backlog-git-tracker is a project management system that integrates with Azure DevOps and JIRA, utilizing Git for version control and issue tracking.

Features

Detects backlog source using Azure DevOps Org URL and WIQL queries
Supports JIRA integration via JIRA_BASE_URL
Creates backlog-snapshots directory if it doesn't exist
Utilizes Git for version control and snapshot management
Delegates implementation to AI agents for efficient project management
Initializes SaviaHub for streamlined project configuration

# Core Topics

gonzalezpazmonica gonzalezpazmonica
[17]
[1]
Updated: 3/11/2026

Quality Score

Top 5%
34
Excellent
Based on code quality & docs
Installation
SYS Universal Install (Auto-Detect)
> npx killer-skills add gonzalezpazmonica/pm-workspace/backlog-git-tracker
Supports 19+ Platforms
Cursor
Windsurf
VS Code
Trae
Claude
OpenClaw
+12 more

Agent Capability Analysis

The backlog-git-tracker skill by gonzalezpazmonica is an open-source community AI agent skill for Claude Code and other IDE workflows, helping agents execute tasks with better context, repeatability, and domain-specific guidance. Optimized for Azure DevOps integration, JIRA project management, Git snapshot management.

Ideal Agent Persona

Perfect for Development Agents needing automated project management and backlog tracking with Azure DevOps and JIRA integration.

Core Value

Empowers agents to automate backlog tracking and implementation delegation using WIQL queries and Git snapshots, providing seamless integration with Azure DevOps and JIRA, and utilizing protocols like Git for version control.

Capabilities Granted for backlog-git-tracker

Automating project backlog tracking with Azure DevOps and JIRA
Generating Git snapshots for project version control
Delegating implementation tasks to team members using WIQL queries

! Prerequisites & Limits

  • Requires SaviaHub initialization
  • Needs client and project directories to exist
  • Dependent on Azure DevOps or JIRA for backlog data
Project
SKILL.md
3.6 KB
.cursorrules
1.2 KB
package.json
240 B
Ready
UTF-8

# Tags

[No tags]
SKILL.md
Readonly

Skill: BacklogGit Tracker

Regla: @.claude/rules/domain/backlog-git-config.md Hub: @.claude/rules/domain/savia-hub-config.md

Prerequisitos

  • SaviaHub inicializado: [ -d "$SAVIA_HUB_PATH/.git" ]
  • Cliente y proyecto existen: [ -d "$SAVIA_HUB_PATH/clients/$CLIENT/projects/$PROJECT" ]
  • Si no existe backlog-snapshots/ → crear

Flujo: Snapshot

  1. Detectar fuente del backlog (por orden de prioridad):
    • AZURE_DEVOPS_ORG_URL → Azure DevOps (WIQL query)
    • JIRA_BASE_URL → Jira (JQL query)
    • GITLAB_URL → GitLab (Issues API)
    • Directorio backlog/ en proyecto → Savia Flow
    • Ninguno → modo manual (PM dicta items)
  2. Extraer items: ID, título, estado, asignado, estimación (horas), prioridad, tags
  3. Generar timestamp: date -u +%Y%m%d-%H%M%S
  4. Crear directorio si no existe: mkdir -p backlog-snapshots/
  5. Escribir snapshot markdown con frontmatter YAML + tabla
  6. Calcular resumen: total, por estado, estimación total
  7. Commit: [backlog-git] snapshot: $CLIENT/$PROJECT ($TOTAL items)
  8. Si remote + no flight-mode → push (delegar a savia-hub-sync)
  9. Mostrar banner con resumen

Flujo: Diff

  1. Resolver referencias:
    • Sin flags → último vs penúltimo snapshot
    • --from YYYYMMDD → buscar snapshot con prefijo
    • Índice numérico (-1, -2) → contar desde el más reciente
  2. Parsear ambos snapshots: extraer frontmatter + tabla → mapa ID→item
  3. Calcular deltas:
    • Añadidos: IDs(to) - IDs(from)
    • Eliminados: IDs(from) - IDs(to)
    • Modificados: IDs(from) ∩ IDs(to) con campos diferentes
  4. Para cada modificado, registrar: campo, valor anterior, valor nuevo
  5. Calcular métricas: scope change %, re-estimación total Δh
  6. Mostrar diff formateado con banner 📊

Flujo: Rollback (solo informe)

  1. Cargar snapshot referenciado → parsear items
  2. Obtener estado actual (último snapshot o query al PM tool)
  3. Generar diff inverso: qué acciones serían necesarias
  4. Listar acciones en formato checklist:
    • [ ] Restaurar item #{ID}: "{título}"
    • [ ] Revertir estado de #{ID}: {actual} → {original}
    • [ ] Revertir estimación de #{ID}: {actual}h → {original}h
  5. NUNCA ejecutar — solo informar al PM
  6. Guardar informe en output/ si se solicita

Flujo: Deviation Report

  1. Listar todos los snapshots: ls backlog-snapshots/*.md | sort
  2. Parsear serie temporal: para cada snapshot, extraer total, por estado, estimación
  3. Calcular métricas acumuladas:
    • Scope creep: (items_final - items_inicial) / items_inicial × 100
    • Re-estimación: Σ deltas de estimación
    • Completion trend: closed/total por snapshot
    • Velocity: items cerrados entre snapshots consecutivos
  4. Generar gráfico ASCII de evolución (items totales, cerrados, estimación)
  5. Guardar en output/YYYYMMDD-deviation-{client}-{project}.md
  6. Mostrar resumen con banner 📈

Snapshot manual

Cuando no hay PM tool conectado:

  1. Pedir al PM lista de items (puede ser informal)
  2. Estructurar en tabla con IDs secuenciales (M001, M002...)
  3. Pedir confirmación antes de guardar
  4. Mismo flujo de commit/push

Errores

ErrorAcción
SaviaHub no existeSugerir /savia-hub init
Cliente no existeSugerir /client-create
Proyecto no existeSugerir /client-edit {slug} + añadir proyecto
Sin snapshotsSugerir /backlog-git snapshot primero
PM tool no accesibleOfrecer snapshot manual

Seguridad

  • Snapshots son append-only: NUNCA modificar uno existente
  • NUNCA ejecutar rollback automático — solo informar
  • NUNCA incluir tokens o credentials en snapshots
  • Confirmar con PM antes de push al remote

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is backlog-git-tracker?

Perfect for Development Agents needing automated project management and backlog tracking with Azure DevOps and JIRA integration. backlog-git-tracker is a project management system that integrates with Azure DevOps and JIRA, utilizing Git for version control and issue tracking.

How do I install backlog-git-tracker?

Run the command: npx killer-skills add gonzalezpazmonica/pm-workspace/backlog-git-tracker. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for backlog-git-tracker?

Key use cases include: Automating project backlog tracking with Azure DevOps and JIRA, Generating Git snapshots for project version control, Delegating implementation tasks to team members using WIQL queries.

Which IDEs are compatible with backlog-git-tracker?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for backlog-git-tracker?

Requires SaviaHub initialization. Needs client and project directories to exist. Dependent on Azure DevOps or JIRA for backlog data.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add gonzalezpazmonica/pm-workspace/backlog-git-tracker. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use backlog-git-tracker immediately in the current project.

Related Skills

Looking for an alternative to backlog-git-tracker or another community skill for your workflow? Explore these related open-source skills.

View All

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
Design

linear

Logo of lobehub
lobehub

Linear issue management. MUST USE when: (1) user mentions LOBE-xxx issue IDs (e.g. LOBE-4540), (2) user says linear, linear issue, link linear, (3) creating PRs that reference Linear issues. Provides

73.4k
0
Communication

testing

Logo of lobehub
lobehub

Testing guide using Vitest. Use when writing tests (.test.ts, .test.tsx), fixing failing tests, improving test coverage, or debugging test issues. Triggers on test creation, test debugging, mock setup

73.3k
0
Communication

chat-sdk

Logo of lobehub
lobehub

chat-sdk is a unified TypeScript SDK for building chat bots across multiple platforms, providing a single interface for deploying bot logic.

73.0k
0
Communication