-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Learning hub #821
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Learning hub #821
Changes from 20 commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
a124e13
feat: migrate learning-hub articles into Astro website
aaronpowell ba7f608
feat: add before/after customization examples article to learning hub
aaronpowell 6bb0242
feat: add terminology glossary and split learning hub into Fundamenta…
aaronpowell 867650f
feat: add sticky sidebar navigation to learning hub articles
aaronpowell 57634b6
feat: move samples into learning hub as Cookbook
aaronpowell 3f84820
Merge branch 'staged' into learning-hub
aaronpowell a01f3d8
docs: replace prompts with skills across Learning Hub
aaronpowell 9ca197d
fix: align Learning Hub card layout on homepage
aaronpowell cb8287b
docs: add 4 new Learning Hub articles for agents, MCP, hooks, coding …
aaronpowell 48ca6b2
docs: update cross-references and glossary for new articles
aaronpowell 2d75b44
feat: add sticky sidebar navigation to Learning Hub index
aaronpowell a88c9f8
style: add subtle borders to tables in Learning Hub articles
aaronpowell 31c41a6
fix: align hooks docs with official GitHub Copilot hooks spec
aaronpowell 9d4e024
docs: expand coding agent article with custom agents, skills, and rep…
aaronpowell 4b25ed4
docs: add Learning Hub article on installing and using plugins
aaronpowell 1752caf
docs: Updating how you mention files to be cross-tool
aaronpowell 0758c95
docs: fixing links
aaronpowell e0636e8
fix: resolve 27 broken links across Learning Hub articles
aaronpowell 0637cad
refactor: extract Learning Hub article ordering into shared config
aaronpowell d73c0bb
Apply suggestions from code review
aaronpowell 99a7ef8
Apply suggestions from code review
aaronpowell File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| // Shared article ordering for the Learning Hub. | ||
| // Used by both the index page and the article sidebar layout. | ||
|
|
||
| export const fundamentalsOrder = [ | ||
| 'what-are-agents-skills-instructions', | ||
| 'understanding-copilot-context', | ||
| 'copilot-configuration-basics', | ||
| 'defining-custom-instructions', | ||
| 'creating-effective-skills', | ||
| 'building-custom-agents', | ||
| 'understanding-mcp-servers', | ||
| 'automating-with-hooks', | ||
| 'using-copilot-coding-agent', | ||
| 'installing-and-using-plugins', | ||
| 'before-after-customization-examples', | ||
| ]; | ||
|
|
||
| export const referenceOrder = [ | ||
| 'github-copilot-terminology-glossary', | ||
| ]; | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| import { defineCollection, z } from "astro:content"; | ||
| import { glob } from "astro/loaders"; | ||
|
|
||
| const learningHub = defineCollection({ | ||
| loader: glob({ pattern: "**/*.md", base: "./src/content/learning-hub" }), | ||
| schema: z.object({ | ||
| title: z.string(), | ||
| description: z.string(), | ||
| authors: z.array(z.string()).optional(), | ||
| lastUpdated: z.string().optional(), | ||
| estimatedReadingTime: z.string().optional(), | ||
| tags: z.array(z.string()).optional(), | ||
| relatedArticles: z.array(z.string()).optional(), | ||
| prerequisites: z.array(z.string()).optional(), | ||
| }), | ||
| }); | ||
|
|
||
| export const collections = { | ||
| "learning-hub": learningHub, | ||
| }; |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.