26382a7ac6
CI / Test (macos-latest) (push) Waiting to run
CI / Test (ubuntu-latest) (push) Waiting to run
CI / Test (windows-latest) (push) Waiting to run
CI / Clippy (push) Waiting to run
CI / Build (no embeddings / no ORT) (push) Waiting to run
CI / Format (push) Waiting to run
CI / Cookbook (Node) (push) Waiting to run
CI / Pi Extension (Node) (push) Waiting to run
CI / Rust SDK (lean-ctx-client) (push) Waiting to run
CI / Embed SDK (lean-ctx-sdk) (push) Waiting to run
CI / Python SDK (leanctx) (push) Waiting to run
CI / Hermes Plugin (Python) (push) Waiting to run
CI / SDK Conformance Matrix (push) Waiting to run
CI / Coverage (push) Waiting to run
CI / cargo-deny (push) Waiting to run
CI / Adversarial Safety (push) Waiting to run
CodeQL / Analyze (javascript-typescript) (push) Waiting to run
JetBrains Plugin / Actionlint (push) Waiting to run
CI / Benchmarks (push) Waiting to run
CI / Output-Quality Gate (eval A/B) (push) Waiting to run
CI / Documentation (push) Waiting to run
CI / CI Green (push) Blocked by required conditions
CodeQL / Analyze (actions) (push) Waiting to run
CodeQL / Analyze (rust) (push) Waiting to run
JetBrains Plugin / Validation (push) Waiting to run
JetBrains Plugin / Build (push) Waiting to run
JetBrains Plugin / Test (push) Blocked by required conditions
Security Check / Security Scan (push) Waiting to run
47 lines
1.9 KiB
Plaintext
47 lines
1.9 KiB
Plaintext
# Paths excluded from this repository.
|
|
# Used by .githooks/pre-push to enforce boundaries (and mirrored by the
|
|
# "Proprietary Code Guard" in .github/workflows/security-check.yml).
|
|
# One path per line. Trailing slashes match directories.
|
|
# See docs/contracts/oss-plane-separation-v1.md for the open vs. private policy.
|
|
|
|
# ── Deployment / ops (private) ──
|
|
cloud/
|
|
docker-compose.yml
|
|
.gitlab-ci.yml
|
|
deploy.sh
|
|
website/
|
|
DEVELOPMENT.md
|
|
Makefile.deploy
|
|
|
|
# ── Secrets / host access (private; live credentials — gitignored, must never reach GitHub) ──
|
|
# server.md is the host-access/credentials reference (RUNBOOK §1, §10). It is
|
|
# .gitignored so it can never be staged; listed here too so the pre-push hook and
|
|
# the CI Proprietary Code Guard alarm if it is ever force-added (defense in depth).
|
|
server.md
|
|
|
|
# ── Business / monetization (private; never on the public GitHub mirror) ──
|
|
docs/business/
|
|
memory-bank/
|
|
discord-bot/
|
|
n8n-workflows/
|
|
lab/
|
|
|
|
# ── Commercial plane (lives in the private lean-ctx-cloud repo) ──
|
|
# These modules were relocated out of the open engine (oss-plane-separation-v1).
|
|
# The engine bills nothing and issues no licenses; it only emits the signed
|
|
# savings ledger. Re-adding any of these to the OSS engine is a leak —
|
|
# implement billing/licensing in lean-ctx-cloud instead.
|
|
# NB: core/billing/ stays partially OPEN (metering, plans, mod), so we list the
|
|
# specific commercial files rather than the whole directory.
|
|
# NB: core/licensing/ stays partially OPEN (mod.rs = types + Ed25519 verify,
|
|
# offline.rs = license parsing). Only keygen.rs (issuance with private key)
|
|
# is commercial and belongs in lean-ctx-cloud.
|
|
rust/src/core/license/
|
|
rust/src/core/licensing/keygen.rs
|
|
rust/src/cli/license_cmd.rs
|
|
rust/src/core/billing/success_fee.rs
|
|
rust/src/core/billing/stripe_invoice.rs
|
|
docs/contracts/license-v1.md
|
|
docs/contracts/success-fee-invoice-v1.md
|
|
|