Commit Graph

823 Commits

Author SHA1 Message Date
Aaron Powell
5a23c41ebc Merge pull request #608 from hoodini/feat/add-copilot-sdk-skill
feat(skills): Add GitHub Copilot SDK skill
2026-01-29 14:12:39 +11:00
Aaron Powell
fa6db250a4 Fixing validation script 2026-01-29 14:11:05 +11:00
Aaron Powell
e9f2018ece Configuring for vscode support 2026-01-29 13:50:11 +11:00
Aaron Powell
c8d342cc62 Add tools catalog with YAML schema and website page
- Create website/data/tools.yml with 6 tools:
  - Awesome Copilot MCP Server
  - Awesome GitHub Copilot Browser (VS Code extension)
  - APM - Agent Package Manager (CLI)
  - Workspace Architect (npm CLI)
  - Prompt Registry (VS Code extension)
  - GitHub Node for Visual Studio

- Add .schemas/tools.schema.json for YAML validation
- Update eng/generate-website-data.mjs to generate tools.json
- Add parseYamlFile() to eng/yaml-parser.mjs
- Refactor tools.astro to use external TypeScript module
- Create website/src/scripts/pages/tools.ts with:
  - FuzzySearch integration for search
  - Category filtering
  - Copy configuration functionality
2026-01-29 13:48:42 +11:00
Aaron Powell
36a26b01e1 ci: update deploy workflow for Astro website
- Install both root and website dependencies
- Run website:data to generate JSON files
- Build Astro site in website directory
- Deploy from website/dist
2026-01-29 13:16:23 +11:00
Aaron Powell
1388d0847a flattening the base url 2026-01-29 13:15:21 +11:00
Aaron Powell
0c6ccf3908 feat: use official GitHub Copilot logo in header
- Add Copilot_Icon_White.svg and Copilot_Icon_Black.svg
- Switch between white/black logos based on theme
- Update favicon to use Copilot icon
2026-01-29 10:49:36 +11:00
Aaron Powell
43a1ca1844 style: update colors to GitHub Copilot brand palette
Use official Copilot colors from brand.github.com:
- Primary purple: #8534F3
- Purple variants: #C898FD, #B870FF, #43179E, #26115F
- Orange accents: #FE4C25, #F08A3A, #C53211
- Updated gradients to use purple-to-orange blend
2026-01-29 10:45:39 +11:00
Aaron Powell
10e42f4bed style: fix collection modal spacing and make items more compact 2026-01-29 10:39:41 +11:00
copilot-swe-agent[bot]
c1f10f7dff Add missing imports to Manual Server Control example
Co-authored-by: aaronpowell <434140+aaronpowell@users.noreply.github.com>
2026-01-28 23:38:12 +00:00
Aaron Powell
3bb799616a feat: show collections as item list in modal instead of raw YAML
- Display collection name, description, and tags
- Show clickable list of items in the collection
- Each item shows icon, filename, usage hint, and type badge
- Clicking an item opens that file in the modal
- Hide copy/download buttons for collections (they don't apply)
2026-01-29 10:37:55 +11:00
copilot-swe-agent[bot]
d12b0b43e6 Fix Python async syntax in copilot-sdk-python.instructions.md
Co-authored-by: aaronpowell <434140+aaronpowell@users.noreply.github.com>
2026-01-28 23:36:47 +00:00
copilot-swe-agent[bot]
6af8480939 Initial plan 2026-01-28 23:34:11 +00:00
Aaron Powell
9da53a279e feat: add deep linking support for file modal
- Update URL hash when opening/closing modal (#file=path)
- Handle browser back/forward navigation
- Open modal on page load if hash is present
- Share button now copies deep link URL instead of GitHub URL
2026-01-29 10:34:06 +11:00
Aaron Powell
c052ec05b5 style: remove gradient from page header text for readability 2026-01-29 10:28:23 +11:00
Aaron Powell
82accb2cd6 Some more ts updates 2026-01-29 10:26:03 +11:00
Aaron Powell
d46210b2de fix: make FuzzySearch generic to support typed items
- Add SearchableItem base interface for minimum required fields
- Make FuzzySearch class generic with type parameter
- Update all page scripts to use typed FuzzySearch instances
- Fix type casting in calculateScore method
2026-01-29 09:56:20 +11:00
Aaron Powell
63fb276a6c Tweaking a label set 2026-01-29 09:53:29 +11:00
Aaron Powell
d450d7d3d5 feat: add download and share buttons to list view and modal
- Add Download button to download file as .md file
- Add Share button to copy GitHub link to clipboard
- Both buttons appear in modal header and list view actions
- Use icon-only buttons in list view for cleaner UI
2026-01-29 09:44:31 +11:00
Aaron Powell
009c6c72f8 style: remove VS Code icons from dropdown menu items 2026-01-29 09:37:32 +11:00
Aaron Powell
c378488ceb style: remove icon from install button 2026-01-29 09:35:41 +11:00
Aaron Powell
7e7b5c8610 feat: implement split button dropdown for install options
- Replace separate VS Code/Insiders buttons with single Install dropdown
- Primary 'Install' button opens in VS Code, dropdown chevron reveals options
- Dropdown shows 'VS Code' and 'VS Code Insiders' choices
- Add CSS for split button styling with glassmorphism dropdown
- Apply to modal and all list views (agents, prompts, instructions)
2026-01-29 09:33:49 +11:00
hoodini
855c17a500 chore: Add skill to copilot-sdk collection
Added copilot-sdk skill to the copilot-sdk.collection.yml as requested
by reviewer. Updated generated docs via npm run build.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-29 00:20:44 +02:00
hoodini
67d9708092 feat(skills): Add GitHub Copilot SDK skill
Add comprehensive skill for building agentic applications with the
GitHub Copilot SDK. This skill covers:

- Installation for Node.js, Python, Go, and .NET
- Quick start examples with sendAndWait pattern
- Streaming responses with proper event handling
- Custom tools definition (JSON Schema, Pydantic, Go structs)
- MCP Server integration (GitHub MCP)
- Custom agents for specialized AI personas
- System message customization
- External CLI server connection
- Session persistence and management
- Error handling and best practices
- Interactive CLI assistant examples

Based on official GitHub Copilot SDK documentation from
https://github.com/github/copilot-sdk

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-29 00:19:53 +02:00
Aaron Powell
1887d9ba56 feat: add VS Code install buttons to list views
- Add VS Code and VS Code Insiders install buttons to agent, prompt, and instruction list items
- Use smaller button style for list view
- Include VS Code icon for visual identification
2026-01-28 19:51:35 +11:00
Aaron Powell
d0bcc226ba feat: add VS Code and VS Code Insiders install buttons
- Fix VS Code install URL format to match README links
- Add separate buttons for VS Code and VS Code Insiders
- Support install links for agents, prompts, and instructions
- Add VS Code icon SVG to buttons
2026-01-28 19:45:22 +11:00
Aaron Powell
63f2080694 fix: allow search result descriptions to wrap fully 2026-01-28 17:08:52 +11:00
Aaron Powell
4411eea562 fix: improve homepage search results dropdown styling
- Left-align search results content
- Add proper icon container with background
- Improve spacing and padding
- Add highlight styling for search matches
- Add empty state styling
- Support both .search-result and .search-result-item classes
2026-01-28 17:07:20 +11:00
Aaron Powell
57edb2a34b style: modernize website design with gradients and glassmorphism
- Add gradient backgrounds and accents using purple/pink/cyan palette
- Implement glassmorphism effects on header, cards, and filters
- Add gradient text for headings and stats
- Improve card hover effects with glow shadows and gradient borders
- Update buttons with gradient primary style
- Add subtle pattern overlay on hero section
- Increase spacing and border radius for modern feel
- Update tags with gradient backgrounds
- Add left accent border animation on resource items
- Improve modal with blur backdrop and rounded corners
- Update color palette for both light and dark themes
2026-01-28 17:03:20 +11:00
Aaron Powell
f76f63866a fix: parse featured field from display.featured in collections
The collection YAML files have featured nested under display object,
not at the top level. Updated generate-website-data.mjs to check both
data.featured and data.display?.featured.
2026-01-28 16:56:41 +11:00
Aaron Powell
fbb92dc8aa chore: clean up package.json scripts
- Remove old website:build-old and website:serve-old scripts
- Rename website:build-data to website:data
- Update paths from website-astro to website
- Simplify website:dev and website:build scripts
2026-01-28 16:49:13 +11:00
Aaron Powell
aa42998e29 chore: rename website-astro to website, update gitignore
- Rename website-astro/ to website/
- Add website/dist/ and website/.astro/ to gitignore
- Update generate-website-data.mjs output path
2026-01-28 16:42:32 +11:00
Aaron Powell
4b3bd3d0ad chore: remove old vanilla website implementation
The Astro-based website in website-astro/ replaces the old vanilla
HTML/JS implementation. The old website/ directory is no longer needed.
2026-01-28 16:39:05 +11:00
Aaron Powell
6bcb6ffc37 refactor(website): convert to ES modules with TypeScript
- Replace all inline scripts with TypeScript modules
- Create page-specific modules for agents, prompts, instructions, skills, collections, index
- Create core modules: utils.ts, search.ts, modal.ts, choices.ts, jszip.ts, theme.ts
- Remove window global exports, use proper ES module imports
- Add type interfaces for all data structures
- Use data-base-path attribute on body for base URL handling
- Bundle Choices.js and JSZip via npm instead of CDN
- Astro pages now just have single script import each
2026-01-28 16:38:49 +11:00
Aaron Powell
875219812e Add multi-select filters, light/dark theme, and skill ZIP downloads
- Add multi-select dropdown component for all filter fields
- Implement light/dark theme toggle with system preference detection
- Add client-side ZIP download for skills using JSZip
- Include file lists in skills metadata for download feature
- Add title tooltips to multi-select options for long values
- Update all pages with consistent theme toggle in header
2026-01-28 14:59:19 +11:00
Aaron Powell
f8829be835 feat: Add GitHub Pages website for browsing resources
- Add static website with pages for agents, prompts, instructions, skills, and collections
- Implement client-side fuzzy search across all resources
- Add file viewer modal with copy-to-clipboard and install-to-editor functionality
- Add Tools page for MCP server and future tools
- Add Samples page placeholder for copilot-sdk cookbook migration
- Add metadata JSON generation script (eng/generate-website-data.mjs)
- Add GitHub Actions workflow for automated Pages deployment
- Update package.json with website build scripts
2026-01-28 13:43:41 +11:00
Aaron Powell
2e317e23e5 Merge pull request #609 from VeVarunSharma/develop/add-workiq-copilot-skill
feat: add workiq copilot skill
2026-01-28 11:28:43 +11:00
Aaron Powell
359615d991 Merge pull request #604 from phatpham-katalon/main
feat: add ScoutQA Testing Skill
2026-01-28 11:20:10 +11:00
Ve Sharma
50868c5da3 feat: implement PR feedback for skill 2026-01-25 22:00:26 -05:00
Ve Sharma
e5289a995a feat: update workiq readme skill 2026-01-25 21:42:46 -05:00
Ve Sharma
b6573100c3 feat: add workiq copilot skill 2026-01-25 21:34:50 -05:00
Pham Tien Thuan Phat
f551d7ba29 chore: update readme skill 2026-01-23 13:55:42 +07:00
Pham Tien Thuan Phat
b2c60dfbb1 feat: add Scout skill 2026-01-23 13:49:01 +07:00
Aaron Powell
cfb896c232 Merge pull request #602 from github/remove-chat-mode-references
Cleaning up some legacy around chat modes
2026-01-23 11:07:42 +11:00
Aaron Powell
92dbe54cc6 Cleaning up some legacy around chat modes 2026-01-23 10:51:55 +11:00
Aaron Powell
888fbe6c95 Merge pull request #581 from github/all-contributors/add-anchildress1
add anchildress1 as a contributor for infra, doc, and code
2026-01-23 10:27:43 +11:00
Aaron Powell
45ad6d840f Merge pull request #591 from hashwnath/add-agentic-eval-skill
Add agentic-eval skill for agent evaluation patterns
2026-01-23 10:27:16 +11:00
Aaron Powell
a2525e3112 fix: enhance markdown table cell formatting for descriptions in README and skills 2026-01-23 10:06:44 +11:00
Aaron Powell
06639818f4 Merge pull request #601 from AungMyoKyaw/add-new-skills
Add 8 new skills for development tools and workflows
2026-01-23 09:50:44 +11:00
Aung Myo Kyaw
bc793da5d2 Update README.skills.md after PRD skill simplification
Run npm start to regenerate documentation after simplifying the prd skill.
2026-01-23 00:38:42 +07:00