mp-tracker-templates

Provides Bitbucket and Jira issue-tracker templates for mattpocock engineering skills using the twg CLI.

1|Updated Aug 6, 2025
One-click install
npx skills add https://github.com/azaidrahman/zaid-sani-dotfiles --skill mp-tracker-templates-azaidrahman
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: mp-tracker-templates
Source: https://github.com/azaidrahman/zaid-sani-dotfiles/tree/main/dot_claude/skills/mp-tracker-templates
Command: npx skills add https://github.com/azaidrahman/zaid-sani-dotfiles --skill mp-tracker-templates-azaidrahman

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? The upstream /setup-matt-pocock-skills command only ships issue-tracker seed templates for GitHub, GitLab, and local markdown, leaving Bitbucket repos whose issues live in Jira without a working configuration. This Skill supplies the missing template with verified twg CLI commands so agents like /triage, /to-tickets, /to-spec, /qa, and /wayfinder can reach Jira and Bitbucket correctly. ## Core Features & Use Cases - Bitbucket + Jira seed template: Copies a ready-made issue-tracker.md into docs/agents/ with a single <PROJECT-KEY> placeholder to fill in. - Verified twg command tables: Covers Jira workitem operations (create, query, transition, link, labels) and Bitbucket pull-request operations, including silent-failure traps like --labels replacing the whole set and link-type IDs being required instead of names. - MCP fallback guidance: Documents the Atlassian MCP tools (createJiraIssue, searchJiraIssuesUsingJql) for when twg is absent or unauthenticated. - Use Case: When setting up a work repo hosted on Bitbucket Cloud or Data Center, use this Skill to generate docs/agents/issue-tracker.md so every downstream slash command knows to file tickets in Jira and manage PRs through twg bitbucket. ## Quick Start Set up the issue tracker for this Bitbucket repo by generating docs/agents/issue-tracker.md with the Jira project key filled in.

Frequently Asked Questions about mp-tracker-templates

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I configure an issue tracker for a Bitbucket repo with Jira?

Copy the issue-tracker-bitbucket.md template to docs/agents/issue-tracker.md and replace the <PROJECT-KEY> placeholder with your Jira project key. Verify the key resolves with twg jira space get <PROJECT-KEY> before finishing.

How do I create and manage Jira issues from the command line?

Use twg jira workitem create with --space, --type, --summary, and --description flags. Read issues with twg jira workitem get <KEY> --comments, query with JQL via workitem query, and transition with workitem update --status.

Does gh CLI work with Bitbucket repositories?

No, gh does not work against Bitbucket. Use twg bitbucket (alias twg bb) for pull requests, code, and pipelines; it auto-detects the workspace and repo from the git remote.

Why does twg jira workitem update remove my existing labels?

The plain --labels flag replaces the entire label set. Use --add-labels or --remove-labels to modify labels incrementally without overwriting existing ones.

What is the fallback when twg is not authenticated?

Use the connected Atlassian MCP tools: createJiraIssue, getJiraIssue, searchJiraIssuesUsingJql, addCommentToJiraIssue, editJiraIssue, and transitionJiraIssue. Do not run twg login unless the user explicitly asks.

Why does twg -o json not output plain JSON in a script?

When stdout is a pipe, twg writes a YAML envelope instead of bare JSON and puts the payload in a temp file named by output_files.stdout. Read the envelope first, then read the file it names.