Skip to main content
Settings
Color Mode
Theme Skin
Background

Appearance preferences are saved in this browser only.

Environment
Current Environment Production

Built with JEKYLL_ENV=production. Changes require deployment.

Theme & Build
Jekyll v3.10.0
Last Build Jul 08, 20:42
Page Location
Page Info
Layout default
Collection docs
Path _docs/development/index.md
URL /docs/development/
Date 2026-07-08

Development

Developer guides for contributing to and extending the Zer0-Mistakes Jekyll theme.

Contributing to Zer0-Mistakes

This section provides guides for theme contributors — developers who want to contribute to, extend, or modify the Zer0-Mistakes Jekyll theme itself.

Deep technical reference (architecture, scripts, systems, release automation internals) lives in the docs/ directory in the repository. This section provides the contributor-accessible overview; the docs/ directory has the full technical reference.

Getting Started

Before contributing, ensure you have:

  • Docker Desktop installed (recommended)
  • Git configured with SSH keys
  • Basic understanding of Jekyll and Ruby

Developer Guides

Build & Release

Guide Description
Release Management Semantic versioning, changelog management, and gem publishing
Version Bump Automated version bumping workflow
CI/CD Pipeline Continuous integration and deployment workflows

Quality & Security

Guide Description
Testing Test suite structure and development standards
Security CodeQL scanning and security best practices
Dependency Updates Automated dependency management

Documentation & Tooling

Guide Description
Documentation Dual documentation architecture and workflow
Scripts Shell script automation library
PRD Product requirements document

Quick Commands

# Run all tests
./test/test_runner.sh

# Build the gem
./scripts/build.sh

# Create a release
./scripts/release.sh

# Bump version
./scripts/version.sh patch  # or minor, major

Development Workflow

graph LR
    A[Fork Repo] --> B[Create Branch]
    B --> C[Make Changes]
    C --> D[Run Tests]
    D --> E[Submit PR]
    E --> F[Code Review]
    F --> G[Merge]
    G --> H[Release]

Contributing

  1. Fork the repository
  2. Create a feature branch (feature/my-feature)
  3. Make your changes with tests
  4. Submit a pull request

See CONTRIBUTING.md for detailed guidelines.

See also

  • [[Docker]]
  • [[Jekyll]]
  • [[Customization]]
  • [[Installation]]