ticket-create

ticket-create is a skill for Claude Code from lttr/claude-marketplace. It costs 69 tokens per session (2,774 once invoked), scanned A, original, MIT.

A skill for creating Azure DevOps work items such as technical tasks, user stories, and bugs. Azure DevOps is a project-management platform, and the skill creates Markdown-formatted descriptions while setting links, ownership areas, iterations, and tags.

In plain words
What is it for?
Use it to create a new Azure DevOps ticket, including its description, parent relationship, area, iteration, and tags, in one request.
Why use it?
It avoids manual work-item setup and preserves Markdown formatting that the standard command may not keep correctly.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the dev-azdo plugin — 8 skills, 1 MCP server shipped together

Good fit Use it to create a new Azure DevOps ticket, including its description, parent relationship, area, iteration, and tags, in one request.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/lttr/claude-marketplace/ticket-create
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add lttr/claude-marketplace --skill ticket-create
Clone the repo
git clone --depth 1 https://github.com/lttr/claude-marketplace

Made for: Claude Code.

Or install dev-azdo, the plugin that ships this one along with the rest of its 8 skills, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for ticket-create

README.md
[![agentmods](https://agentmods.dev/badge/skills/lttr/claude-marketplace/ticket-create/github.svg)](https://agentmods.dev/skills/lttr/claude-marketplace/ticket-create)
Your own site
<a href="https://agentmods.dev/skills/lttr/claude-marketplace/ticket-create"><img src="https://agentmods.dev/badge/skills/lttr/claude-marketplace/ticket-create/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for ticket-create

Your own site · 80×15
<a href="https://agentmods.dev/skills/lttr/claude-marketplace/ticket-create"><img src="https://agentmods.dev/badge/skills/lttr/claude-marketplace/ticket-create.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 69 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,774 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00069 $0.02774
Opus 5 $0.00034 $0.01387
Sonnet 5 $0.00014 $0.00555
Haiku 4.5 $0.00007 $0.00277

Measured 10d ago against content hash 260c58f48d92, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

ticket-create scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/dev-azdo/skills/ticket-create/SKILL.md · 214 lines

How it starts

The opening of the file, as written. The whole thing — 214 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Create AzDO Work Item (Markdown-aware)

az boards work-item create stores --description as HTML with no flag to override. To get a Markdown-rendered description, create the item via az rest POST with a JSON-Patch body that includes /multilineFieldsFormat/System.Description = "Markdown" alongside the field op. The format cannot be flipped reliably after creation. To convert an existing HTML item, delete and recreate.

Step 1: Resolve org and project (always first)

Shell variables do not survive between Bash calls, so resolve these once, read the printed values, and paste the literals into every later command. Never carry $BASE across calls.

# cut -f2- + sed, not `tr -d ' '`. AzDO project names may contain spaces.
TRIM="s/^ *//; s/ *$//"
ORG_URL="${AZDO_ORG_URL:-$(az devops configure --list | grep '^organization' | cut -d= -f2- | sed "$TRIM")}"
PROJECT="${AZDO_PROJECT:-$(az devops configure --list | grep '^project' | cut -d= -f2- | sed "$TRIM")}"
: "${ORG_URL:?no organization, set AZDO_ORG_URL or run az devops configure --defaults}"
: "${PROJECT:?no project, set AZDO_PROJECT or run az devops configure --defaults}"
echo "ORG_URL=$ORG_URL"
echo "BASE=$ORG_URL/$PROJECT/_apis/wit"

If this command aborts with either :? message, stop and ask the user for their AzDO organization URL and project. They are team-specific. Never guess them, never fall back to an org name seen elsewhere in the repo or conversation. How the user persists the values (env var, az devops configure --defaults) is their call.

The two constants below are fixed and can be typed literally. They need no resolution step:

Constant Value Why
resource id 499b84ac-1321-427f-aa17-267ca6975798 AzDO's fixed Azure AD app id, same for every org. Without --resource, az mints an ARM token and the call fails with TF400813.
api version 7.1

Read the full file on GitHub · 214 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 214 lines · 69 tokens per session scan A 260c58f48d92

Subscribe to this mod's changes

ticket-create is a skill published in the GitHub repository lttr/claude-marketplace (2 stars, last pushed today), licensed MIT. It adds 69 tokens to every session and 2,774 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.