project-boards

project-boards is a skill for Claude Code, Codex from saidsef/mcp-github-pr-issue-analyser. It costs 28 tokens per session (1,732 once invoked), scanned A, original, Apache-2.0.

A GitHub Projects assistant for managing project boards. A project board is a shared view where issues and pull requests are organised by status and other fields.

In plain words
What is it for?
Use it to add issues or pull requests to boards, set their fields, inspect board contents, and remove items.
Why use it?
It removes the need to manually find board settings, add work items, and update their fields when organising repository work.

Skill for Claude CodeCodex

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

Good fit Use it to add issues or pull requests to boards, set their fields, inspect board contents, and remove items.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/saidsef/mcp-github-pr-issue-analyser/project-boards
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 saidsef/mcp-github-pr-issue-analyser --skill project-boards
Clone the repo
git clone --depth 1 https://github.com/saidsef/mcp-github-pr-issue-analyser

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-boards

README.md
[![agentmods](https://agentmods.dev/badge/skills/saidsef/mcp-github-pr-issue-analyser/project-boards.svg)](https://agentmods.dev/skills/saidsef/mcp-github-pr-issue-analyser/project-boards)
Your own site
<a href="https://agentmods.dev/skills/saidsef/mcp-github-pr-issue-analyser/project-boards"><img src="https://agentmods.dev/badge/skills/saidsef/mcp-github-pr-issue-analyser/project-boards.svg" alt="Measured on agentmods" height="20"></a>
Per session 28 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,732 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.00028 $0.01732
Opus 5 $0.00014 $0.00866
Sonnet 5 $0.00006 $0.00346
Haiku 4.5 $0.00003 $0.00173

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

Security

Grade A, and why

project-boards 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 7d 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.

src/mcp_github/skills/project-boards/SKILL.md · 165 lines

How it starts

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

Project Boards

Read and change GitHub Projects (v2) boards: what is on one, what each card's fields say, and where an issue sits.

Prerequisites

  • project_owner and project_number, both readable from the board's URL: https://github.com/users/OWNER/projects/NUMBER or https://github.com/orgs/OWNER/projects/NUMBER
  • repo_owner, repo_name and issue_number for the issue or pull request
  • A token that reaches Projects. This is a separate grant from repo: a classic token needs read:project to read and project to write, a fine-grained one needs Projects read and write

The board's owner is not always the repository's owner. An organisation board holding issues from several repositories is the common case, so read project_owner off the board URL rather than assuming it matches repo_owner.

Workflow

Filing an issue and placing it

  1. Call create_issue as usual
  2. Call get_project_fields to see which fields the board has and what each single-select one accepts
  3. Call set_project_field with the field and option names. It puts the issue on the board first if it is not already there, so add_to_project is only needed when no field is being set

Triaging a backlog

  1. Call list_project_items to read every card with its field values
  2. Group by the fields map, for example by Status, to see what is where
  3. Call set_project_field per issue to move it

Taking something off

  1. Call remove_from_project
  2. The issue stays open and untouched. Only the card goes, and the field values it held go with it
  3. Ask the user in chat before removing a card, since the field values cannot be recovered

Tool Parameters

get_project_fields

Parameter Type Description
project_owner str User or organisation that owns the board
project_number int Project number, as it appears in the board's URL

Returns project_number, title, url and fields. Each field carries its id, name, data_type and options. options is empty for anything that is not a single select, which is what tells you set_project_field will refuse it.

Read the full file on GitHub · 165 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. 7d ago First seen · 165 lines · 28 tokens per session scan A c04ea1d99cee

Subscribe to this mod's changes

project-boards is a skill published in the GitHub repository saidsef/mcp-github-pr-issue-analyser (6 stars, last pushed yesterday), licensed Apache-2.0. It adds 28 tokens to every session and 1,732 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-31.

Related

Other skills, from other repositories