Thank you for your interest in contributing to our design system documentation! This guide will help you get started with contributing to this open-source project.
By participating in this project, you agree to abide by our Code of Conduct. Please read it before contributing.
- Use our issue templates to report bugs or request features
- Search existing issues before creating a new one
- Provide clear, detailed descriptions with examples when possible
- Open an issue using the feature request template
- Explain the use case and expected behavior
- Consider if the enhancement fits within the design system's scope
We welcome contributions to improve our design system documentation:
- Component documentation: Add new components or improve existing ones
- Pattern documentation: Document reusable design patterns
- Layout guidance: Contribute page-level layout templates
- Accessibility improvements: Enhance accessibility guidelines and examples
- Code examples: Add or improve implementation examples
- Edit directly in GitHub: Use GitHub's web interface to edit markdown files
- Create a branch: Always work on a feature branch for changes
- Request review: Open a pull request when ready for feedback
- Collaborate: Use PR comments for discussion and iteration
- Fork the repository: Click the "Fork" button on GitHub
- Clone your fork:
git clone https://github.com/YOUR-USERNAME/design-system-docs.git - Create a feature branch:
git checkout -b feature/your-feature-name - Make changes: Edit markdown files or add new documentation
- Test locally: Run
bundle exec jekyll serveto preview changes - Submit PR: Push changes and open a pull request for review
- Check existing issues and projects before starting work
- Create or assign issues to avoid overlap with other contributors
- Use clear, descriptive commit messages
- Favor use of the web editor for simple changes to keep things accessible
- For larger changes, work locally and test with Jekyll
- Paste or drag-and-drop images to leverage GitHub's
user-attachmentfeature - Keep page hierarchy as flat as possible, but use logical structure as needed
- For pages with an "Options" section, use the term "Variants" instead
- Front Matter: Delete "parent" and "related" elements if not needed for the file
- Use double space between all elements (except lists)
- Place images after heading and subheading and before paragraphs
- Use empty alt text for component images:
 - Put inline functions in backticks (e.g.,
a!localVariables) - Use
1.for all numbers in ordered lists (sequential numbers rendered automatically) - Use
<br>to break lines within a paragraph - Format code samples properly before copying over
Follow our established file structure:
design-system-docs/
├── components/ # Individual UI components
├── patterns/ # Reusable design patterns
├── layouts/ # Page-level layout templates
├── branding/ # Brand identity elements
├── accessibility/ # Accessibility guidelines
└── content-style-guide/ # Content and writing guidelines
- Create a clear PR title: Use descriptive titles that explain the change
- Fill out the PR template: Provide context and testing information
- Request review: Tag relevant reviewers or use auto-assignment
- Respond to feedback: Address comments and suggestions promptly
- Keep PRs focused: One feature or fix per PR when possible
- Have at least one other person review your changes
- Anyone with write access can merge when ready
- Delete remote branches after merge
- Ruby (version specified in
.ruby-version) - Bundler gem
- Git
# Clone the repository
git clone https://github.com/appian-design/aurora.git
cd design-system-docs
# Install dependencies
bundle install
# Serve the site locally
bundle exec jekyll serve
# View at http://localhost:4000- Always test your changes locally before submitting
- Verify that all links work correctly
- Check that images display properly
- Ensure responsive design works across devices
- Use clear, concise language
- Write in active voice when possible
- Use consistent terminology throughout
- Include practical examples and use cases
Each documentation page should include:
- Clear title and description
- Design guidelines and principles
- Accessibility considerations
- Implementation examples
- Related components or patterns
- Check our existing documentation
- Search through existing issues
- Start a discussion for questions
- Reach out to maintainers for guidance
Thank you for contributing to making our design system documentation better for everyone!