Skip to content

Commit 329ba3e

Browse files
docs(references): daily intelligence update 2026-04-17
- Add GitHub MCP Server v1.0.0 GA milestone to architecture reference - Document new tools: set_issue_fields, resolve_review_thread - Document new toolsets: pull_request_granular, issues_granular - Document list_commits path/since/until params (v0.33.0) - Update MCP Apps: graduated from insiders to feature flag remote_mcp_ui_apps - Add granular toolsets to tools-reference.md toolset table - Add copilot toolset entry to tools-reference.md - Append 2026-04-17 knowledge base entry - Add intelligence report outputs/gh-aw-reports/2026-04-17.md Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 6c88e97 commit 329ba3e

4 files changed

Lines changed: 136 additions & 3 deletions

File tree

.claude/skills/gh-aw-report/knowledge-base.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,25 @@
66
77
---
88

9+
## [2026-04-17] Daily Intelligence Update
10+
11+
### GitHub MCP Server v1.0.0 — GA Release (2026-04-16)
12+
- **First stable major release**: GitHub MCP Server reached v1.0.0 on April 16, 2026
13+
- **`set_issue_fields` tool**: Sets/updates/deletes org-level custom field values on issues; feature-flagged under `issues_granular` toolset
14+
- **MCP Apps feature flag**: `remote_mcp_ui_apps` — MCP Apps UI graduated from insiders-only to a proper feature flag for broader rollout
15+
- **`HeaderAllowedFeatureFlags`**: HTTP mode now validates `X-MCP-Features` header flags via enforcement in v1.0.0
16+
- **modelcontextprotocol/go-sdk v1.5.0** used in v1.0.0
17+
- Source: https://github.com/github/github-mcp-server/releases/tag/v1.0.0
18+
19+
### GitHub MCP Server v0.33.0 additions (2026-04-14)
20+
- **`resolve_review_thread` tool**: Resolves PR review threads
21+
- **`list_commits` new params**: `path`, `since`, `until`
22+
- **Granular OSS toolsets**: `pull_request_granular` and `issues_granular` toolsets now open-source
23+
- **Configurable server name/title** via translation strings
24+
- Source: https://github.com/github/github-mcp-server/releases/tag/v0.33.0
25+
26+
---
27+
928
## [2026-04-14] Bootstrap Entry — Initial Research
1029

1130
### gh-aw CLI

.claude/skills/gh-aw-report/references/gh-aw-architecture.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,13 +73,19 @@ Stable architectural facts about the GitHub Agentic Workflows ecosystem. Used by
7373

7474
### GitHub MCP Server
7575
- **Repository**: `github/github-mcp-server`
76+
- **Current stable version:** v1.0.0 (released 2026-04-16) — first stable major release
7677
- Provides GitHub API tools via MCP protocol
7778
- Used by Claude Code, Copilot, and other MCP-compatible clients
7879
- **Projects toolset:** Consolidated `projects_list`, `projects_get`, `projects_write` tools (~50% token reduction, ~23,000 tokens saved)
79-
- **New tools:** `get_copilot_job_status`, `assign_copilot_to_issue`, `create_pull_request_with_copilot`
80+
- **Copilot tools:** `get_copilot_job_status`, `assign_copilot_to_issue`, `create_pull_request_with_copilot` (in default `copilot` toolset)
8081
- **`base_ref` parameter:** On Copilot PR tools for stacked PR / feature branch workflows
81-
- **Insiders mode:** Opt-in experimental features via `/insiders` URL or config header
82-
- **HTTP mode:** Enterprise deployment with per-request OAuth token forwarding
82+
- **`resolve_review_thread` tool:** Resolve PR review threads (added v0.33.0)
83+
- **`set_issue_fields` tool:** Set/update/delete org-level custom field values on issues (in `issues_granular` toolset, added v1.0.0)
84+
- **Granular toolsets:** `pull_request_granular` and `issues_granular` — OSS toolsets for fine-grained PR/issue operations (added v0.33.0)
85+
- **`list_commits` enhancements:** Added `path`, `since`, and `until` parameters (added v0.33.0)
86+
- **Insiders mode:** Opt-in experimental features via `/insiders` URL or config header (still active for early experiments)
87+
- **MCP Apps:** UI rendering support for select tools; graduated from insiders to feature flag `remote_mcp_ui_apps` (v1.0.0)
88+
- **HTTP mode:** Enterprise deployment with per-request OAuth token forwarding; `X-MCP-Features` header validated via `HeaderAllowedFeatureFlags` (v1.0.0)
8389
- **MCP Gateway:** Centralized access management for MCP servers (v0.1.9 as of 2026-04-14)
8490

8591
### Claude Code
Lines changed: 105 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
# gh-aw Intelligence Report — 2026-04-17
2+
3+
**Generated:** 2026-04-17
4+
**Previous Report:** 2026-04-14
5+
**Pipeline:** Daily Intelligence Sweep
6+
7+
---
8+
9+
## Executive Summary
10+
11+
The most significant development this cycle is **GitHub MCP Server v1.0.0**, released April 16, 2026 — a major milestone marking the first stable release of the GitHub MCP Server. This brings new granular toolsets, feature-flag promotion for MCP Apps, and important changes to how features are gated. No gh-aw CLI releases were detected. The gh-aw ecosystem continues maturing around MCP tooling.
12+
13+
---
14+
15+
## 1. GitHub MCP Server
16+
17+
### 🎉 v1.0.0 — Released April 16, 2026
18+
19+
**Source:** https://github.com/github/github-mcp-server/releases/tag/v1.0.0
20+
21+
The GitHub MCP Server has reached its first stable 1.0.0 release.
22+
23+
**Key changes in v1.0.0:**
24+
- **New `set_issue_fields` tool** — in the `issues_granular` feature-flagged toolset. Allows setting, updating, or deleting organization-level custom field values on issues.
25+
- **MCP Apps promoted to feature flag** — MCP Apps UI support migrated from insiders-only mode to a proper feature flag (`remote_mcp_ui_apps`). Will be rolled out to more users with supported clients over time.
26+
- **`HeaderAllowedFeatureFlags`** — HTTP mode now validates `X-MCP-Features` header feature flags via a new enforcement mechanism.
27+
- **modelcontextprotocol/go-sdk upgraded to v1.5.0**
28+
29+
### v0.33.1 — Released April 14, 2026
30+
31+
**Source:** https://github.com/github/github-mcp-server/releases/tag/v0.33.1
32+
33+
Minor patch on top of v0.33.0.
34+
35+
### v0.33.0 — Released April 14, 2026
36+
37+
**Source:** https://github.com/github/github-mcp-server/releases/tag/v0.33.0
38+
39+
**Key changes in v0.33.0:**
40+
- **Resolve review threads** — New tool to resolve PR review threads (`Feat/resolve review threads`)
41+
- **Configurable server name and title** — via translation strings
42+
- **`list_commits` enhanced** — Added `path`, `since`, and `until` parameters
43+
- **OSS granular PRs and Issues toolsets** — New `pull_request_granular` and `issues_granular` toolsets released as open-source
44+
- **OSS logging adapter for HTTP mode**
45+
- **Initial MCP Insiders Feedback issue template**
46+
- Fix: `additionalProperties` in `push_files` schema
47+
48+
---
49+
50+
## 2. gh-aw CLI
51+
52+
No new releases detected since 2026-04-14. Last known version context from knowledge base: CLI extension at `github/gh-aw`.
53+
54+
---
55+
56+
## 3. GitHub Copilot / Agent Mode
57+
58+
No significant new releases detected in this cycle beyond what was captured in the April 14 report. Architecture reference shows Copilot CLI GA as of February 25, 2026.
59+
60+
---
61+
62+
## 4. GitHub Actions Platform
63+
64+
No breaking changes detected in this cycle.
65+
66+
---
67+
68+
## 5. GitHub Models API
69+
70+
No significant changes detected in this cycle.
71+
72+
---
73+
74+
## 6. Claude Code / MCP Ecosystem
75+
76+
- **modelcontextprotocol/go-sdk** reached v1.5.0 (used in GitHub MCP Server v1.0.0)
77+
- No other notable MCP ecosystem changes detected via available sources.
78+
79+
---
80+
81+
## 7. Community & Patterns
82+
83+
No significant new community patterns or blog posts detected via available sources (web fetch blocked by network firewall in this environment).
84+
85+
---
86+
87+
## 8. Agentic CI/CD
88+
89+
No significant new patterns detected in this cycle.
90+
91+
---
92+
93+
## Gap Analysis Summary
94+
95+
| Gap | Type | File | Description |
96+
|-----|------|------|-------------|
97+
| GAP-1 | outdated | `gh-aw-architecture.md` | MCP Apps insiders mode description outdated — now a feature flag |
98+
| GAP-2 | missing | `gh-aw-architecture.md` | v1.0.0 milestone + new tools not documented |
99+
| GAP-3 | missing | `tools-reference.md` | Granular toolsets (`pull_request_granular`, `issues_granular`) not in toolset table |
100+
| GAP-4 | missing | `knowledge-base.md` | No entry for GitHub MCP Server v1.0.0 |
101+
| GAP-5 | missing | `gh-aw-architecture.md` | `resolve_review_thread` tool and `list_commits` param additions missing |
102+
103+
---
104+
105+
*Report generated by daily-intelligence pipeline. Web search unavailable (network firewall); data sourced from GitHub API.*

skills/aw-author/references/tools-reference.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,9 @@ tools:
111111
| `context` | Repository and event context |
112112
| `repos` | Code, commits, branches, files |
113113
| `issues` | Issue read/analysis |
114+
| `issues_granular` | Granular issue field operations (org custom fields) — feature flag `issues_granular` |
114115
| `pull_requests` | PR read/analysis |
116+
| `pull_request_granular` | Granular PR operations (resolve review threads, fine-grained writes) |
115117
| `users` | User profile information |
116118
| `actions` | Workflow runs, logs |
117119
| `code_security` | Security advisories, scanning |
@@ -127,6 +129,7 @@ tools:
127129
| `secret_protection` | Secret scanning |
128130
| `security_advisories` | Security advisory management |
129131
| `stargazers` | Star information |
132+
| `copilot` | Copilot job management (`get_copilot_job_status`, `assign_copilot_to_issue`, `create_pull_request_with_copilot`) |
130133

131134
### Default Toolsets
132135

0 commit comments

Comments
 (0)