Skip to content

Implementation Guide Index

Document ID: IMPL-INDEX-001
File Path: docs/19-implementation-guide/index.md
Version: 1.0.0
Status: Active
Owner: Engineering Team
Last Updated: 2026-06-27


This section is the contributor’s handbook — how to set up a dev environment, build and test, follow coding standards, cut releases, and contribute. It turns the architecture and specs into day-to-day engineering practice.


New and existing contributors to the Wovyr AI Platform monorepo (ADR-0001).


DocumentResponsibility
development-environment.mdToolchain, prerequisites, local run
build-system.mdWorkspace, builds, the Rust SDK
coding-standards.mdStyle, error handling, logging, tests
release-process.mdVersioning, releases, signing
contributing.mdWorkflow, reviews, security disclosure

Terminal window
git clone <repo> && cd wovyr
make setup # toolchain + hooks
make dev # run the all-in-one platform locally
make test # unit + integration

Details in Development Environment and Build System.


  1. Match the surrounding code — consistency over personal preference.
  2. Tests with code — every change ships tests (section 15).
  3. Determinism — no hidden clocks/randomness in core logic.
  4. Security-aware — least privilege, no secrets in code/logs.
  5. Docs follow decisions — update specs/ADRs when design changes.


VersionDateDescription
1.0.02026-06-27Initial Implementation Guide index