Skip to content

Latest commit

 

History

History
73 lines (49 loc) · 1.9 KB

File metadata and controls

73 lines (49 loc) · 1.9 KB

Contributing

Thanks for contributing to Markster OS.

Ground rules

  • changes to the default branch go through pull requests
  • Validate Markster OS must pass before merge
  • commit messages must follow type(scope): summary
  • do not commit secrets, private client data, local filesystem paths, or internal-only notes
  • keep the repo human-readable and workspace-oriented
  • prefer updating existing canon, docs, and playbooks over inventing new structure

Before you open a PR

  1. run the validator:
python3 tools/validate_markster_os.py
  1. if you changed CLI behavior, compile the Python entry points:
python3 -m py_compile tools/markster_os_cli.py tools/validate_markster_os.py tools/validate_commit_message.py
  1. update CHANGELOG.md for any user-visible change

  2. use a commit subject in this format:

type(scope): summary

Examples:

feat(cli): add workspace sync guard
fix(validation): block internal artifact files
docs(readme): clarify team workspace setup

Allowed types: feat, fix, docs, chore, refactor, test, ci, perf

Allowed prefixes for Git-generated workflows: Merge, Revert, fixup!, squash!

Versioning

Markster OS follows Semantic Versioning.

  • patch: fixes, doc corrections, validation hardening, non-breaking cleanup
  • minor: new playbooks, skills, templates, or commands that are backward compatible
  • major: breaking repo structure, CLI behavior, or workflow expectations

Pull request expectations

  • explain the user-visible change clearly
  • link to the files or workflows affected
  • mention any migration or release note impact
  • keep PRs focused; do not mix unrelated cleanup into feature work

Public-safety rule

This repo is intended for public use.

Never add:

  • secrets or tokens
  • client-identifying information
  • internal company notes
  • local machine paths
  • references to unpublished internal tools or repos