bootproof
Health Warn
- License — License: Apache-2.0
- Description — Repository has a description
- Active repo — Last push 0 days ago
- Low visibility — Only 6 GitHub stars
Code Warn
- fs module — File system access in .github/workflows/receipt-gate.yml
Permissions Pass
- Permissions — No dangerous permissions requested
No AI report is available for this listing yet.
The end of "Works on my machine." BootProof is a zero-trust supervisor that boots any repo and signs cryptographic proof of what actually happened. Built for the developers, and the AI agents, who can't take code on faith. No proof, no green check.
BootProof
BootProof answers one question: did this repository actually boot? Not "did a command run?" Not "did Docker say containers are up?" Not "did an AI agent say it worked?" BootProof inspects a repo, builds an evidence-based run plan, executes only what it can justify, observes real health, and writes a signed attestation for success or failure. No proof, no green check.
The Living Receipt: proof that travels
The Living Receipt is the same evidence as the JSON attestation, rendered as a single self-contained HTML file that re-verifies its own ed25519 signature in your browser with zero network calls. Download it, open it locally, then click Tamper with signature to watch the verdict collapse:
curl -sL https://github.com/bootproof/bootproof/raw/main/assets/living-receipt.html -o proof.bootproof.html
open proof.bootproof.html # macOS; xdg-open on Linux; double-click on Windows
The receipt is signed at the local_developer_signed trust level — it proves integrity-since-signing, not that the signer's machine was honest. The trust ladder (local_developer_signed → ci_oidc_signed → neutral_runner_signed → transparency_logged) is documented in the artifact itself. Generate your own with npx bootproof up <repo> --receipt.
(right-click → Save Link As… → save as
.html → double-click to open)
Quick start: up and verify
cd /path/to/repository
npx bootproof up .
BootProof inspects the repo and either proves it booted or explains why it refused. For explicit local execution with dependency installation:
npx bootproof up . --provider local --unsafe-local --install
Verify a signed attestation:
npx bootproof verify .bootproof/attestation.json
npx bootproof verify . --require-known-signer # CI gating: reject unknown signers
Receipt Gate: CI and AI agents
Receipt Gate is a GitHub Action that blocks PR merges unless BootProof observes a real boot. No proof, no merge.
- uses: bootproof/receipt-gate@v1
with:
path: .
require-health: 'true' # default: observed HTTP health required
Gate your AI agent directly — in .claude/settings.json, make the agent hand you a receipt every time it claims done:
{
"hooks": {
"Stop": [{
"hooks": [{
"type": "command",
"command": "npx -y [email protected] up . --provider local --unsafe-local --json --timeout 60000 > .bootproof-last.json; node -e \"const r=require('./.bootproof-last.json'); console.log(r.booted && r.healthVerified ? '✅ RECEIPT: work boots and answers' : '❌ NO RECEIPT: ' + (r.failureClass||'boot not observed'));\""
}]
}]
}
}
See bootproof/receipt-gate for the full Action and the agent-hook snippet.
Full command surface
Boot a selected workspace
npx bootproof up . --workspace apps/studio
Run in CI/machine mode
npx bootproof up . --ci --json
Verify an existing service
npx bootproof verify-url http://localhost:8001/api/v1/health
Attach external health to the current repo
npx bootproof up . --external-health http://localhost:8001/api/v1/health
Explain an attestation
npx bootproof explain .bootproof/attestation.json
Static infrastructure diff
npx bootproof diff --base main --head HEAD
npx bootproof diff --base main --head HEAD --json
Export a CycloneDX SBOM
npx bootproof export-sbom .
npx bootproof export-sbom . --json
Reads package-lock.json and writes .bootproof/sbom.cdx.json in CycloneDX 1.5 JSON format. Each top-level dependency in the lockfile becomes a library component with a pkg:npm/{name}@{version} purl. The application itself is recorded as the metadata.component. No transitive resolution is performed beyond what the lockfile already records, and no code is executed to produce the SBOM. Repositories without a package-lock.json are refused. The only supported --format value is cyclonedx-json.
Deterministic repair
npx bootproof fix .
Optional BYOK AI repair suggestion
OPENAI_API_KEY=... npx bootproof fix . --ai
or:
ANTHROPIC_API_KEY=... BOOTPROOF_AI_PROVIDER=anthropic npx bootproof fix . --ai
bootproof up remains zero-AI.
Key rotation
bootproof rotate-keys # generate new key, back up old
bootproof rotate-keys --repo . --resign # also re-sign the latest attestation
Demos
Supabase-style stack, verified locally
BootProof treats a Supabase-style stack as something that must be proved, not assumed. It infers the stack, identifies the boot path, starts the services, verifies localhost health, and writes a signed attestation.
GitLab-style repo, AI repair gated by proof
AI coding agents can suggest commands, but they should not be trusted to declare success. This demo shows the BootProof agent loop: AI suggests a repair, BootProof requires approval, runs one bounded step, reruns verification, and writes a receipt showing what changed.
Living Receipt reproduction
The two receipts in the Living Receipt download are real captures from a real bootproof up run — one that boots to HTTP 200, and one that segfaults at runtime. Reproduce them:
# Using the TypeScript CLI — emits the receipt natively
npx bootproof up <any-repo> --provider local --unsafe-local --install --receipt
# Or use the standalone MVP engine (for development/testing)
node scripts/bootproof_up.mjs fixtures/real-booting-app --label "real-booting-app"
# Regenerate the Living Receipt HTML from MVP captures
node scripts/build_living_receipt.mjs \
scripts/records/real-booting-app.json \
scripts/records/real-slop-app.json \
--out assets/living-receipt.html
# Run the smoke test (verifies both native and fallback paths)
node scripts/verify_living_receipt.mjs
The Living Receipt carries PLG hooks: a first-time visitor banner, a "Copy markdown badge" button, a "Download this file" button, and a page-level CTA. See assets/bootproof-badge-template.md for badge snippets and docs/LAUNCH_PLAYBOOK.md for the distribution sequence.
Why BootProof exists
Every developer knows this loop:
git clone some/repo
npm install
npm run dev
Then reality appears.
Wrong Node version. Wrong pnpm version. Missing Java. Missing Clojure. Docker is running but the service is not healthy. Postgres exists but the role does not. Redis is missing. A migration fails. The app starts but nothing responds. A container is “up” but the product is unusable. An AI agent confidently says “done” because a process started.
That is not proof.
BootProof exists because repo onboarding should not depend on hope, terminal archaeology, or fake green checks.
The problem
Modern repositories are no longer simple.
A repo might contain:
- multiple workspaces
- Docker Compose services
- frontend and backend apps
- hidden runtime requirements
- package-manager version constraints
- generated assets
- database migrations
- health endpoints
- undocumented local assumptions
A README can be useful, but it is not proof.
A terminal command can be useful, but it is not proof.
A model response can be useful, but it is not proof.
BootProof turns repo booting into an evidence trail.
The core idea
BootProof separates activity from evidence.
| Weak signal | What BootProof wants instead |
|---|---|
| command exited | observed health |
| process started | reachable endpoint |
| container running | service actually responds |
| README says it works | repo evidence + runtime proof |
| AI says it is done | signed attestation |
| one workspace responded | selected app/workspace proof |
A failed run is still useful if it tells the truth.
✗ NOT VERIFIED — package_manager_version_mismatch
What happened:
The repository requires pnpm 10.24.0, but this environment has pnpm 9.15.4.
Why BootProof refused:
The dependency install cannot be trusted with the wrong package manager version.
Safe next step:
Run corepack enable && corepack prepare [email protected] --activate, then rerun BootProof.
Evidence:
.bootproof/attestation.json
Predictable failure is a feature.
Try it on a public Git repo
BootProof can inspect public HTTPS repositories from GitHub, GitLab, Bitbucket, and Codeberg.
npx bootproof up https://github.com/dubinc/dub
Remote repositories are untrusted code, so BootProof inspects first and refuses execution until you explicitly opt in.
Remote source: https://github.com/dubinc/dub.git
Clone retained at: .bootproof/remotes/github.com/dubinc/dub-*/repo
Inference
application: yes
package manager: pnpm
selected command: pnpm dev
✗ NOT VERIFIED — remote_code_execution_blocked
Why BootProof refused:
Remote repositories are untrusted code and require explicit consent.
To run remote code locally, you must say so explicitly:
npx bootproof up https://github.com/dubinc/dub --provider local --unsafe-local --install
BootProof never silently executes remote code.
What a successful run looks like
✓ install: dependencies installed
✓ start-app: app process started and was supervised
✓ health: observed HTTP 200 at http://localhost:3333
✓ BOOTED — HTTP 200 at http://localhost:3333
Evidence:
.bootproof/attestation.json
A repository is only marked BOOTED when BootProof observes health evidence.
A process start is not enough.
A successful install is not enough.
A Docker container is not enough.
A command exiting is not enough.
What BootProof gives humans
Humans get a readable diagnosis:
NOT VERIFIED — workspace_ambiguous
BootProof detected a root command that starts multiple workspaces in parallel.
Choose a specific application with --workspace <dir>; one responding workspace
is not proof that the whole repository booted.
Example:
npx bootproof up . --workspace apps/studio
BootProof is designed to make failures legible.
It should tell you whether the problem is:
- package-manager mismatch
- skipped install
- missing runtime
- ambiguous workspace
- unsupported orchestration
- allocated port
- failed service
- failed app start
- unhealthy endpoint
- health timeout
What BootProof gives machines
--json emits exactly one bootproof/result/v1 object:
{
"schema": "bootproof/result/v1",
"booted": false,
"healthVerified": false,
"failureClass": "dependency_install_skipped",
"attestationPath": ".bootproof/attestation.json",
"inference": {},
"plan": {},
"observed": []
}
--ci disables colour and interactive prompts.
Exit codes are deterministic:
| Exit code | Meaning |
|---|---|
0 |
booted === true and healthVerified === true |
1 |
refusal, ambiguity, install failure, app failure, service failure, or health failure |
That makes BootProof useful for CI, agent workflows, and repo-quality gates.
Real repo evidence
BootProof has been tested against real repositories, including small apps, monorepos, large platforms, and multi-service stacks.
The point is not to turn every repo green. The point is to produce the correct verdict.
| Repository | Result | What it proved |
|---|---|---|
dubinc/dub |
NOT VERIFIED — remote_code_execution_blocked |
BootProof inspected the repo but refused to execute remote code without explicit consent. |
makeplane/plane |
useful monorepo path | BootProof handled a more complex workspace-style repo and produced actionable evidence. |
airbytehq/airbyte |
refused direct orchestration, then externally verified | Airbyte required abctl, Kind, Helm and a documented local path. BootProof refused to pretend a normal command was enough, then verified the external health endpoint. |
gitlabhq/gitlabhq |
manual boot loop exposed hidden environment assumptions | GitLab showed why large repos need evidence trails rather than README optimism. |
metabase/metabase |
backend health reached, frontend missing | Metabase showed the difference between “backend is alive” and “full UI booted”. |
supabase/supabase |
workspace_ambiguous; manual Compose platform boot |
BootProof correctly refused a fake monorepo-wide green check. The official Docker Compose path booted core services, proving the need for explicit full-platform compose mode. |
Failure is not hidden or relabelled as support.
Evidence stays evidence.
See docs/REAL_REPO_EVIDENCE.md.
Supabase example: why honest failure matters
A fresh BootProof run against supabase/supabase detected:
stack: make-driven, node-frontend, docker-compose
repo compose: docker/docker-compose.yml
workspaces: apps/studio, apps/www, apps/docs, packages/*
selected command: make dev
BootProof refused:
✗ NOT VERIFIED — workspace_ambiguous
The root command starts multiple workspaces in parallel.
One responding workspace would not prove that the whole repository booted.
That refusal is correct.
Manual follow-up through Supabase’s official Docker route proved the platform path:
cd docker
cp .env.example .env
docker compose up -d
Core services such as Kong, Studio, DB, Auth, REST and Pooler reported healthy/running, and localhost:8000 returned Kong/API responses.
The lesson:
BootProof should not fake a monorepo-wide success just because one endpoint responds.
Airbyte example: external verification
Airbyte correctly exceeded BootProof’s direct orchestration boundary.
BootProof refused instead of pretending a normal Gradle, Make, or Compose command was enough. The documented local path required abctl, Kind and Helm. A human followed that runbook and booted the application.
BootProof could then verify the external health endpoint without claiming it started Airbyte.
bootproof verify-url http://localhost:8001/api/v1/health
External verification means:
This endpoint responded.
BootProof did not orchestrate the startup.
That distinction matters.
Verifying attestations: signer tiers
Signature verification reports one of three local signer tiers:
this machine: the artifact was signed by~/.bootproof/signer.json;known: the signer was explicitly pinned in~/.bootproof/known_signers.json;UNKNOWN: the signature is intact, but it proves integrity only and the signer is not trusted.
Unknown foreign signers are never pinned automatically. To deliberately trust an intact
foreign signer, review the printed SHA-256 SPKI fingerprint and run:
npx bootproof verify proof.json --trust-signer
Use --require-known-signer for CI gating. When verification targets a repository directory,
BootProof also compares the attested commit with the repository's current HEAD; --strict
fails on either an unknown signer or a commit mismatch. A valid signature proves the artifact
was not altered after signing. It does not, by itself, prove who produced it.
The agent-in-the-loop model
BootProof is built for a world where humans and AI agents both touch repositories.
The intended loop is:
Diagnose
→ Classify
→ Plan
→ Risk-classify
→ Approve
→ Execute one step
→ Verify
→ Receipt
→ Repeat
AI can suggest.
Humans can approve.
BootProof proves.
The complete autonomous loop is not implemented. Today BootProof exposes four honest modes.
1. Direct orchestration
bootproof up .
BootProof infers a supported local run path, executes it within the selected safety boundary, observes health, and writes an attestation.
Unsupported or ambiguous orchestration is refused.
2. External verification
bootproof verify-url http://localhost:8001/api/v1/health
BootProof observes a service started outside BootProof. Successful evidence is classified as externally verified and never claims BootProof started the app.
3. Agent planning
bootproof plan-agent .
BootProof writes a deterministic, risk-classified plan and a redacted local receipt chain. It does not execute candidate actions, and planning never counts as success.
4. Deterministic repair
bootproof fix .
BootProof maps exact known failures to deterministic repair actions. Mutating commands and patches require explicit approval. Verification decides whether the failure progressed or the application booted.
See:
Deterministic repair
bootproof fix reads the latest signature-valid classified failure and maps exact known failures to deterministic actions.
bootproof fix .
Host and service commands show the exact command, scope and risk. They run only when the user gives explicit approval. JSON and CI modes never approve commands.
Repair receipts distinguish:
- declined
- failed
- progressed
- verified
Machine mode:
bootproof fix . --json
It emits one bootproof/repair-result/v1 object and exits 0 only when a verified receipt exists.
fix never applies file patches directly. To explicitly apply a signature-valid file repair to a local working tree:
bootproof apply-repair .
Application checks the receipt signature, allowed file scope, signed content hashes, and exact current preimages before writing.
Optional BYOK AI
AI suggestions are optional and are only available after no deterministic repair is known.
OPENAI_API_KEY=... bootproof fix . --ai
or:
ANTHROPIC_API_KEY=... BOOTPROOF_AI_PROVIDER=anthropic bootproof fix . --ai
BootProof asks before contacting the provider, sends only redacted structured failure evidence, validates the strict bootproof/ai-repair-suggestion/v1 response through the shared safety model, and asks again before any command or patch is tested.
AI suggestions are recorded as ai_suggested.
They never enter the deterministic registry automatically.
Static infrastructure diff
bootproof diff --base main --head feature-branch
bootproof diff --base main --head HEAD --json
diff reads committed Git objects and performs static analysis only.
It does not:
- check out either ref
- execute repository code
- install dependencies
- read protected
.envcontents - upload data
It reports supported drift in:
- dependency manifests and lockfiles
- Compose services and ports
- environment variable names
- start commands
- package managers
- runtime markers
- detectable health routes
A diff can require fresh proof, but it never claims the head revision boots. Run bootproof up against the intended revision to establish that with observed health evidence.
Honesty contract
BootProof is constrained on purpose.
It will not:
- mark a repo
BOOTEDwithout observed health - execute remote code without explicit consent
- fall back from Docker to host execution silently
- render skipped steps as success
- invent secrets
- write protected
.envfiles - silently patch project code
- guess a workspace when the repo is ambiguous
- claim generated scaffolding exists unless it was written
- upload telemetry or hidden evidence
It will:
- sign successful attestations
- sign failed attestations
- preserve local evidence
- classify known failures
- refuse unsupported paths clearly
Safety model
Execution isolation (read this before running on a repo you don't trust)
BootProof's execution model is honest by default, not isolated by default. There is no general-purpose container sandbox in the current release. Here is exactly what happens when you run bootproof up:
- Default (
--provider docker): BootProof will only execute inside Docker for source-built Compose applications (repos with adocker-compose.ymlwhere the app service is built from source). For every other repo — plain Node, Python, Rust, Go — the Docker provider refuses to run withorchestration_not_supportedrather than silently falling back to the host. This is intentional: the default is fail-closed, not silent host execution. --provider local --unsafe-local: runs install and start commands directly on your host machine usingspawn(command, { shell: true }). There is no container, no network restriction, no read-only filesystem. The--unsafe-localflag is the explicit consent gate — you are acknowledging that you have reviewed the inferred commands and accept that the repo's code (includingpostinstallscripts,prestarthooks, and anything the start command does) will run on your machine with your privileges.- Remote repos (
bootproof up https://github.com/...): BootProof clones for inspection but refuses to execute without--provider local --unsafe-local. Inspection is safe; execution requires consent.
Before running bootproof up --provider local --unsafe-local on a repo you didn't write:
- Run
bootproof up <repo> --dry-runfirst to see the inferred commands without executing them. - Read the plan. The install command and start command will run on your host.
- Only then add
--unsafe-local --installto actually execute.
This is the current truth. General-purpose Docker isolation for non-Compose repos is on the roadmap but is not in this release. If that's a blocker for your use case, do not use BootProof on untrusted repos yet.
Repair safety
BootProof treats repair actions as executable risk.
The repair safety model blocks or escalates dangerous commands before they run.
Blocked examples include:
sudo- shell interpreters
- pipe-to-shell downloads such as
curl | sh - inline arbitrary execution such as
node -e,python -c,ruby -e - recursive world-writable chmod
- raw disk writes
- destructive database drops
- protected
.envwrites - secret exfiltration patterns
High-risk actions require explicit approval and can never be downgraded by AI-provided risk labels.
See docs/DETERMINISTIC_REPAIR_SAFETY_MODEL.md.
Current capabilities
BootProof currently provides:
- Node package-manager and start-command inference
- monorepo candidate ranking
- Docker service dependency detection
- repository Compose detection
- conservative Go main-package execution
- Rails
bin/railsentrypoint detection - explicit Make run-target execution
- Python/Flask and Go/Node hybrid detection
- localhost health-candidate discovery from repo evidence and app logs
- classified failures
- signed Ed25519 attestations
- strict JSON and fail-closed CI output
- redacted registry-entry export
- deterministic sandboxed repairs for registered failure classes
- explicit repair application with signature, scope and stale-preimage checks
- static infrastructure diff
Detection is broader than orchestration. BootProof may detect a stack and still refuse to run it if the proof boundary is not safe or clear.
Supported entrypoints
Supported execution paths are deliberately narrow.
| Type | Supported path |
|---|---|
| Node | package manager + selected start/dev script |
| Go | exactly one main.go or cmd/*/main.go |
| Ruby/Rails | Gemfile plus bin/rails |
| Make | explicit run, serve, server, start, or dev target |
| Compose | repository-local build context with published HTTP port |
Each path still requires observed health.
A successful docker compose up -d, process spawn, or command exit is not a green result by itself.
Failure taxonomy
Common failure classes include:
not_an_applicationworkspace_ambiguousdependency_install_skippedpackage_manager_version_mismatchpython_flask_setup_requiredservice_port_allocatedpostgres_auth_env_missinghealth_http_errorhealth_check_timeoutremote_code_execution_blockedunknown_failure
Unknown failures remain unknown, with evidence preserved for the next detector.
Files BootProof may write
Depending on the command and observed plan, BootProof may write:
.bootproof/attestation.json
.bootproof/registry-entry.json
.bootproof/registry/<timestamp>-<hash>.json
.bootproof/runtime/
docker-compose.bootproof.yml
.env.bootproof.example
Registry artifacts are written only by explicit export commands.
Protected application env files remain untouched.
Attestation trust
Local attestations (the default) contain:
{
"trust": {
"level": "local_developer_signed",
"signer": "local_ed25519",
"oidc": null
}
}
The embedded trust value is an attested claim, not an external identity proof. Local
verification separately classifies the signer as this machine, explicitly known, or unknown
foreign. Repair receipts and registry entries use the same signer tiers.
Local attestations are useful evidence. CI/OIDC attestations are stronger supply-chain proof.
Cryptographic authorship binding through keyless/OIDC is intentionally deferred to the
CI/Action work. BootProof does not pretend local laptop proof is enterprise CI proof.
CI OIDC signing
Inside GitHub Actions with permissions: id-token: write, pass --ci-oidc to fetch the runner's OIDC token and embed its claims in the attestation:
bootproof up . --provider local --unsafe-local --ci-oidc
The attestation then carries ci_oidc_signed trust with the OIDC claims:
{
"trust": {
"level": "ci_oidc_signed",
"signer": "local_ed25519",
"oidc": {
"iss": "https://token.actions.githubusercontent.com",
"sub": "repo:bootproof/bootproof:ref:refs/heads/main",
"repository": "bootproof/bootproof",
"run_id": "123456",
"workflow": "CI",
"job_workflow_ref": "bootproof/bootproof/.github/workflows/ci.yml@refs/heads/main"
}
}
}
The ed25519 signature still provides integrity; the OIDC evidence provides CI provenance. A verifier can independently validate both the signature and the OIDC claims. The neutral_runner_signed and transparency_logged levels remain on the roadmap.
Key rotation
The local signing key can be rotated without invalidating existing attestations (each carries its public key inline and verifies independently):
bootproof rotate-keys # generate new key, back up old
bootproof rotate-keys --repo . --resign # also re-sign the latest attestation
Old keys are archived to ~/.bootproof/archived-keys/ so existing attestations remain verifiable.
What the local key does and does not protect
The local signing key lives at ~/.bootproof/signer.json (0600 permissions; the ~/.bootproof/ directory is 0700). Pinned foreign signers are stored in ~/.bootproof/known_signers.json (also 0600). Archived keys from rotation are stored in ~/.bootproof/archived-keys/ (0600).
The key protects integrity: a valid ed25519 signature proves the attestation was not altered after signing. It does not protect authorship: anyone who obtains this key file can sign attestations that will verify as "this machine." If the key is compromised, bootproof rotate-keys generates a new keypair and archives the old one — but existing attestations signed by the compromised key will still verify as intact (they carry the old public key inline). Rotation prevents future compromise; it does not revoke past signatures.
local_developer_signed has no revocation mechanism. There is no key revocation server, no CRL, no OCSP responder. The trust ladder (local_developer_signed → ci_oidc_signed → neutral_runner_signed → transparency_logged) is the mitigation, not a hidden feature: higher rungs bind signatures to external identities (OIDC, neutral runners, transparency logs) that are harder to forge than a local key file. A verifier who requires --require-known-signer rejects any signer not explicitly pinned, which limits the blast radius of a compromised key to the set of pinned keys.
CI and registry
BootProof does not upload attestations.
A project can deliberately export a redacted local registry entry or federated public-candidate receipt and review it before committing it.
bootproof registry export .
bootproof attest export .
bootproof registry export . --federated
Public crawler, private cloud upload, and OIDC-backed trust are future integrations, not deployed services in this repository.
See:
Open-source boundary
This repository contains the local trust layer:
- local diagnosis
- local planning
- local receipts
- local approvals
- optional BYOK AI suggestions
- deterministic repair safety
- no telemetry
- no automatic upload
The OSS engine works offline and does not require BootProof Cloud.
Cloud boundary
BootProof Cloud belongs in a separate private repository.
Its boundary includes future hosted capabilities such as:
- hosted AI
- shared registry
- team approval workflows
- GitHub App
- SSO/RBAC
- policy
- fleet dashboards
- audit retention
These are product boundaries, not claims that those services are implemented in this public repository.
No Cloud/SaaS code is included here.
Release packaging
The npm package contains the compiled CLI, license, README and docs.
dist/ is required at runtime, generated by npm run build during prepack, and intentionally not committed.
Run:
npm run pack:check
This packs BootProof, installs the tarball in an isolated temporary directory, and exercises the installed CLI.
See docs/RELEASE_CHECKLIST.md.
Development
For contributors working from source:
git clone https://github.com/bootproof/bootproof.git
cd bootproof
npm ci
npm run build
npm test
npm link
Then from another repository:
bootproof up .
Generated files such as dist/, node_modules/, and .DS_Store are ignored and not committed.
What BootProof is not
BootProof is not:
- a deployment platform
- a general CI replacement
- a magic environment fixer
- an AI coding agent
- a guarantee that every repo can be run automatically
- a cloud product hidden inside an OSS repo
- a sandbox or container runtime —
--provider localruns code on your host;--provider dockeronly isolates source-built Compose apps
BootProof is the honest run button for repos.
It runs what it can, refuses what it cannot prove, signs both success and failure, and gives humans and machines the same evidence.
Status
BootProof is early alpha.
Near-term work includes:
- explicit full-platform Compose mode
- stronger multi-service health modelling
- broader deterministic remediation coverage
- more Python, Go, Ruby and Make entrypoints
- CI/OIDC-backed signing
- proof-linked badges
- verified public evidence index
Unsupported paths should fail clearly, not magically.
License
Apache-2.0
Reviews (0)
Sign in to leave a review.
Leave a reviewNo results found