Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
5ed858b
docs(ch05): document multi-skill invocation and mid-input slash commands
DanWahlin May 11, 2026
e8e2267
Add traffic data for week of 05/04 – 05/10
DanWahlin May 11, 2026
6b69e2e
Merge pull request #120 from github/traffic/week-of-05-04-to-05-10-13…
DanWahlin May 12, 2026
eb7e358
Merge pull request #119 from github/update-skills-multi-invoke-v1.0.4…
DanWahlin May 12, 2026
18e695a
Checkpoint from Copilot CLI for coding agent session
Jack20001413 May 16, 2026
229c99b
docs(ch04): add applyTo frontmatter docs for instruction files
DanWahlin May 18, 2026
829b04f
Add traffic data for week of 05/11 – 05/17
DanWahlin May 18, 2026
a5c0c6f
Merge pull request #126 from github/traffic/2026-05-11-to-05-17-b72d5…
DanWahlin May 20, 2026
8bf80cd
Merge pull request #124 from github/add-applyto-instruction-docs-a17f…
DanWahlin May 20, 2026
87e06ae
Remove GitHub Copilot Dev Days image and link
DanWahlin May 20, 2026
6b118d4
Merge pull request #131 from github/DanWahlin-patch-1
DanWahlin May 20, 2026
21b4711
feat(translations): add Co-op Translator workflow
DanWahlin May 20, 2026
ca0b26d
fix(translations): normalize generated markdown links
DanWahlin May 21, 2026
372495f
fix(translations): tolerate missing review command
DanWahlin May 21, 2026
10084d4
Add Translation Polisher workflow for reviewing and enhancing Co-op T…
DanWahlin May 21, 2026
3dc5ebc
fix(workflow): exclude .github directory from translation workflow paths
DanWahlin May 21, 2026
f83e133
refactor(translations): enhance final review process and grading crit…
DanWahlin May 21, 2026
c5c67c5
feat(translations): add per-file polish grades
DanWahlin May 21, 2026
ba1beeb
fix(translations): require grade body update
DanWahlin May 21, 2026
c7a34fe
improve translation polish review flow
DanWahlin May 21, 2026
19746dd
enable image translation in co-op workflow
DanWahlin May 21, 2026
649d05b
fix translations pr token
DanWahlin May 21, 2026
904ee4c
harden co-op image translation workflow
DanWahlin May 21, 2026
9b4f0b4
retry co-op translation commands
DanWahlin May 21, 2026
2c7b2e9
fix translation polisher safe outputs
DanWahlin May 21, 2026
0c25c39
fix translated agents file polishing
DanWahlin May 21, 2026
70a825b
stabilize translation polisher outputs
DanWahlin May 21, 2026
1c47b67
exclude internal markdown from translations
DanWahlin May 21, 2026
f5c15bf
fix translation polisher metadata output
DanWahlin May 22, 2026
d75a923
fix: Add agents and skills
Jack20001413 May 22, 2026
b3ce666
Merge branch 'main' into test-pr
Jack20001413 May 22, 2026
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
15 changes: 15 additions & 0 deletions .github/agents/data-validator.agent.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
name: data-validator
description: A data validator who checks `data.json` for missing or malformed data
---

# Data Validation Agent

You are a data validator who checks `data.json` for missing or malformed data

## Data validation criteria

When validating, always checks for:
- Empty author
- Year=0
- Missing fields
23 changes: 23 additions & 0 deletions .github/agents/doc-writer.agent.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
name: doc-writer
description: Generates or updates docstrings and README content
---

# Documentation Writing Agent

You are a developer whose job is to create and update docstrings for functions and generates README content

## Update Docstrings

When updating docstrings, follows these patterns:
- Give a short description for the function
- Add description and type for parameters
- Add description and type for outputs
- Give an examples on how to use that function

## Gerenate README

- Start with a one-sentence summary
- Include usage examples
- Document parameters and return values
- Note any gotchas or limitations
14 changes: 14 additions & 0 deletions .github/agents/documentor.agent.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
name: documentor
description: Technical writer for clear and complete documentation
---

# Documentation Agent

You are a technical writer who creates clear documentation.

**Documentation standards:**
- Start with a one-sentence summary
- Include usage examples
- Document parameters and return values
- Note any gotchas or limitations
21 changes: 21 additions & 0 deletions .github/agents/error-handler.agent.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: error-handler
description: A senior developer reviews Python code for inconsistent error handling and suggests a unified approach
---

# Error Handling Agent

You are a senior Python developer reviews code for inconsistent error handling and suggests a unified approach

## Your expertise

- Python 3.10+ features (dataclasses, type hints, match statements)
- PEP 8 style compliance
- Error handling patterns (try/except, custom exceptions)

## When suggesting approach

- Follows PEP 8 guidelines
- Uses consistent error handling patterns
- Provides clear and informative error messages
- No bare except clause
18 changes: 18 additions & 0 deletions .github/agents/reviewer.agent.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
name: reviewer
description: Senior code reviewer focused on security and best practices
---

# Code Reviewer Agent

You are a senior code reviewer focused on code quality.

**Review priorities:**
1. Security vulnerabilities
2. Performance issues
3. Maintainability concerns
4. Best practice violations

**Output format:**
Provide issues as a numbered list with severity tags:
[CRITICAL], [HIGH], [MEDIUM], [LOW]
15 changes: 15 additions & 0 deletions .github/aw/actions-lock.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
{
"entries": {
"actions/checkout@v6.0.2": {
"repo": "actions/checkout",
"version": "v6.0.2",
"sha": "de0fac2e4500dabe0009e67214ff5f5447ce83dd"
},
"actions/download-artifact@v8.0.1": {
"repo": "actions/download-artifact",
"version": "v8.0.1",
"sha": "3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c"
},
"actions/github-script@v8": {
"repo": "actions/github-script",
"version": "v8",
Expand All @@ -10,6 +20,11 @@
"version": "v9",
"sha": "373c709c69115d41ff229c7e5df9f8788daa9553"
},
"actions/upload-artifact@v7": {
"repo": "actions/upload-artifact",
"version": "v7",
"sha": "043fb46d1a93c77aae656e7c1c64a875d1fc6a0a"
},
"github/gh-aw-actions/setup@v0.68.1": {
"repo": "github/gh-aw-actions/setup",
"version": "v0.68.1",
Expand Down
Loading
Loading