Thanks for your interest! DeepInit is a Claude Code skill defined entirely in Markdown — there is no
application code. The "engine" is a Claude instance executing the instructions in skills/deep-init/. Contributing
means improving those instruction files (and the deterministic validation harness that guards them), not
writing a program. Please read this before opening a PR.
DeepInit lives or dies on trust, so a few rules are absolute (they mirror skills/deep-init/references/global-rules.md):
- Never fabricate. Every claim the skill emits must cite a real
file:linewith a certainty tag. A confidently-wrong claim is worse than a gap. Changes that loosen grounding will not be accepted. - Expand-only. Extend an existing stage; never remove a capability or reimplement the engine (verification, filtering, hashing, generation). Reuse the existing primitives.
- Report-only, 100% local. No network calls, no egress, no writing outside the owned region
(
<!-- DEEPINIT:START -->…<!-- DEEPINIT:END -->) with a.bakfirst. - Precision over recall. A false alarm is what gets a tool turned off. A new detector ships only with a measured false-positive story and a fixture that proves its suppressions are load-bearing.
You need Python 3.13 and pyyaml. There is nothing to build.
python -m pip install --upgrade pyyamlThe regression oracle is a deterministic harness over the fixtures (no LLM, no real skill run). It must stay all-PASS, and the count only grows by addition — the original engine checks must never regress.
PYTHONUTF8=1 python tests-fixtures-v1/_chat_validation.py # the harness
PYTHONUTF8=1 python tools/validate_all.py # every gate (or: make validate)make validate runs the harness + the stats-drift guard + the count-drift guard + the mutation
meta-harness (which proves every gated check is load-bearing) + the public-harness check.
- Open an issue first for anything non-trivial, so we can agree on the approach.
- Design → test → implement, RED before GREEN. If you add a detector or a rule, add a
mini-*fixture undertests-fixtures-v1/with aground-truth/expected.jsonoracle and a harness section that asserts it — written so it fails before your change and passes after. Add a killing mutation to_mutation_harness.pyso the new check is provably load-bearing. - Keep one source of truth. Figures on the README / docs are derived from committed records by
tools/build_stats.py— never hand-type a number; runpython tools/build_stats.pyand let the drift guard enforce it. - Run
make validateand make sure everything is green before you open the PR. - Conventional Commits. Use
feat:/fix:/docs:/chore:/refactor:/test:/ci:.
- A detector with no measured false-positive control or no fixture.
- Anything that adds a network dependency, a framework to the dashboard/viewer, or writes outside the owned region.
- A "borrowed" severity or a vendor stat presented as DeepInit's own measurement.
- Scope creep into graph-UI, dedicated security scanning, or cross-model orchestration (out of scope by design).
By participating you agree to the Code of Conduct. Report concerns to elad@deepfusionlabs.ai.
Please do not open a public issue for a security report — see SECURITY.md.