Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion .claude/skills/gh-aw-report/knowledge-base.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
- **Modes**: Plan mode (shows plan first), Autopilot mode (fully autonomous)
- **Background delegation**: prefix prompt with `&` to send to cloud coding agent
- **Sub-agents**: Explore (codebase analysis), Task (build/test), Code Review, Plan
- **Models**: Claude Opus 4.6, Claude Sonnet 4.6, GPT-5.3-Codex, Gemini 3 Pro
- **Models**: Claude Opus 4.6, Claude Sonnet 4.6, GPT-5.3-Codex, ~~Gemini 3 Pro~~ [SUPERSEDED by 2026-04-15 — deprecated 2026-03-26]
- **January 2026 changelog**: Enhanced agents, context management, new install methods

### GitHub Copilot Workspace / Agent Mode (as of 2026-04-14)
Expand Down Expand Up @@ -84,5 +84,25 @@
- Safe Outputs subsystem handles write operations in separate permission-controlled jobs
- Threat detection job runs per-workflow: prompt injection, credential leaks, malicious code

## [2026-04-15] Daily Intelligence Update

### 2026-04-15 -- version -- gh-aw CLI v0.68.3
Released 2026-04-14. Model-not-supported detection, shared import `checkout`/`env` fields, TBT metric, OTEL token breakdowns, 5 push_signed_commits.cjs fixes.

### 2026-04-15 -- version -- GitHub MCP Server v0.33.0/v0.33.1
Comment thread
zircote marked this conversation as resolved.
Released 2026-04-14. Granular PRs/issues toolsets, resolve review threads tool, `list_commits` `path`/`since`/`until` params, configurable server name.

### 2026-04-15 -- deprecation -- Gemini 3 Pro deprecated
Deprecated 2026-03-26 across all GitHub Copilot experiences. Use Gemini 3 Ultra.

### 2026-04-15 -- feature -- Agent HQ and model selection
Agent HQ: multi-vendor agents on GitHub. Model selection for Claude/Codex on github.com (2026-04-14).

### 2026-04-15 -- feature -- Copilot data residency + FedRAMP
US/EU data residency (2026-04-13). FedRAMP Moderate for US gov. `copilot --remote` public preview.

### 2026-04-15 -- ecosystem -- GitHub Actions April changes
Workflow reruns capped at 50 (2026-04-10). OIDC for Dependabot/code scanning. Code scanning→Issues linking. Async SBOM exports.

---
<!-- Append new entries above this line, newest first -->
6 changes: 4 additions & 2 deletions .claude/skills/gh-aw-report/references/gh-aw-architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ that traditional deterministic CI cannot handle.
the agent — they are NOT managed by the CLI
- Two-file structure: a `.md` source and a `.lock.yml` compiled output

## gh aw CLI
## gh aw CLI (v0.68.3 as of 2026-04-14)

Comment thread
zircote marked this conversation as resolved.
Outdated
- Default AI agent: GitHub Copilot CLI
- Supported alternative agents: Claude (Anthropic), Codex (OpenAI), custom agents
Comment thread
zircote marked this conversation as resolved.
Outdated
Expand Down Expand Up @@ -72,6 +72,8 @@ that traditional deterministic CI cannot handle.
- Enterprise: HTTP mode with per-request OAuth token forwarding
- Insiders mode: opt-in experimental features via `/insiders` URL or config header
- Projects toolset: consolidated (reduces ~23,000 tokens/50% token usage)
- **v0.33.0 (2026-04-14):** Granular PRs/issues toolsets, resolve review threads tool, `list_commits` gets `path`/`since`/`until` params
- **v0.33.1 (2026-04-14):** Hotfix release
Comment thread
zircote marked this conversation as resolved.
Outdated

## GitHub Copilot CLI (GA: February 25, 2026)

Expand All @@ -80,7 +82,7 @@ that traditional deterministic CI cannot handle.
- **Plan mode**: shows plan before executing
- **Background delegation**: prefix with `&` to delegate to cloud coding agent
- **Specialized sub-agents**: Explore, Task, Code Review, Plan
- **Model support**: Claude Opus 4.6, Claude Sonnet 4.6, GPT-5.3-Codex, Gemini 3 Pro
- **Model support**: Claude Opus 4.6, Claude Sonnet 4.6, GPT-5.3-Codex, ~~Gemini 3 Pro~~ (deprecated 2026-03-26; use Gemini 3 Ultra)
- Available to all paid Copilot subscribers (Pro, Business, Enterprise)

## GitHub Copilot Workspace / Agent Mode
Expand Down
2 changes: 1 addition & 1 deletion skills/aw-author/references/orchestration.md
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ When specifying `engine.model`, the following values are available as of Copilot
| `copilot` | `claude-opus` | Claude Opus 4.6 — highest reasoning capability |
| `copilot` | `claude-sonnet` | Claude Sonnet 4.6 — balanced speed/capability |
| `copilot` | `gpt-5-codex` | GPT-5.3-Codex — code-optimized |
| `copilot` | `gemini-pro` | Gemini 3 Pro — multimodal |
| `copilot` | `gemini-pro` | ~~Gemini 3 Pro~~ **DEPRECATED 2026-03-26** — use `gemini-ultra` (Gemini 3 Ultra) |
Comment thread
zircote marked this conversation as resolved.
Outdated
| `claude` | *(default)* | Claude Sonnet 4.6 via direct Anthropic API |

For reasoning-heavy patterns (security review, complex triage), prefer `claude-opus` or enable `thinking: true` with the `claude` engine.
Expand Down