project-setup-automation

project-setup-automation is a skill for Claude Code, Codex from fideguch/my_pm_tools. It costs 0 tokens per session (2,728 once invoked), scanned A, original, MIT.

A setup guide for GitHub Projects V2, GitHub's system for organizing work on project boards.

In plain words
What is it for?
Use it to set up statuses, views, custom fields, labels, templates, and GitHub Actions for a repository's project board.
Why use it?
It creates the board structure and automation needed for a consistent development workflow instead of configuring each part manually.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is ./scripts/setup-labels.sh "$REPO".

Good fit Use it to set up statuses, views, custom fields, labels, templates, and GitHub Actions for a repository's project board.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/fideguch/my_pm_tools
agentmods
npx agentmods add skills/fideguch/my_pm_tools/project-setup-automation

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 project-setup-automation

README.md
[![agentmods](https://agentmods.dev/badge/skills/fideguch/my_pm_tools/project-setup-automation.svg)](https://agentmods.dev/skills/fideguch/my_pm_tools/project-setup-automation)
Your own site
<a href="https://agentmods.dev/skills/fideguch/my_pm_tools/project-setup-automation"><img src="https://agentmods.dev/badge/skills/fideguch/my_pm_tools/project-setup-automation.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,728 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00000 $0.02728
Opus 5 $0.00000 $0.01364
Sonnet 5 $0.00000 $0.00546
Haiku 4.5 $0.00000 $0.00273

Measured 8d ago against content hash 234564f228c4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

project-setup-automation scanned grade A with 1 finding 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 8d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

Classic PAT を使って直接 curl で実行(gh CLI はプロキシ経由で別トークンになるため):
skills/project-setup-automation/SKILL.md · 238 lines

How it starts

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

GitHub Projects V2 環境自動構築スキル

メタデータ

  • トリガー: 「GitHub Project環境構築」「プロジェクトボード設定」「14ステータス設定」「!my_pm_tools」
  • 前提条件: gh CLI 認証済み、Classic PAT(ghp_)取得済み、スコープ project,repo,read:org

概要

GitHub Projects V2 の開発環境を一括構築するスキル。 14ステータスワークフロー、5ビュー、カスタムフィールド、ラベル13種、 テンプレート、GitHub Actions 自動化を段階的にセットアップする。

重要: Projects V2 の GraphQL API 操作には Classic PAT(ghp_トークン) が必須。 Fine-grained PAT は個人ユーザー所有の Projects V2 に非対応。


Phase 1: 事前確認

1.1 認証確認

# gh CLI 認証状態
gh auth status

# project スコープがない場合
gh auth refresh --scopes "project,repo,read:org"

1.2 リポジトリ・プロジェクト情報取得

# ユーザーに OWNER/REPO と PROJECT_NUMBER を確認
OWNER="<owner>"
REPO="<owner/repo>"
NUMBER=<project_number>

# プロジェクト一覧
gh project list --owner "$OWNER"

# プロジェクト詳細
gh project view "$NUMBER" --owner "$OWNER"

1.3 プロジェクトID取得(GraphQL)

Classic PAT を使って直接 curl で実行(gh CLI はプロキシ経由で別トークンになるため):

PAT="ghp_XXXXX"

PROJECT_ID=$(curl -s -H "Authorization: bearer $PAT" https://api.github.com/graphql \
  -d "{\"query\":\"query { user(login: \\\"$OWNER\\\") { projectV2(number: $NUMBER) { id } } }\"}" \
  | python3 -c "import sys,json; print(json.load(sys.stdin)['data']['user']['projectV2']['id'])")

echo "Project ID: $PROJECT_ID"

Phase 2: カスタムフィールド作成

# Priority (Single Select)
gh project field-create "$NUMBER" --owner "$OWNER" \
  --name "Priority" --data-type "SINGLE_SELECT" \
  --single-select-options "P0 - 即日着手,P1 - 高 (1〜3営業日),P2 - 中 (スプリント内),P3 - 低 (時間あれば),P4 - 未定 (保留中)" \
  2>/dev/null || echo "Priority: 既に存在(スキップ)"

# Estimate (Number)
gh project field-create "$NUMBER" --owner "$OWNER" \
  --name "Estimate" --data-type "NUMBER" \
  2>/dev/null || echo "Estimate: 既に存在(スキップ)"

# Target (Text)
gh project field-create "$NUMBER" --owner "$OWNER" \
  --name "Target" --data-type "TEXT" \
  2>/dev/null || echo "Target: 既に存在(スキップ)"

Sprint (Iteration) フィールド

gh CLI では直接作成不可。GraphQL API で作成:

curl -s -H "Authorization: bearer $PAT" https://api.github.com/graphql \
  -d "{\"query\":\"mutation { createProjectV2IterationField(input: { projectId: \\\"$PROJECT_ID\\\", title: \\\"Sprint\\\", settings: { duration: 7 } }) { field { id name } } }\"}"

Read the full file on GitHub · 238 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. 8d ago First seen · 238 lines · 0 tokens per session scan A 234564f228c4

Subscribe to this mod's changes

project-setup-automation is a skill published in the GitHub repository fideguch/my_pm_tools (1 stars, last pushed 1mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 2,728 tokens. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

daily-briefing

Start your day with a prioritized CRM briefing — works for any monday CRM setup: pipeline, contacts, accounts, leads, or no board at all. Use when someone says 'morning briefing', 'daily brief', 'what's on my plate today', 'catch me up on my deals', 'what needs attention', 'what needs my attention', 'anything urgent…

mondaycom/mcp · 106 tokens

meeting-to-deal

Turn meeting transcripts into deal updates — key points, commitments, and next steps posted to matching CRM deals automatically. Auto-creates contacts for new attendees. Use when someone says "log my meetings to deals", "update CRM from calls", "what did I commit to in meetings", "sync notetaker", "log this meeting"…

mondaycom/mcp · 107 tokens

log-activity

Log calls, meetings, notes, and other activities to CRM item timelines — structured records with attendees, outcomes, and follow-ups. Use when someone says "log my call with", "add a note to the deal", "what activities happened on", "record this meeting", "update my note on", "track a call with", "log a meeting with"…

mondaycom/mcp · 111 tokens

Technical Debt Tracking with PMAT

Tracks and manages technical debt using PMAT (Pragmatic AI Labs MCP Agent Toolkit). Use this skill when: User asks about technical debt, TODO comments, or code quality issues Planning sprint work and need to prioritize debt repayment Conducting code audits or technical debt assessments Tracking debt accumulation…

paiml/paiml-mcp-agent-toolkit · 123 tokens

evaluate

Evaluate requirements, feature requests, and task intake against project DDD context. Produces a GO/DEFER/REJECT/ESCALATE recommendation with ROI scoring, scope definition, and acceptance criteria. TRIGGER: "evaluate this request", "should we build this", "assess this requirement", "triage this". NOT FOR…

xg-gh-25/SwarmAI · 79 tokens

pipefy-pipes-and-cards

Use this skill when the user wants to read, create, update, or delete pipes, phases, phase fields, labels, cards, comments, or field conditions. Covers 40 MCP tools for the core pipe and card lifecycle. Use the seed-pipe-across-phases workflow when populating empty phases for demos or QA.

pipefy/ai-toolkit · 74 tokens