set-milestone

set-milestone is a skill for Claude Code, Codex from qauth-labs/qauth. It costs 20 tokens per session (460 once invoked), scanned A, original, Apache-2.0.

A procedure for adding, changing, removing, or creating milestones on GitHub issues. A milestone groups issues around a release or other project target.

In plain words
What is it for?
Listing project milestones, assigning or removing one from an issue, creating or updating milestones, closing them, and applying one to several issues.
Why use it?
It makes issue scheduling consistent and avoids manually guessing the commands needed to update milestones.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/qauth-labs/qauth/set-milestone
Any agent
npx skills add qauth-labs/qauth --skill set-milestone
Clone the repo
git clone --depth 1 https://github.com/qauth-labs/qauth

Made for: Claude Code, Codex.

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 set-milestone

README.md
[![agentmods](https://agentmods.dev/badge/skills/qauth-labs/qauth/set-milestone.svg)](https://agentmods.dev/skills/qauth-labs/qauth/set-milestone)
Your own site
<a href="https://agentmods.dev/skills/qauth-labs/qauth/set-milestone"><img src="https://agentmods.dev/badge/skills/qauth-labs/qauth/set-milestone.svg" alt="Measured on agentmods" height="20"></a>
Per session 20 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 460 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00020 $0.00460
Opus 5 $0.00010 $0.00230
Sonnet 5 $0.00004 $0.00092
Haiku 4.5 $0.00002 $0.00046

Measured 5d ago against content hash 6fe8246ac99d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

set-milestone 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 5d 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.

.claude/skills/set-milestone/SKILL.md · 82 lines

What it actually says

Set Issue Milestone

Add or update the milestone on a GitHub issue.

Your Task

Manage milestones on issues.

List Available Milestones

gh api repos/{owner}/{repo}/milestones --jq '.[] | "\(.number): \(.title) (\(.state))"'

Set Milestone on Issue

# Using gh issue edit (recommended)
gh issue edit {issue_number} --milestone "MVP"

Remove Milestone

gh issue edit {issue_number} --remove-milestone

Create New Milestone

gh api repos/{owner}/{repo}/milestones \
  -f title="v1.0" \
  -f description="First release milestone" \
  -f due_on="2026-06-01T00:00:00Z" \
  -f state="open"

Update Milestone

# Get milestone number first
gh api repos/{owner}/{repo}/milestones --jq '.[] | select(.title=="MVP") | .number'

# Update milestone
gh api repos/{owner}/{repo}/milestones/{milestone_number} \
  -X PATCH \
  -f description="Updated description" \
  -f state="open"

Close Milestone

gh api repos/{owner}/{repo}/milestones/{milestone_number} \
  -X PATCH \
  -f state="closed"

Bulk Set Milestone

# Set milestone on multiple issues
gh issue edit 1 2 3 4 5 --milestone "MVP"

Project Milestones

Current milestone is MVP; see github-conventions for the phase list.

Instructions

  1. List available milestones if user is unsure
  2. Use gh issue edit to set the milestone
  3. Confirm the change was applied
  4. For new milestones, use the API to create them first
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. 5d ago First seen · 82 lines · 20 tokens per session scan A 6fe8246ac99d

Subscribe to this mod's changes

set-milestone is a skill published in the GitHub repository qauth-labs/qauth (24 stars, last pushed 5d ago), licensed Apache-2.0. It adds 20 tokens to every session and 460 once invoked, about $0.0001 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-30.