Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
4043b0b
[instructions] Sync instruction files: client-id preferred, Serena mi…
github-actions[bot] May 8, 2026
eb4a112
fix: remove redundant double type assertion in validateMCPRequirement…
Copilot May 8, 2026
3a71e13
fix: propagate context in MCPRegistryClient HTTP requests (#30953)
Copilot May 8, 2026
c1390d1
Align `pkg/cli` constructor semantics by making `NewFileTracker` lazy…
Copilot May 8, 2026
8f3a4ab
Add `fields` + `allowed-fields` support to `create_issue` safe output…
Copilot May 8, 2026
ed5b017
chore: bump default Claude/Copilot/Codex/Playwright MCP versions and …
Copilot May 8, 2026
b190ce5
docs: update glossary - daily scan 2026-05-08 (#30998)
github-actions[bot] May 8, 2026
8f69827
Add `set-issue-field` safe output with allowed-fields constraints, sc…
Copilot May 8, 2026
5c82866
Add `github.job` to OTLP resource attributes for all GH Actions span …
Copilot May 8, 2026
0fe6d73
Update slides (#31000)
mnkiefer May 8, 2026
fb462ca
[q] feat(go-fan): publish daily report as issue (automation+cookie) i…
Copilot May 8, 2026
89855b4
Handle `issue_comment` PR context in `submit_pull_request_review` bod…
Copilot May 8, 2026
842a49f
Import shared/observability-otlp.md in most agentic workflows (#30995)
Copilot May 8, 2026
0c3de77
Emit OTLP export error count on all job conclusion spans (#31004)
Copilot May 8, 2026
92b0c3d
Enforce pre-API input validation in experiment state loader (SEC-002)…
Copilot May 8, 2026
2a6bc9d
Render `engine.mcp.tool-timeout` as numeric gateway `toolTimeout` sec…
Copilot May 8, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
5 changes: 3 additions & 2 deletions .github/aw/github-mcp-server.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,9 @@ tools:
github:
toolsets: [default] # or specific toolsets
# Optional: GitHub App authentication
app-id: ${{ vars.APP_ID }}
private-key: ${{ secrets.APP_PRIVATE_KEY }}
github-app:
client-id: ${{ vars.APP_ID }}
private-key: ${{ secrets.APP_PRIVATE_KEY }}
```

> ⚠️ **Do NOT use `mode: remote`** in GitHub Actions workflows. Remote mode does not work with the GitHub Actions token (`GITHUB_TOKEN`) — it requires a special PAT or GitHub App token with MCP access. The default `mode: local` (Docker-based) works with `GITHUB_TOKEN` and should always be used.
Expand Down
4 changes: 2 additions & 2 deletions .github/aw/safe-outputs.md
Original file line number Diff line number Diff line change
Expand Up @@ -948,7 +948,7 @@ Fields that influence permission computation (`add-comment.discussions`, `create
- `github-app:` - GitHub App credentials for minting installation access tokens (object)
- When configured, generates a token from the app and uses it for all safe output operations (alternative to `github-token`)
- Fields:
- `app-id:` - GitHub App ID (required, e.g., `${{ vars.APP_ID }}`)
- `client-id:` - GitHub App client ID (required, e.g., `${{ vars.APP_ID }}`). Use `app-id:` for legacy compatibility.
- `private-key:` - GitHub App private key (required, e.g., `${{ secrets.APP_PRIVATE_KEY }}`)
- `owner:` - Optional App installation owner (defaults to current repository owner)
- `repositories:` - Optional list of repositories to grant access to
Expand All @@ -957,7 +957,7 @@ Fields that influence permission computation (`add-comment.discussions`, `create
```yaml
safe-outputs:
github-app:
app-id: ${{ vars.APP_ID }}
client-id: ${{ vars.APP_ID }}
private-key: ${{ secrets.APP_PRIVATE_KEY }}
create-issue:
```
Expand Down
27 changes: 18 additions & 9 deletions .github/aw/serena-tool.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,21 @@ Serena is a **language service protocol (LSP) MCP server** for semantic code ana

## Configuration

Add to workflow frontmatter:
Import the shared Serena workflow via the `imports:` field — `tools.serena` has been removed:

```yaml
tools:
serena: ["go"] # Specify language(s): go, typescript, python, ruby, rust, java, cpp, csharp
imports:
- uses: shared/mcp/serena.md
with:
languages: ["go"] # Specify language(s): go, typescript, python, ruby, rust, java, cpp, csharp
```

Multi-language repositories:
```yaml
tools:
serena: ["go", "typescript"] # First language is default fallback
imports:
- uses: shared/mcp/serena.md
with:
languages: ["go", "typescript"] # First language is default fallback
```

## Available Serena Tools
Expand Down Expand Up @@ -78,8 +82,11 @@ tools:
**Best practice**: Use bash for discovery, Serena for analysis

```yaml
imports:
- uses: shared/mcp/serena.md
with:
languages: ["go"]
tools:
serena: ["go"]
bash:
- "find pkg -name '*.go' ! -name '*_test.go'"
- "cat go.mod"
Expand All @@ -97,9 +104,11 @@ tools:
Track analysis state across runs:

```yaml
tools:
serena: ["go"]
cache-memory: true # Store analysis history
imports:
- uses: shared/mcp/serena.md
with:
languages: ["go"]
cache-memory: true # Store analysis history
```

Load cache → Analyze new/changed files → Save results → Avoid redundant work
Expand Down
6 changes: 3 additions & 3 deletions .github/aw/syntax.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ The YAML frontmatter supports these fields:
- Mints a single installation access token shared across reactions, status comments, and skip-if queries
- Can be defined in a shared agentic workflow and inherited by importing workflows
- Fields:
- `app-id:` - GitHub App ID (required, e.g., `${{ vars.APP_ID }}`)
- `client-id:` - GitHub App client ID (required, e.g., `${{ vars.APP_ID }}`). Use `app-id:` for legacy compatibility.
- `private-key:` - GitHub App private key (required, e.g., `${{ secrets.APP_PRIVATE_KEY }}`)
- `owner:` - Optional installation owner (defaults to current repository owner)
- `repositories:` - Optional list of repositories to grant access to
Expand All @@ -90,7 +90,7 @@ The YAML frontmatter supports these fields:
issues:
types: [opened]
github-app:
app-id: ${{ vars.APP_ID }}
client-id: ${{ vars.APP_ID }}
private-key: ${{ secrets.APP_PRIVATE_KEY }}
```

Expand Down Expand Up @@ -487,7 +487,7 @@ The YAML frontmatter supports these fields:
- `github-token:` - Custom GitHub token
- `lockdown:` - Enable lockdown mode to limit content surfaced from public repositories to items authored by users with push access (boolean, default: false)
- `github-app:` - GitHub App configuration for token minting; when set, mints an installation access token at workflow start that overrides `github-token`
- `app-id:` - GitHub App ID (required, e.g., `${{ vars.APP_ID }}`)
- `client-id:` - GitHub App client ID (required, e.g., `${{ vars.APP_ID }}`). Use `app-id:` for legacy compatibility.
- `private-key:` - GitHub App private key (required, e.g., `${{ secrets.APP_PRIVATE_KEY }}`)
- `owner:` - Optional installation owner (defaults to current repository owner)
- `repositories:` - Optional list of repositories to grant access to (array)
Expand Down
Loading
Loading