Commit Graph

981 Commits

Author SHA1 Message Date
jun-shiromizu
bf37ce2a0d chore: align README instructions ordering 2026-02-02 13:26:51 +09:00
Aaron Powell
3a7c8ccf1a feat(website): add Nerd Fonts for programming language icons
- Add Monaspace Argon NF font for dev icons
- Update cookbook.yml with unicode codepoints for language icons:
  - TypeScript: \uE628
  - Python: \uE73C
  - C#/.NET: \uF81A
  - Go: \uE626
- Style .lang-tab and .lang-indicator with Nerd Font family
2026-02-02 15:26:24 +11:00
Aaron Powell
9eab4ec6e7 fix(website): use Choices.js wrapper for samples tag filter
Use the same createChoices/getChoicesValues helpers as other pages
for consistent multi-select behavior.
2026-02-02 15:14:45 +11:00
Aaron Powell
b8d93a0344 feat(website): add samples/cookbook page with recipe browser
Integrates the cookbook/ folder into the website's Samples page:

Data Structure:
- Add cookbook/cookbook.yml manifest defining cookbooks and recipes
- Add .schemas/cookbook.schema.json for validation
- Add COOKBOOK_DIR constant to eng/constants.mjs

Build Integration:
- Add generateSamplesData() to generate samples.json from cookbook.yml
- Include recipe variants with file paths for each language
- Add samples count to manifest.json

Website UI:
- Create samples.ts with FuzzySearch, language/tag filtering
- Replace placeholder samples.astro with functional recipe browser
- Recipe cards with language indicators and action buttons
- Language tabs for switching between implementations
- View Recipe/View Example buttons open modal
- GitHub link for each recipe

Features:
- Search recipes by name/description
- Filter by programming language (Node.js, Python, .NET, Go)
- Filter by tags (multi-select with Choices.js)
- 5 recipes across 4 languages = 20 recipe variants
2026-02-02 15:11:12 +11:00
jun-shiromizu
b9157c701a chore: update generated READMEs 2026-02-02 13:06:41 +09:00
jun-shiromizu
37b37162f1 delete: Deleted unnecessary .gitkeep files
Deleted .gitkeep in skills/excalidraw-diagram-generator/libraries/.
2026-02-02 13:05:36 +09:00
jun-shiromizu
a3be150f8e fix: Revised error messages and filename sanitization processing
- Improved error messages within the `find_library_file` function to include directory names
- Organized comments within the `sanitize_filename` function
- Improved error messages within the `split_library` function to include directory names
2026-02-02 13:05:36 +09:00
jun-shiromizu
f57435a965 feat(skills): add excalidraw-diagram-generator skill and docs update 2026-02-02 13:05:36 +09:00
Aaron Powell
23f08bbb63 Merge branch 'main' into experiment/github-pages-website 2026-02-02 14:58:29 +11:00
Aaron Powell
7feee4284e Merge pull request #632 from github/copilot-sdk-cookbook
Migrating SDK cookbook over
2026-02-02 14:52:52 +11:00
Aaron Powell
18cde40ec6 Merge branch 'main' into copilot-sdk-cookbook 2026-02-02 14:45:32 +11:00
Aaron Powell
8605accb01 Merge pull request #633 from github/copilot/sub-pr-632
Fix misleading comment in Python recipe requirements.txt
2026-02-02 14:43:56 +11:00
Aaron Powell
e6c4e0586e Merge pull request #634 from github/copilot/sub-pr-632-again
Fix Prerequisites description in Python cookbook README
2026-02-02 14:43:05 +11:00
copilot-swe-agent[bot]
840523c81b Fix Prerequisites description to accurately reflect PyPI installation
Co-authored-by: aaronpowell <434140+aaronpowell@users.noreply.github.com>
2026-02-02 03:34:40 +00:00
copilot-swe-agent[bot]
e224a128f7 Fix requirements.txt comment to reflect PyPI installation
Co-authored-by: aaronpowell <434140+aaronpowell@users.noreply.github.com>
2026-02-02 03:34:35 +00:00
copilot-swe-agent[bot]
695c60c7ac Initial plan 2026-02-02 03:33:35 +00:00
copilot-swe-agent[bot]
715f433eae Initial plan 2026-02-02 03:33:09 +00:00
Aaron Powell
54ce5c5603 Addressing feedback 2026-02-02 14:01:22 +11:00
Aaron Powell
2f9c59444b fix(website): update button styles and fix dropdown z-index
- Change primary buttons from gradient to solid Copilot Purple (#8534F3)
- Add position:relative and z-index:10 to .filters-bar to fix
  Choices.js dropdown appearing behind resource list items
2026-02-02 13:46:39 +11:00
Aaron Powell
44a43b2336 Merge pull request #620 from torumakabe/add-terraform-azurerm-set-diff-analyzer
Add terraform-azurerm-set-diff-analyzer skill
2026-02-02 12:35:40 +11:00
Aaron Powell
1c42150a3c Merge pull request #630 from alvinashcraft/alvinashcraft/main-add-skill-winapp-cli
feat: Add Windows App Development (winapp) CLI skill
2026-02-02 12:34:28 +11:00
Aaron Powell
e27435ce22 Merge pull request #628 from benjisho/main
Add Linux expert agent, instructions, and triage prompt
2026-02-02 12:33:41 +11:00
Aaron Powell
f73d555749 Merge pull request #627 from DaniBunny/feat/repo-architect-agent
feat: add repo-architect agent for scaffolding agentic projects
2026-02-02 12:31:48 +11:00
Aaron Powell
94a395dbe0 feat(website): add comprehensive accessibility improvements
Phase 1 - Screen Reader Critical:
- Add aria-label to main navigation
- Add accessible names to icon-only buttons (GitHub, theme toggle, close)
- Add aria-hidden to decorative SVGs and emoji icons
- Add role=dialog, aria-modal, aria-labelledby to modal
- Add skip link with visible focus state

Phase 2 - Keyboard Navigation:
- Implement focus trap in modal (Tab/Shift+Tab cycles)
- Return focus to trigger element on modal close
- Replace outline:none with visible focus rings
- Add keyboard navigation to install dropdown (arrows, escape)
- Add aria-expanded to dropdown toggles

Phase 3 - Dynamic Content:
- Add aria-live=polite to results counts and loading states
- Add role=listbox to search results
- Add role=list to resource lists
- Add role=menu/menuitem to dropdown menus

Phase 4 - Forms & Labels:
- Add .sr-only utility class for screen reader text
- Add visually hidden labels to all search inputs
- Add aria-label to filter dropdowns

Files modified:
- BaseLayout.astro, Modal.astro (ARIA attributes)
- modal.ts (focus trap, keyboard navigation)
- global.css (sr-only, skip-link, focus styles)
- All page files (labels, live regions, roles)
2026-02-02 11:52:31 +11:00
Toru Makabe
0e9b933148 Merge branch 'main' into add-terraform-azurerm-set-diff-analyzer 2026-02-02 09:21:16 +09:00
Toru Makabe
a6f3cde999 docs: add prerequisites and troubleshooting to SKILL.md 2026-02-02 08:58:51 +09:00
Aaron Powell
f99c99a5d4 fixing overflow 2026-02-02 10:36:16 +11:00
Aaron Powell
4318aa547f Remove unused src/styles/global.css
The site uses public/styles/global.css via direct link in BaseLayout.
The src/styles version was outdated and never imported.
2026-02-02 10:34:36 +11:00
Aaron Powell
0cabb88035 Enable source maps for JavaScript and CSS
- Add vite.build.sourcemap for production builds
- Add vite.css.devSourcemap for CSS in development
2026-02-02 10:31:19 +11:00
Aaron Powell
f34dbe1581 Merge pull request #626 from verdantburrito/verdantburrito-20260130
Update ASP.NET Core and Problem Details API RFC references
2026-02-02 10:23:45 +11:00
Aaron Powell
b1b3ab377d Fix search results dropdown z-index on home page
Add z-index to .hero-search container so dropdown appears above cards
2026-02-02 10:14:35 +11:00
Aaron Powell
e3894a0b1b Merge resource counts into home page cards
- Remove separate hero-stats section
- Add card-count element to each resource card
- Update JS to populate counts from manifest
- Add card-with-count CSS for layout with count badge
- Reduces vertical space on home page
2026-02-02 10:09:36 +11:00
Aaron Powell
6260cd8272 Prototyping out some plugins 2026-02-02 10:04:02 +11:00
Aaron Powell
d6de5c119e Merge pull request #619 from jhauga/skill-markdown-to-html
Add new skill for custom markdown to html covnersion
2026-02-02 10:03:28 +11:00
Alvin Ashcraft
a11df381d3 Fix quotes 2026-02-01 13:17:07 -05:00
Alvin Ashcraft
a91216ad74 Fix description metadata - from code review 2026-02-01 10:39:03 -05:00
Alvin Ashcraft
d6e7aec622 Update skills readme 2026-02-01 10:28:34 -05:00
Alvin Ashcraft
263935ec9b Create skill for winapp CLI 2026-02-01 10:20:08 -05:00
Benji Shohet
c1cece5306 Refactor code structure for improved readability and maintainability 2026-01-31 21:34:19 +00:00
Benji Shohet
1707c76183 Adjust Linux agent model selections 2026-01-31 23:26:43 +02:00
Benji Shohet
9c11df2445 Add Arch Linux expert resources 2026-01-31 23:26:43 +02:00
DaniBunny
a601d31730 fixed agent getting greedy to do more of what it was asked 2026-01-31 10:44:12 -08:00
Daniel Coelho
c7825d3ac1 Merge branch 'main' into feat/repo-architect-agent 2026-01-31 09:54:53 -08:00
Daniel Coelho
2527d3fe56 Update agents/repo-architect.agent.md
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2026-01-31 09:53:29 -08:00
DaniBunny
33af105a94 feat: add repo-architect agent for scaffolding agentic projects 2026-01-31 09:34:43 -08:00
Jesse Ehrenzweig
206e276610 Updated Problem Details API RFC references (7807 -> 9457) 2026-01-30 12:21:09 -05:00
Jesse Ehrenzweig
74476591c5 Updated ASP.NET Core version references (9 -> 10) 2026-01-30 12:18:32 -05:00
Jcardif
c8a7199032 Update README.skills.md 2026-01-29 17:27:50 +03:00
Jcardif
56c929ffd1 Use single quotes for description field 2026-01-29 17:26:53 +03:00
Jcardif
1928fb0fc0 Add penpot-uiux-design skill
Adds a comprehensive UI/UX design skill for the Penpot MCP server.

Features:
- MCP tool reference (execute_code, export_shape, import_image, penpot_api_info)
- Design system discovery and handling
- Board positioning to avoid overlap
- Default design tokens (spacing, typography, colors)
- Component checklists (buttons, forms, navigation)
- Accessibility guidelines (WCAG compliance)
- Platform specifications (iOS, Android, responsive web)
2026-01-29 17:18:59 +03:00