github-manage
について
このスキルは、開発者がClaudeを通じてGitHub操作を管理できるようにするもので、タイトル、説明、期日を含むマイルストーンの作成が可能です。GitHub CLIコマンドを使用した認証チェック、リポジトリ情報の取得、マイルストーンの作成を処理します。開発ワークフローから直接、一般的なGitHubリポジトリ管理タスクを自動化するためにご利用ください。
クイックインストール
Claude Code
推奨/plugin add https://github.com/matteocervelli/llmsgit clone https://github.com/matteocervelli/llms.git ~/.claude/skills/github-manageこのコマンドをClaude Codeにコピー&ペーストしてスキルをインストールします
ドキュメント
Manage GitHub operations
When to use this skill
This skill provides specific instructions to manage github on behalf of the user, for:
- Authorization
Create GitHub Milestone
Create a milestone on GitHub with title, description, and optional due date.
Usage
/gh-milestone-create # Interactive mode
/gh-milestone-create "Sprint 3" # With title
/gh-milestone-create "Sprint 3" 2025-11-15 # With title and due date
What it does
- Checks if GitHub CLI is authenticated
- Gets repository information
- Creates milestone with specified details
- Optionally sets due date
- Returns milestone URL and number
Execution
!echo "📋 Creating GitHub milestone..." !gh auth status !gh repo view --json nameWithOwner,url | grep -E 'nameWithOwner|url' !gh milestone create "New Milestone" --description "Milestone description" --due-date 2025-12-31
Interactive Example
For interactive milestone creation with prompts:
!gh api repos/:owner/:repo/milestones -f title="Sprint 3" -f description="Sprint 3 objectives" -f due_on="2025-11-15T23:59:59Z" -f state="open"
Parameters
- title (required): Milestone title
- description (optional): Detailed description of milestone goals
- due-date (optional): Due date in YYYY-MM-DD format
- state (optional): open or closed (default: open)
Examples
Basic milestone
/gh-milestone-create "v1.0 Release"
Milestone with due date
/gh-milestone-create "Q4 Goals" 2025-12-31
Using GitHub API directly
gh api repos/owner/repo/milestones \
-f title="Sprint 4" \
-f description="Complete core features" \
-f due_on="2025-11-30T23:59:59Z"
Listing Existing Milestones
gh milestone list
gh api repos/:owner/:repo/milestones
Requirements
- GitHub CLI (
gh) installed and authenticated - Write access to the repository
- Valid repository context
Tips
- Use clear, action-oriented milestone titles
- Set realistic due dates
- Include objectives in description
- Link issues to milestones for tracking
- Use milestones for sprint planning
- Close milestones when complete
Related Commands
/pr-creation- Create pull requestsgh issue create --milestone "Sprint 3"- Create issue with milestonegh milestone list- List all milestones
GitHub リポジトリ
関連スキル
algorithmic-art
メタThis Claude Skill creates original algorithmic art using p5.js with seeded randomness and interactive parameters. It generates .md files for algorithmic philosophies, plus .html and .js files for interactive generative art implementations. Use it when developers need to create flow fields, particle systems, or other computational art while avoiding copyright issues.
subagent-driven-development
開発This skill executes implementation plans by dispatching a fresh subagent for each independent task, with code review between tasks. It enables fast iteration while maintaining quality gates through this review process. Use it when working on mostly independent tasks within the same session to ensure continuous progress with built-in quality checks.
executing-plans
デザインUse the executing-plans skill when you have a complete implementation plan to execute in controlled batches with review checkpoints. It loads and critically reviews the plan, then executes tasks in small batches (default 3 tasks) while reporting progress between each batch for architect review. This ensures systematic implementation with built-in quality control checkpoints.
cost-optimization
その他This Claude Skill helps developers optimize cloud costs through resource rightsizing, tagging strategies, and spending analysis. It provides a framework for reducing cloud expenses and implementing cost governance across AWS, Azure, and GCP. Use it when you need to analyze infrastructure costs, right-size resources, or meet budget constraints.
