Skip to main content

High-velocity, zero-friction environment scaffolding.

Project description

Protostar (v0.3.0)

CI Release Python 3.12+ License: MIT

A modular CLI tool for high-velocity environment scaffolding.

Setting up a new project often requires the same manual steps: configuring linters, writing .gitignore and .dockerignore files, setting up virtual environments, and linking IDEs. Protostar automates this boilerplate so you can skip the setup and get straight to writing code.


💡 Design Philosophy

Protostar is built to save you time and stay out of your way. It adheres to a strict separation of concerns to avoid generating bloated artifacts you'll inevitably just delete manually:

  1. init vs. generate: The protostar init command is designed to be run exactly once at the inception of a repository to lay the foundational architecture. The protostar generate command provides discrete, repeatable scaffolding for files you create regularly (like C++ classes or LaTeX reports).
  2. Manifest-First, Side-Effects-Last: Many bootstrapping scripts run a sequence of shell commands and fail unpredictably midway through. Protostar separates state definition from execution. Modules declare their requirements into a centralized EnvironmentManifest. Disk I/O and subprocesses only execute in a single, deterministic phase at the very end.
  3. Fail Loud, Fail Early: Pre-flight checks ensure all system dependencies (like uv, cargo, or direnv) are present before any state is mutated. If a check fails, the environment remains completely untouched.
  4. Non-Destructive by Default: Protostar never blindly overwrites your existing work. It dynamically appends to .gitignore files, intelligently merges IDE JSON configurations, late-binds to generated pyproject.toml configurations, and safely aborts if generated files already exist.

📦 Installation

macOS (Homebrew)

If you are on macOS, you can install via Homebrew:

brew tap jacksonfergusondev/tap
brew install protostar

Universal (uv)

For isolated CLI tool installation on any OS, uv is highly recommended:

uv tool install protostar

Universal (pip)

You can also install it into your active environment using standard pip:

pip install protostar

🚀 Usage

Protostar is designed to be run right after you mkdir a new project.

Basic Environment Initialization

Navigate to your empty directory and specify the languages you are using. The OS and IDE configurations are automatically inferred from your system and global settings.

mkdir orbital-mechanics-sim
cd orbital-mechanics-sim
protostar init --python --cpp

Result: Initializes uv (or pip), scaffolds a Python environment, configures C++ build exclusions, and generates your .vscode/settings.json.

Domain-Specific Presets & Contexts

If you are building a specific type of pipeline, use presets to pre-load standard tools and directory structures without tying yourself to a rigid template. You can also automate context boundaries like Docker, virtual environment activation, and dev tooling.

protostar init --python --astro --docker --direnv -m --mypy --pytest --pre-commit

Result: Installs the Python core environment alongside astrophysics dependencies (astropy, sunpy, gwpy), scaffolds data/catalogs and data/fits, generates optimized .gitignore and .dockerignore files, automatically scaffolds and evaluates a .envrc file, injects a pragmatic .markdownlint.yaml ruleset, resolves mypy and pytest dev dependencies, and generates a modular .pre-commit-config.yaml that auto-installs and updates git hooks tailored exactly to the tools you enabled.

File Generation

For repetitive boilerplate, use the generate subcommand.

protostar generate cpp-class TelemetryIngestor

Result: Safely drops a TelemetryIngestor.hpp and TelemetryIngestor.cpp into your working directory with standard guards and constructors.


🛠 Command Reference

protostar init

Category Flag Description
Language --python, -p Scaffolds a Python environment (uv or pip). Ignores caches and venvs.
Language --python-version Specify the Python version to scaffold (e.g., 3.12). Overrides global configuration.
Language --rust, -r Scaffolds a Rust environment using cargo. Ignores target directories.
Language --node, -n Scaffolds a Node.js/TS environment. Ignores node_modules and dist/.
Language --cpp, -c Configures a C/C++ footprint (ignores build/, *.o, compile_commands.json).
Language --latex, -l Configures a LaTeX footprint (ignores *.aux, *.log, *.synctex.gz).
Preset --scientific, -s Injects foundational computational and statistical libraries.
Preset --astro, -a Injects astrophysics and observational data dependencies.
Preset --dsp, -d Injects digital signal processing, waveform, and MIDI analysis tools.
Preset --embedded, -e Injects host-side embedded hardware interface tools (e.g., pyserial).
Tooling --ruff Scaffolds Ruff linter and formatter alongside pyproject.toml baseline config.
Tooling --mypy Scaffolds Mypy static type checker alongside pyproject.toml baseline config.
Tooling --pytest Scaffolds Pytest testing framework alongside pyproject.toml baseline config.
Tooling --pre-commit Scaffolds and installs a modular .pre-commit-config.yaml based on active languages.
Context --docker Generates a highly optimized .dockerignore based on the environment footprint.
Context --direnv Scaffolds a .envrc and evaluates the virtual environment shell hook automatically.
Context --markdownlint, -m Scaffolds a relaxed .markdownlint.yaml configuration.

protostar generate

Target Example Description
tex proto generate tex report Generates a boilerplate LaTeX file based on your global config preset.
cpp-class proto generate cpp-class Engine Generates a .hpp and .cpp pair with standard boilerplate.
cmake proto generate cmake Generates a CMakeLists.txt statically linking local C++ source files.
pio proto generate pio esp32dev Generates a platformio.ini environment configuration.
circuitpython proto generate circuitpython Generates a code.py non-blocking state machine and LSP configuration.

⚙️ Configuration

You can set global defaults by running protostar config, which opens ~/.config/protostar/config.toml in your system's $EDITOR.

[env]
# Preferred IDE: "vscode", "cursor", "jetbrains", "none"
ide = "vscode"

# Auto-scaffold direnv with python environments
direnv = false

# Preferred Python package manager: "uv", "pip"
python_package_manager = "uv"

# Optional default Python version (e.g., "3.12")
# python_version = "3.12"

# Preferred Node.js package manager: "npm", "pnpm", "yarn"
node_package_manager = "npm"

# Optional dev tool toggles for Python
# no-ruff = true  # Disables the default Ruff scaffolding
# mypy = true
# pytest = true
# pre_commit = true

[presets]
# Generator presets for scaffolding boilerplate
latex = "minimal"

🤝 Collaboration

This tool uses a highly decoupled, plugin-style architecture. The CLI parser dynamically evaluates module registries at runtime.

  • To add support for a new language: Subclass BootstrapModule.
  • To add a new dependency pipeline: Subclass PresetModule.

Both independently append rules to the EnvironmentManifest without requiring modifications to the core orchestration engine. Modules are strictly isolated and interact only via the manifest interface.

We maintain strict engineering standards to ensure reliability:

  • Static Typing: 100% type-hinted, strictly enforced via mypy.
  • Isolated Testing: pytest test suite utilizing tmp_path for disk I/O sandboxing and pytest-mock to prevent host-machine side effects.
  • Formatting & Linting: Automated via ruff in our pre-commit hooks and CI pipelines.

Please see our CONTRIBUTING.md for full details on our development setup, architectural rules, and pull request guidelines. Feel free to open an issue or PR if you'd like to see a specific toolchain supported.

📧 Contact

Jackson Ferguson


📄 License

This project is licensed under the MIT License - see the LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

protostar-0.3.0.tar.gz (77.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

protostar-0.3.0-py3-none-any.whl (36.2 kB view details)

Uploaded Python 3

File details

Details for the file protostar-0.3.0.tar.gz.

File metadata

  • Download URL: protostar-0.3.0.tar.gz
  • Upload date:
  • Size: 77.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for protostar-0.3.0.tar.gz
Algorithm Hash digest
SHA256 b7ae0ae2f0dbddd7929a6f0c158e3771aba0c73ae44f21a1485d89fddb9a4d46
MD5 b30fa1ad67f52760593c9c2dffcaa6f3
BLAKE2b-256 fb774fce0ce5b33f6bb6cd5df7f6fa3a9f9e95dae08cac8a210110f801b258de

See more details on using hashes here.

Provenance

The following attestation bundles were made for protostar-0.3.0.tar.gz:

Publisher: release.yml on JacksonFergusonDev/protostar

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file protostar-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: protostar-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 36.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for protostar-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 fb648ecc33a7c3b1896e5f60c312ad606d3d8a7e9e7c3137c30b8181a15737f9
MD5 12ca9d81a13f5147b4f80a479d92949a
BLAKE2b-256 46cfedb081d215613aab1b65c9d186cc45ddb6220be7adf2c1c437c7ce23009a

See more details on using hashes here.

Provenance

The following attestation bundles were made for protostar-0.3.0-py3-none-any.whl:

Publisher: release.yml on JacksonFergusonDev/protostar

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page