From da6fa09afc1e47694d0d12649ef4b4610172b7f2 Mon Sep 17 00:00:00 2001 From: "Jonathan D.A. Jewell" <6759885+hyperpolymath@users.noreply.github.com> Date: Sat, 19 Sep 2026 09:00:02 +0000 Subject: [PATCH] refactor(root): move root artefacts to their canonical locations Applies the estate root-shape rollout: files that are not root-level by necessity move to where their tooling and the estate canon expect them, and every reference to them is updated in the same change. * build/guix.scm (from guix.scm) -> build/guix.scm * .github/CONTRIBUTING.md (new) * 0-AI-MANIFEST.a2ml * CONTRIBUTING.adoc (deleted) Verified with `git apply --check` against current main before committing; no behaviour change intended, the Justfile entry points keep working. --- .github/CONTRIBUTING.md | 109 ++++++++++++++++++++++++++++++++++++++++ 0-AI-MANIFEST.a2ml | 2 +- CONTRIBUTING.adoc | 109 ---------------------------------------- guix.scm | 28 ----------- 4 files changed, 110 insertions(+), 138 deletions(-) create mode 100644 .github/CONTRIBUTING.md delete mode 100644 CONTRIBUTING.adoc delete mode 100644 guix.scm diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md new file mode 100644 index 0000000..db8643b --- /dev/null +++ b/.github/CONTRIBUTING.md @@ -0,0 +1,109 @@ + + +# Contributing — anvomidav + +## Audience + +Developers working **on** `anvomidav`. For consumers (people calling or +depending on it) see usage. + +## Local-dev setup + +Prerequisites — the minimum versions and where to get them: + +- `` v\`\\` — ``. + +- `` v\`\\` — ``. + +- GPG signing key configured (estate policy — all commits must be + signed). See + [standards/docs/secure-coding-training.md](https://github.com/hyperpolymath/standards/blob/main/docs/secure-coding-training.md). + +One-shot setup: + +``` bash +git clone git@github.com:hyperpolymath/anvomidav.git +cd anvomidav +just setup # installs deps, sets up hooks +just test # runs the full test suite +``` + +## Running tests + +- **Unit**: `just` `test-unit` — fast, no I/O. + +- **Integration**: `just` `test-int` — uses real services (database, + HTTP, etc.). Estate policy: prefer real over mocked (see + `feedback_integration_tests_real_db` in maintainer’s memory). + +- **Property**: `just` `test-prop` — randomised, slower; budget + documented in `docs/proof-debt.md` if applicable. + +- **Full**: `just` `test` — runs all of the above. + +## Code style + +We enforce style via CI (governance-reusable.yml from +hyperpolymath/standards). Locally: + +``` bash +just fmt # auto-format +just lint # static checks +``` + +- All commits must be **GPG-signed** (CI enforces; see + [standards](https://github.com/hyperpolymath/standards)). + +- All source files must carry an **SPDX-License-Identifier** header (CI + enforces). + +- Conventional commits — `feat`, `fix`, `chore`, `refactor`, `docs`, + `test`, `ci`, `revert` (CHANGELOG is auto-generated from these via + [`changelog-reusable.yml`](https://github.com/hyperpolymath/standards/blob/main/.github/workflows/changelog-reusable.yml)). + +## Branching & PR workflow + +1. Branch off `main` as `claude/` (for AI agents) or + `/` (for humans). + +2. Make focused, narrow commits — one logical change per commit. + +3. Open a PR against `main`. + +4. **Enable auto-merge immediately** on every PR you open (`gh` `pr` + `merge` `` `--auto` `--squash`) — estate standing policy (see + standards#196 audit and policies). + +5. CI must be green. The PR auto-merges when checks pass + reviews + land. + +## Adding a new dependency + +1. State the **why** in the PR body — what does this dependency unlock? + +2. Check provenance (maintained, audited, no malicious history). + +3. Pin to a SHA, not a tag. + +4. Update `docs/architecture.adoc#Dependencies`. + +## Adding an ADR + +When you make a non-obvious design decision, write it down: + +1. Copy `docs/decisions/0001-template.adoc` → `0002-.adoc`. + +2. Fill in: Context, Decision, Consequences, Alternatives. + +3. Link the ADR from the README or relevant code as a comment. + +## Reporting issues + +- Bugs in `anvomidav`: file at `hyperpolymath/anvomidav/issues`. + +- Estate-wide concerns (policy, conventions, CI): file at + `hyperpolymath/standards/issues`. diff --git a/0-AI-MANIFEST.a2ml b/0-AI-MANIFEST.a2ml index 67a1ecb..d5dbd3e 100644 --- a/0-AI-MANIFEST.a2ml +++ b/0-AI-MANIFEST.a2ml @@ -97,7 +97,7 @@ This repo follows the **Dual-Track** architecture: ├── README.adoc # High-level pitch — excitement and awe (Rich Human) ├── EXPLAINME.adoc # Developer deep-dive — how it works (Rich Nerd) ├── ROADMAP.adoc # Future direction -├── CONTRIBUTING.adoc # Human contribution guide +├── .github/CONTRIBUTING.md # Human contribution guide ├── GOVERNANCE.adoc # Decision-making model ├── Justfile # Task runner ├── Containerfile # OCI build diff --git a/CONTRIBUTING.adoc b/CONTRIBUTING.adoc deleted file mode 100644 index 93741d8..0000000 --- a/CONTRIBUTING.adoc +++ /dev/null @@ -1,109 +0,0 @@ -== Clone the repository - -git clone https://github.com/hyperpolymath/nextgen-languages.git cd -nextgen-languages - -== Using Guix (recommended for reproducibility) - -guix develop - -== Or using toolbox/distrobox - -toolbox create nextgen-languages-dev toolbox enter nextgen-languages-dev -# Install dependencies manually - -== Verify setup - -just check # or: cargo check / mix compile / etc. just test # Run test -suite - -.... - -### Repository Structure -.... - -nextgen-languages/ ├── src/ # Source code (Perimeter 1-2) ├── lib/ # -Library code (Perimeter 1-2) ├── extensions/ # Extensions (Perimeter 2) -├── plugins/ # Plugins (Perimeter 2) ├── tools/ # Tooling (Perimeter 2) -├── docs/ # Documentation (Perimeter 3) │ ├── architecture/ # ADRs, -specs (Perimeter 2) │ └── proposals/ # RFCs (Perimeter 3) ├── examples/ -# Examples (Perimeter 3) ├── spec/ # Spec tests (Perimeter 3) ├── tests/ -# Test suite (Perimeter 2-3) ├── .well-known/ # Protocol files -(Perimeter 1-3) ├── .github/ # GitHub config (Perimeter 1) │ ├── -ISSUE_TEMPLATE/ │ └── workflows/ ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md -├── CONTRIBUTING.md # This file ├── GOVERNANCE.md ├── LICENSE ├── -MAINTAINERS.md ├── README.adoc ├── SECURITY.md ├── flake.guix # Guix -flake (Perimeter 1) └── Justfile # Task runner (Perimeter 1) - -.... - ---- - -## How to Contribute - -### Reporting Bugs - -**Before reporting**: -1. Search existing issues -2. Check if it's already fixed in `main` -3. Determine which perimeter the bug affects - -**When reporting**: - -Use the [bug report template](.github/ISSUE_TEMPLATE/bug_report.md) and include: - -- Clear, descriptive title -- Environment details (OS, versions, toolchain) -- Steps to reproduce -- Expected vs actual behaviour -- Logs, screenshots, or minimal reproduction - -### Suggesting Features - -**Before suggesting**: -1. Check the [roadmap](ROADMAP.md) if available -2. Search existing issues and discussions -3. Consider which perimeter the feature belongs to - -**When suggesting**: - -Use the [feature request template](.github/ISSUE_TEMPLATE/feature_request.md) and include: - -- Problem statement (what pain point does this solve?) -- Proposed solution -- Alternatives considered -- Which perimeter this affects - -### Your First Contribution - -Look for issues labelled: - -- [`good first issue`](https://github.com/hyperpolymath/nextgen-languages/labels/good%20first%20issue) — Simple Perimeter 3 tasks -- [`help wanted`](https://github.com/hyperpolymath/nextgen-languages/labels/help%20wanted) — Community help needed -- [`documentation`](https://github.com/hyperpolymath/nextgen-languages/labels/documentation) — Docs improvements -- [`perimeter-3`](https://github.com/hyperpolymath/nextgen-languages/labels/perimeter-3) — Community sandbox scope - ---- - -## Development Workflow - -### Branch Naming -.... - -docs/short-description # Documentation (P3) test/what-added # Test -additions (P3) feat/short-description # New features (P2) -fix/issue-number-description # Bug fixes (P2) refactor/what-changed # -Code improvements (P2) security/what-fixed # Security fixes (P1-2) - -.... - -### Commit Messages - -We follow [Conventional Commits](https://www.conventionalcommits.org/): -.... - -(): - -{empty}[optional body] - -{empty}[optional footer] diff --git a/guix.scm b/guix.scm deleted file mode 100644 index 13b7ede..0000000 --- a/guix.scm +++ /dev/null @@ -1,28 +0,0 @@ -;; SPDX-License-Identifier: MPL-2.0 -;; Guix development environment. -;; Usage: guix shell -D -f guix.scm - -(use-modules (guix packages) - (guix build-system gnu) - (guix licenses) - (gnu packages base) - (gnu packages bash) - (gnu packages base) - (gnu packages java) - (gnu packages rust) - (gnu packages cmake) - (gnu packages zig) - (gnu packages golang) - (gnu packages node) - (gnu packages python)) - -(package - (name "anvomidav") - (version "0.1.0") - (source #f) - (build-system gnu-build-system) - (inputs (list coreutils bash make openjdk rust cmake zig go node python)) - (synopsis "anvomidav") - (description "anvomidav — part of the hyperpolymath ecosystem.") - (home-page "https://github.com/hyperpolymath/anvomidav") - (license ((@@ (guix licenses) license) "MPL-2.0" "https://github.com/hyperpolymath/palimpsest-license")))