Vauchi Principles

The single source of truth for core principles and philosophy.

All solutions must be validated against these principles before implementation.


Core Value Statement

Vauchi is built on five interlocking commitments:

1. Privacy is a right, not an option

All design starts with: "How would we build this if users were our only concern?"

  • E2E encryption for all communications
  • Oblivious privacy-preserving relay (sees only encrypted blobs)
  • No tracking, analytics, or telemetry
  • User owns and controls their data

2. Trust is earned in person

Human recognition is the security anchor, not passwords or platforms.

  • QR exchange with physical proximity verification for full trust; opt-in remote discovery at reduced trust
  • No accounts or registration (device IS the identity)
  • Social vouching for recovery (people you've actually met)
  • No trust-on-first-use for contact verification — you verify contacts in person. Relay server identity is pinned during contact exchange. No platform-mediated relationships

3. Quality comes from rigorous methodology

Confidence through discipline, not hope.

  • Test-Driven Development (TDD) is mandatory
  • Problem-first workflow with full traceability
  • Threat modeling drives security decisions
  • No hacks, no tech debt, no ignored tests

4. Simplicity serves the user

Vauchi respects your time and attention — it does one thing well and stays out of your way.

  • No engagement tricks, no notifications designed to pull you back
  • Clear, minimal interface — useful without a learning curve
  • Features earn their place by solving real problems, not adding complexity
  • The app is a tool, not a destination

5. Beauty adapts to the user

Simplicity and beauty go hand in hand — and beauty is personal.

  • Design that feels good without demanding attention
  • Theming and customisation let users make it their own
  • Aesthetic choices serve clarity, never compete with it
  • A beautiful tool is one that fits the person using it

Principle Categories

Privacy Principles

PrincipleStatement
User OwnershipData stored locally, encrypted, user-controlled
Oblivious RelayRelay sees only encrypted blobs, not content
No HarvestingNo analytics, telemetry, or tracking
No SharingData never shared with third parties
Selective VisibilityPer-field, per-contact visibility control

Security Principles

PrincipleStatement
Proximity Full TrustQR + BLE/ultrasonic; remote restricted
Audited Crypto OnlyRustCrypto audited crates; no custom crypto
Forward SecrecyDouble Ratchet; past messages safe if keys leak
Memory SafetyRust enforced; no unsafe in crypto paths
Defense in DepthMultiple layers: encryption, signing, verification

Technical Principles

PrincipleStatement
TDD MandatoryTidy, Red, Green, Refactor. Test first. No exceptions
90%+ CoverageFor vauchi-core; real crypto in tests (no mocking)
Rust CoreMemory safety, no GC, cross-platform compilation
Clean Depsvauchi-core standalone; downstream uses git deps
Gherkin Tracefeatures/*.feature files drive test writing

UX Principles

PrincipleStatement
Complexity HiddenUsers see "scan QR, contact added"
In-Person TrustHuman recognition is the security anchor
Local-FirstData on device; queues offline, syncs on connect
Portable IdentityNo lock-in; restore from backup, switch devices
Cross-PlatformSame experience on iOS, Android, desktop

Process Principles

PrincipleStatement
Problem-FirstEvery task starts as a problem
Artifacts AccumulateInvestigations and retrospectives attached
No Wasted RejectionsArchive rejected solutions with reasoning
Small Atomic CommitsAfter each green, after each refactor
Retrospective RequiredLearn from every completed problem

Using These Principles

For Solution Validation

When evaluating a proposed solution, check:

  1. Does it align with Core Principles? (Privacy, Trust, Quality, Simplicity, Beauty)
  2. Does it fit the Culture? (Process Principles)
  3. Is it compatible with Current Implementation? (Technical Principles)
  4. Does it support existing Features? (UX Principles)

If a solution conflicts with any principle, it must be rejected with documented reasoning.

For Decision Making

When facing a design decision:

  1. Start with the user's perspective
  2. Assume adversarial conditions (what could go wrong?)
  3. Choose the option that best upholds all five core values
  4. Document the decision and rationale

For New Contributors

Read these principles before contributing. They are non-negotiable. If you disagree with a principle, open a problem record to discuss changing it—don't ignore it.


Amending Principles

Principles can be amended, but only through the Problem Workflow:

  1. Create a problem record explaining why the principle should change
  2. Investigate impact across codebase and documentation
  3. Validate the change against remaining principles
  4. Implement with full retrospective

Principles are not immutable, but changes must be deliberate and documented.