ワンクリックで
github-milestone
Create well-structured GitHub milestones. Use when planning new phases of work that group related issues together.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Create well-structured GitHub milestones. Use when planning new phases of work that group related issues together.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Run the project's verification commands before claiming work complete. Use ALWAYS when finishing a task, claiming work done, committing, or creating a PR. Blocks completion until all checks pass.
Create atomic GitHub issues with clear acceptance criteria. Use when breaking down work into single-iteration tasks that can be picked up and completed independently.
Background knowledge about npm native binary corruption in Docker sandboxes
Laravel invokable controller patterns with Inertia. Use when creating endpoints, adding pages, building CRUD, or when user asks to "create an endpoint", "add a controller", "build a page", "add a store action", "create show page".
Inertia.js page component patterns with TypeScript. Use when creating pages or when user asks to "create a page", "build a component".
Use when taking screenshots, PDFs, or video recordings with agent-browser in a Laravel project. Applies to any visual capture command including screenshot, pdf, and record.
| name | github-milestone |
| description | Create well-structured GitHub milestones. Use when planning new phases of work that group related issues together. |
Milestones group related issues into a phase of work. A well-structured milestone provides context and clear completion criteria.
## Summary
[1-2 sentences providing context for the agent. What does this milestone accomplish?]
## Key Files
- `path/to/relevant/file.php`
- `path/to/another/file.tsx`
## Done When
- [ ] High-level acceptance criterion 1
- [ ] High-level acceptance criterion 2
| Section | Required | Description |
|---|---|---|
| Summary | Yes | Brief context for the agent about the milestone's purpose |
| Key Files | No | Paths to important files the agent should examine |
| Done When | Yes | High-level criteria that determine milestone completion |
## Summary
Add Stripe billing to the app so users can subscribe to plans. Covers checkout, webhook handling, and the billing portal page.
## Key Files
- `app/Http/Controllers/BillingController.php`
- `app/Services/Stripe/`
- `config/services.php`
- `resources/js/Pages/Billing/`
## Done When
- [ ] Users can start a checkout for each plan
- [ ] Subscription state is synced via webhooks
- [ ] Billing portal page shows current plan + invoices
- [ ] Feature tests cover checkout + cancellation
Preferred: gh CLI
gh api repos/{owner}/{repo}/milestones \
--method POST \
-f title="Milestone title" \
-f description="$(cat <<'EOF'
## Summary
Brief context about the milestone.
## Done When
- [ ] Criterion 1
- [ ] Criterion 2
EOF
)"
Fallback: GitHub MCP
If gh CLI is unavailable:
Tool: mcp__github__create_milestone
Parameters:
owner: "<repo-owner>"
repo: "<repo-name>"
title: "Milestone title"
description: "<markdown description following the format above>"