Conversation
Contributor
Reviewer's GuideThis PR refactors and streamlines the Copilot instruction documents across multiple instruction files. It removes outdated headers, unifies section headings and bullet conventions, consolidates repetitive guidance, and reorganizes content into concise, focused overviews for each area (GraphQL, layouts, components, pages, containers, and presentational elements). Class diagram for updated UI component structureclassDiagram
class MoleculeComponent {
+props: MoleculeComponentProps
+index.tsx
+index.test.tsx
+index.stories.tsx
+index.module.css
+README.md
}
class OrganismComponent {
+props: OrganismComponentProps
+index.tsx
+index.test.tsx
+index.stories.tsx
+index.module.css
+README.md
}
MoleculeComponent <|-- OrganismComponent: composed of
class ContainerComponent {
+props: ContainerComponentProps
+dataFetching
+businessLogic
+wraps PresentationalComponent
}
class PresentationalComponent {
+props: PresentationalComponentProps
+UI rendering
+localState
}
ContainerComponent --> PresentationalComponent: wraps
class GraphQLFile {
+queries
+mutations
+fragments
}
ContainerComponent --> GraphQLFile: imports
class PageComponent {
+props: PageComponentProps
+routeMapping
+composes UI from containers/components
}
PageComponent --> ContainerComponent: composes
PageComponent --> PresentationalComponent: composes
class LayoutComponent {
+props: LayoutComponentProps
+routing
+navigation
+sharedUI
}
LayoutComponent --> PageComponent: wraps
LayoutComponent --> ContainerComponent: may wrap
LayoutComponent --> PresentationalComponent: may wrap
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
arif-u-ahmed
pushed a commit
that referenced
this pull request
Nov 4, 2025
Jason/instructions update
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary by Sourcery
Standardize and reorganize Copilot instruction markdown across GraphQL, UI components, layouts, pages, and backend API docs to improve clarity, consistency, and maintainability.
Enhancements: