Skip to main content

opennosh

Self-hosted nutrition and strength tracking built around food data the community can improve.

Website: opennosh.org — the public Commons and private Tracker are live on the production Render deployment.

Animated opennosh launch demo: open the Living Commons, search the 166-record starter collection for Rajma masala, create a private Tracker account, save the one-time recovery code, choose US units and targets, then open the daily log.

Search real starter records, see source and license context, then create and set up a recoverable private Tracker account. The animation plays once; view the final ready-to-log screen.

Build status: The scoped v1 implementation and both human review gates are complete. The v1 implementation epic records the shipped work and public-launch evidence.

The application is MIT-licensed. Community food packs are dedicated under CC0 1.0 with visible contributor credit. The repository is public, security researchers can use GitHub's private vulnerability-reporting flow, and general messages can be sent to support@opennosh.org through free inbound forwarding.

See NOTICE.md for the combined distribution notice and LICENSES.md for the repository-wide licensing map. The running web app exposes the same source-separated summary at /notices, linked from the global footer.

The canonical public packages are live: install the Python application and CLI with pip install opennosh==0.22.0.0, or start a safe local checkout with npx opennosh@0.22.0 init my-opennosh. The PyPI and npm releases are controlled by active GitHub Actions trusted publishers using short-lived OIDC credentials. Exact release hashes, controls, and verification evidence are recorded in docs/package-operations.md.

Quick start

Docker Compose starts PostgreSQL, validates the global database-capacity contract, runs one migration job, then starts the FastAPI web role, the Next.js app, and its nginx ingress:

cp .env.example .env
docker compose up --build

Open the web app at http://localhost:3000. The API health endpoint is http://localhost:8000/healthz; it returns 200 when PostgreSQL is reachable and a safe 503 degraded response when the database is unavailable.

Production deployment

The versioned render.yaml Blueprint defines the hosted production topology: an always-on public Next.js service, a private FastAPI service, an isolated background publication worker, and Render PostgreSQL in Ohio. Render generates every application secret, blocks public database ingress, waits for GitHub checks before deploying, and runs capacity validation plus Alembic migrations before replacing the API instance. The API starts with only the opennosh_web database credential; the database-owner and migration credentials are removed from its runtime environment. The publication worker starts in refresh-only mode without a database URL or contribution claims.

Render probes https://opennosh.org/healthz for shallow web-process liveness so verified Commons reads stay available during PostgreSQL outages. The database-aware readiness and post-deploy probe remains https://opennosh.org/api/v1/healthz. The Cloudflare cutover is complete: the apex serves Render and www permanently redirects to the apex, while DNSSEC and inbound Email Routing remain enabled. See docs/operations/render-production.md for provisioning, verification, rollback, and domain steps.

Every successful publication-worker deploy also runs a commit-bound Commons canary. It waits for GET /api/v1/public/build-version to report the worker's exact RENDER_GIT_COMMIT, then requires the public Commons snapshot to be truthfully quiet or live. An unavailable response or a bounded readiness timeout posts a redacted message to the configured Slack alert receiver.

For native development, install Python 3.11+, uv, Node.js 24 LTS (24.15+; Node 25 is unsupported), npm, and Docker, then run:

make install
make lint typecheck test build compose-config
make foodpack-validate

Compose runs capacity preflight and Alembic as one-shot jobs; the web container never migrates on startup. The database-capacity runbook documents role pools, reserved recovery headroom, scaling checks, overload behavior, and internal metrics. For native development, set DATABASE_URL and manage the schema directly:

make db-upgrade
make db-downgrade

db-downgrade returns a development database to the empty base revision. Do not run it against data you need to keep.

After upgrading the database, validate and load one pack or every pack below a repository root:

uv run opennosh foods load ./packs --json

The loader commits valid entries, reports and skips invalid entries, treats an unchanged pack as a no-op, and refuses to overwrite a newer pack version.

Starter food packs

opennosh publishes five signed CC0 community packs with 166 entries:

  • 1 common fruit;
  • 50 Gujarati home-cooking foods;
  • 60 North Indian staples;
  • 30 common vegetarian proteins; and
  • 25 generic supplements and powders.

All 145 government-database entries link to an exact USDA FoodData Central record. The 21 calculated entries disclose component weights, FDC IDs, and cooked yield. Every entry has visible credit and a named portion. See the source, spot-check, checksum, and zero-warning validation evidence.

Food search API

Search USDA reference foods and CC0 community foods without combining their source records:

GET /api/v1/foods/capabilities
GET /api/v1/foods/catalog-summary
GET /api/v1/foods/search?q=apple&locale=en-IN&source=community&limit=20
GET /api/v1/foods/search?q=apple&locale=en-IN&source=community&limit=20&cursor=<next_cursor>
GET /api/v1/foods/search?q=samosa&source=federation&pack=global-core
GET /api/v1/foods/community/apple
GET /api/v1/foods/usda/171688
GET /api/v1/foods/federation/<verified-release-uuid>:<source-record-id>

Open a source-qualified result without an account at a localized public record URL such as http://localhost:3000/en/explore/foods/community/apple?food_locale=en-IN. The page server-renders its identity, preparation, selected portion, nutrition, source, release version, license, uncertainty, provenance, record history, and reuse terms, so the complete trust context remains available without JavaScript.

Metric and US controls change the displayed portion mass while canonical grams and nutrient units remain explicit. Variant comparison never guesses relationships from fuzzy search: until the API publishes an explicit relationship, the record shows an honest empty-variant state. The Tracker action opens the generic /tracker utility until a food-record handoff contract exists.

/foods/capabilities reports whether barcode lookup and verified federation search are enabled so clients can hide those workflows without probing either integration. It is public and does not make an Open Food Facts request.

/foods/catalog-summary reports database-backed community, USDA reference, and combined searchable counts. The public explorer labels its signed community count separately, using the verified Commons release snapshot, so imported USDA rows are never presented as community-verified records.

Every result uses a source-qualified ID such as community:apple or usda:171688 and returns the source and license metadata needed for attribution. With FEDERATION_SEARCH_ENABLED=true, an explicit federation source or pack selection returns verified projection rows with exact pack/release identity, immutable variants, deterministic equivalence groups, and conflict state. Conflicting nutrients remain separate and are never averaged. The optional repeated pack filter and every cursor bind the exact active release set; release_set.stale identifies a retained page from an older activation. Production keeps this independent flag false until an explicit activation review. Results rank exact community slugs first, then community foods matching the requested locale, USDA generic foods, and community foods from other locales. The optional source filter accepts community, usda, or feature-gated federation.

Self-hosted federation installations are also disabled by default. The administration CLI can install, update, roll back, remove, and reconcile exact verified releases into an append-only local PostgreSQL projection. Once artifacts are verified, installed-pack search is local and does not depend on a hosted federation service. Production keeps both FEDERATION_INSTALLATION_ENABLED and FEDERATION_PUBLIC_DISCOVERY_ENABLED false pending separate activation review.

Python SDK and public CLI (preview)

The installed opennosh wheel includes synchronous and asynchronous read clients for the ten anonymous developer operations. They preserve current and retained N-1 Pydantic public contracts, release identity, verification and staleness headers, attribution, provenance, cache validators, and typed problem details:

from opennosh_api.sdk import AsyncOpenNoshClient, OpenNoshClient

client = OpenNoshClient("hosted")
results = client.search_foods("rajma", locale="en-IN", limit=10)
food = client.get_public_food("community", results.data.items[0].source_id)

async_client = AsyncOpenNoshClient("https://nosh.example")
missions = await async_client.list_missions(limit=20)

Use the matching command-line reads against hosted opennosh or an explicit self-hosted origin:

opennosh public capabilities --json
opennosh public search rajma --locale en-IN
opennosh public food community rajma-masala
opennosh public manifest 0.88.0.0 --target https://nosh.example --json
opennosh public provenance 0.88.0.0 community rajma-masala
opennosh public download-pack 0.88.0.0 indian-staples-north 1.0.0 --output pack.zip
opennosh packs validate pack.zip --json

--target takes precedence over OPENNOSH_TARGET, which takes precedence over hosted (https://opennosh.org). Targets must be origin-only HTTPS URLs; plaintext HTTP is accepted only for exact loopback hosts. The clients send no bearer token, cookie, telemetry, or automatic retry, and refuse redirects. Public reads and local validation never install a pack. The existing governed opennosh federation install-pack, update-pack, and installation-status commands remain the only self-hosted installation mutations, and their production feature flags remain disabled. The synchronous client runs the cancellable async transport core and must not be called from an already active event loop; use AsyncOpenNoshClient in async applications.

The installed wheel also provides a preview, read-only MCP stdio server:

opennosh-mcp --target hosted
opennosh-mcp --target https://nosh.example

It exposes exactly search_foods, get_public_food, get_public_missions, get_public_mission_activity, get_release_manifest, and validate_pack. The endpoint is fixed at startup; tool calls cannot provide a URL or credentials. validate_pack accepts one JSON object of at most 1 MiB and never reads a path. See the MCP operations guide for client configuration, result states, and rollback.

Tracking-free embeds (preview)

Embed a proof-bearing public food card without a loader or custom element:

<iframe
  title="opennosh food: Rajma masala"
  src="https://opennosh.org/embed/v1/foods/community/rajma-masala"
  sandbox="allow-scripts allow-same-origin allow-popups"
  style="width:100%;height:320px;border:0"
></iframe>

The optional resize message uses the versioned {schema_version: "1.0", type: "opennosh.embed.resize", height} contract. Receivers must accept it only when event.source is the iframe window and event.origin is the exact opennosh origin. See the embed operations guide for exact-release provenance URLs, the receiver example, security headers, verification states, and rollback.

Minimal JavaScript and Python starters demonstrate the same search → verified detail → attribution journey against hosted or self-hosted origins. Release gates install the packed npm and wheel artifacts into empty directories before running either starter, preventing source-checkout imports from masquerading as package success.

External integration evidence belongs under developer trial evidence. Reports are privacy-minimized and schema-validated; two distinct independent operator logins are required before the compatibility manifest can claim stability. No external report has been accepted yet.

This developer kit is preview software. MCP and embed discovery remain disabled, and the project does not claim general availability or external adoption before the separately reviewed trial gate.

Raw queries must contain 2–100 characters; after whitespace normalization they must still contain at least two characters and a letter or number. A request returns at most 50 rows. When another page exists, the response includes an opaque next_cursor; send it back with the same query, locale, source/pack filters, and limit. Results remain bound to the retained projection snapshot even if the live catalogue changes. Invalid cursors return a typed 400 search_cursor_invalid problem; expired snapshots, changed search inputs, or retired signing keys return a typed 409 search_cursor_restart problem with a safe first-page recovery link.

Public search defaults to 120 requests per source IP per 60 seconds and a 500 ms PostgreSQL statement timeout. Projection rebuilds have a separate 30-second ceiling; concurrent requests use a retained snapshot or receive retry guidance instead of waiting on the builder. Snapshots refresh after 300 seconds, remain available for 1,200 seconds, and issue cursors valid for up to 900 seconds. Configure these guards with FOOD_SEARCH_RATE_LIMIT_ATTEMPTS, FOOD_SEARCH_RATE_LIMIT_WINDOW_SECONDS, FOOD_SEARCH_STATEMENT_TIMEOUT_MS, FOOD_SEARCH_CURSOR_LIFETIME_SECONDS, FOOD_SEARCH_SNAPSHOT_REFRESH_SECONDS, FOOD_SEARCH_SNAPSHOT_RETENTION_SECONDS, and FOOD_SEARCH_SNAPSHOT_BUILD_TIMEOUT_MS.

Production must set FOOD_SEARCH_CURSOR_SIGNING_KEYS to a unique current key, optionally followed by the previous key during rotation, using current-id:at-least-32-byte-secret,previous-id:secret. The first key signs new cursors; both keys verify existing cursors. Never reuse the documented development value. The production container disables Uvicorn access logging so normalized search terms and cursor query parameters are not copied into request logs.

PostgreSQL full-text and trigram indexes back the retained projection. The integration performance gate loads 10,000 representative rows, verifies snapshot-indexed execution, and budgets less than 100 ms of PostgreSQL execution time. The release-scale decision is governed by the versioned representative benchmark, which pins the launch-reference, 10x, and 100x corpora, mixed workload, cache states, latency/relevance gates, and machine-readable evidence needed before considering a dedicated search projection.

Localization quality

English is the current shipped interface language. Public-shell, food-record, legal-notice, and contribution copy comes from one typed catalog; missing or extra messages, placeholder drift, plural-shape drift, and direct JSX interface copy fail the pull-request gate. Food locale remains independent from interface language.

Run the fast catalog and copy checks with:

npm --prefix web run check:localization
npm --prefix web test -- --run tests/localization-catalog.test.ts

The dedicated browser matrix covers shipped English plus a deliberately expanded en-XA pseudo-locale at desktop and mobile widths, including every contribution stage and language switching. The pseudo-locale is available only when the non-production test server explicitly sets NEXT_PUBLIC_OPENNOSH_ENABLE_PSEUDO_LOCALE=1:

npm --prefix web run test:localization

Public motion performance

The localized public site is complete in server-rendered HTML and starts with decoration disabled. Eligible browsers load a separate, CSS-first movement controller after interaction readiness. It activates no more than two visible regions, pauses in hidden tabs and offscreen sections, and turns decoration off if the 50 ms long-task or 20 ms p95 frame budget is breached. Reduced-motion, data-saver, low-power, and no-JavaScript paths keep the same content and actions without starting the optional runtime.

Run the production bundle and six-profile browser gate with:

make motion-performance-check

Set NEXT_PUBLIC_OPENNOSH_MOTION_DECORATIONS=off at build time for the emergency decoration kill switch. Web Vitals samples are held only in the page and dispatched as opennosh:web-vital events; the movement layer does not transmit them to an external service.

Verified public commons snapshot

The public homepage resolves one server-side snapshot from:

GET /api/v1/public/commons-snapshot

Operators can bind a live response to the exact deployed release and source commit without relying on HTML or intermediary caches:

GET /api/v1/public/build-version

The endpoint returns schema version 1, the four-component opennosh release version, and Render's 40-character Git commit when available. It always sends Cache-Control: no-store.

That single immutable response drives the hero count, accepted-activity ledger, freshness message, and repeated footer proof. The API does not require PostgreSQL for this endpoint. When the canonical public artifact reader is configured, the background materializer reuses its signed-pointer, content-digest, signed-manifest, signed-receipt, anti-rollback, and durable-cache verification. It exposes the verified release and exact manifest record count while a canonical, receipt-bound accepted-event projection makes complete zero and nonzero windows truthfully quiet and live. It never converts missing activity proof into a quiet claim. Standalone filesystem deployments retain the original bounded projection materializer described below. Requests read only the materialized result in either mode. Invalid or missing first releases omit the record count; later verification failure retains only the last verified release proof and labels it stale.

Commons mission activity has a separate disabled-by-default endpoint at GET /api/v1/public/missions/activity. It publishes only country or macroregion cohorts backed by at least ten current verified accepted events. Regions come from the immutable approved pack manifest bound to each accepted event's signed receipt, never mutable food rows or contributor location, and the response exposes no filterable total from which a smaller cohort could be inferred. See the Commons mission activity contract. The Commons page renders the independently validated catalog and regional surface only when OPENNOSH_PUBLIC_NAV_FEATURES includes commons-missions. Render intentionally omits that web feature alongside the five disabled mission switches until a later digest-bound activation.

Compose mounts ${PUBLIC_COMMONS_ARTIFACT_DIRECTORY:-./var/public-commons} read-only at /app/public-commons. Place latest.json at the root and release manifests under releases/. Both files use the schema-version-1 signed envelope documented in docs/api-contracts.md. Set PUBLIC_COMMONS_VERIFYING_KEYS as current-id:unpadded-base64url-public-key,previous-id:public-key during rotation. The API holds verification keys only. Offline publishers retain the private keys that sign immutable releases and publication receipts; production gives the isolated publication worker a separate online manifest key that can renew only the signed latest pointer's issue and expiry times. Production refuses the documented development verifier. Compose persists the anti-rollback checkpoint under ${PUBLIC_COMMONS_STATE_DIRECTORY:-./var/public-commons-state}; native deployments set both PUBLIC_COMMONS_CHECKPOINT_PATH and PUBLIC_COMMONS_PROJECTION_PATH to durable writable files. Those state paths must be separate from each other and the read-only signed artifacts. PUBLIC_COMMONS_REFRESH_SECONDS defaults to 5 and PUBLIC_COMMONS_STALE_AFTER_SECONDS defaults to 300. Set PUBLIC_COMMONS_REVALIDATION_URL to the web app's authenticated internal revalidation endpoint so same-bucket publication changes invalidate the complete cached snapshot immediately. Configure a dedicated PUBLIC_COMMONS_REVALIDATION_TOKEN in both processes and allow only the intended web service hostname through PUBLIC_COMMONS_REVALIDATION_ALLOWED_HOSTS.

Publish the immutable release manifest before replacing latest.json. The pointer binds the exact release version, filename, and SHA-256 digest, so a cross-release race cannot combine one pointer with another release. Projection files are capped, fsynced, atomically replaced, and content-bound to the durable trusted checkpoint loaded at process startup. The background materializer watches publication changes and five-minute bucket rollover under a process-safe lock; cache identity binds the release digest, event checkpoint, activity cutoff, and bucket. Each request reads only the bounded projection file. Responses include the exact ETag, snapshot byte count, cache status in Server-Timing, and a five-minute shared-cache revalidation policy. The homepage performs one server request and never polls.

Immutable public food reads

T1 adds a database-independent public read plane for verified food records. Signed release manifests bind content-addressed record JSON, provenance HTML, pack downloads, and the exact signed publication receipt. Latest reads use a short-lived signed pointer; exact release URLs are immutable. A failed refresh can expose only the checkpointed verified release and labels its stale age.

Local/self-hosted development can set PUBLIC_ARTIFACT_DIRECTORY and PUBLIC_ARTIFACT_CHECKPOINT_PATH. Hosted production uses PUBLIC_ARTIFACT_BASE_URL for an HTTPS object-store/CDN origin, plus approved PUBLIC_COMMONS_VERIFYING_KEYS and PUBLICATION_RECEIPT_VERIFYING_KEYS. Keep PUBLIC_ARTIFACT_READS_ENABLED=false on the web service until the signed origin has passed the outage, tamper, rollback, and pinned-download checks in docs/operations/render-production.md.

Contribute a food record

Open /en/contribute to begin a proposal without an account. The browser saves the draft on the device immediately and guides the contributor through five stages: source evidence, food and portion details, duplicate checking, provenance, and review. Original g, oz, lb, or serving units remain visible beside the canonical gram weight.

Sign-in is required only when the proposal is handed to the commons. The server creates or resumes one owner-scoped draft, rechecks exact-name duplicate candidates, validates the whole proposal, and returns a stable receipt with the submission reference, public credit, expected acknowledgement time, and current review state. “Received for review” never means approved or published; accepted food data still enters the commons only through the separate reviewed publication path.

Authenticated clients use:

POST  /api/v1/contribution-drafts
GET   /api/v1/contribution-drafts/{draft_id}?requested_stage=details
PATCH /api/v1/contribution-drafts/{draft_id}
POST  /api/v1/contribution-drafts/{draft_id}/submit

Create, patch, and submit require the session CSRF token. Patches carry the expected draft version, a unique operation ID, and at most 25 field changes; submit carries the expected version, an idempotency key, and the complete typed evidence manifest. The submitted version, manifest, and preservation wake-up commit atomically; review never begins without that exact evidence. Every response is a capability document containing completed and accessible stages, blockers, the repaired safe stage, duplicate candidates, and the receipt when submitted. See the contribution contract.

Each source choice maps to an explicit evidence class and public trust label. Steward approval fails closed until the exact submitted draft version has a canonical evidence manifest and every class-specific durable acknowledgement verifies. Rights-restricted documents remain visibly reference_only, and maintainer attestations remain visibly attested; neither can masquerade as preserved primary evidence. Authenticated clients may replay the exact manifest through the idempotent evidence attachment endpoint and read its current public state. See the evidence durability contract.

The public browser can prepare and retain a device draft, but review handoff remains visibly disabled until the separately gated trusted upload/object-storage service and evidence worker are active. opennosh does not place browser proposals without complete typed evidence into the review queue. T34.2 adds the disabled camera/file journey, hostile-image rewrite, malware-scan port, exact-version attach, and immutable preservation path. Browser persistence contains only the opaque upload ID, safe state, source description, and redaction choice—never bytes, filenames, upload URLs, or capabilities. The committed Render topology, evidence replica count, navigation, and production flags remain unchanged; see the evidence durability contract.

Open Food Facts barcode lookup

Open Food Facts access is off by default, so local food search, logging, and startup never require network access. Enable it deliberately and identify your deployment:

OPEN_FOOD_FACTS_ENABLED=true
OPEN_FOOD_FACTS_USER_AGENT_CONTACT=https://example.org/contact

Then look up a valid GTIN-8, GTIN-12, GTIN-13, or GTIN-14 barcode:

GET /api/v1/foods/barcode/3017620422003
GET /api/v1/export/foods/odbl

The first uncached lookup uses the current Open Food Facts product API with a three-second timeout, an identifying opennosh/<version> (<contact>) User-Agent, and an explicit field allowlist. Product images are not requested or cached. Later lookups use the isolated foods_odbl cache. That cache is never written to foods_community and is exported only through its attributed ODbL/DbCL endpoint; it is not part of the CC0 food-pack export.

Public lookup traffic defaults to 10 requests per source IP per minute, below Open Food Facts' published product-read limit. Configure the integration with OPEN_FOOD_FACTS_BASE_URL, OPEN_FOOD_FACTS_TIMEOUT_SECONDS, OPEN_FOOD_FACTS_LOOKUP_RATE_LIMIT_ATTEMPTS, and OPEN_FOOD_FACTS_LOOKUP_RATE_LIMIT_WINDOW_SECONDS. A second database-backed global limit applies only to cache misses so callers sharing the deployment's outbound IP cannot collectively exceed the upstream budget; configure it with OPEN_FOOD_FACTS_UPSTREAM_RATE_LIMIT_ATTEMPTS and OPEN_FOOD_FACTS_UPSTREAM_RATE_LIMIT_WINDOW_SECONDS. The separate export has its own rate limit, PostgreSQL statement timeout, and exact 10,000-row/64 MiB serialized-response ceilings. The legacy /api/v1/export/foods/openfoodfacts path returns the same versioned stream. Invalid GTINs return 422, missing products return 404, upstream rate limits return 503, upstream timeouts return 504, and other unusable upstream responses return 502.

Authentication

The API provides local account registration, login, session inspection, and logout under /api/v1/auth. Passwords are hashed with Argon2id and opaque sessions are stored in PostgreSQL; no third-party identity provider is required.

Registration returns a one-time recovery code that the Tracker requires the user to save before continuing. opennosh does not email or retain a revealable copy of that code. POST /api/v1/auth/recover accepts the account email, current recovery code, and a new password; a successful recovery invalidates prior sessions, rotates the recovery code, signs the browser in, and shows the replacement code once. Authenticated Account settings can change Metric or US customary units, change the password, rotate the recovery code after password confirmation, reopen guided setup, or permanently delete the account and its private Tracker data. Public contribution history remains part of the Commons record.

GET /api/v1/auth/session-state is the browser-safe startup probe: it returns 200 with either the current user or an explicit signed-out state. The authenticated lifecycle mutations are PUT /api/v1/auth/account/password, POST /api/v1/auth/account/recovery-code, PATCH /api/v1/auth/account/settings, and DELETE /api/v1/auth/account. Recovery and registration responses containing plaintext recovery codes use Cache-Control: no-store.

Set APP_ENVIRONMENT=production in production. This enables Secure, host-only session and CSRF cookies. Browser clients must copy the opennosh_csrf cookie (or __Host-opennosh-csrf in production) into the X-CSRF-Token header for authenticated state-changing requests. API handlers must use the session-derived helpers in opennosh_api.auth.tenant; request bodies and query parameters must never select a user_id.

Daily nutrition log

The tracker at http://localhost:3000/tracker provides the responsive primary journey: create an account or sign in, save the one-time recovery code, choose Metric or US customary units, optionally set user-chosen training/rest nutrition targets, search the ranked local catalogue, filter USDA or community results, and log a food by grams or a named household portion under any meal name. Guided setup can be skipped without changing an existing target schedule and reopened later from /tracker/account. That Account route also manages units, password, recovery-code rotation, and permanent deletion. /tracker/records records private body measurements immediately; strength entry stays visibly unavailable in production until an attributed exercise catalogue is loaded and OPENNOSH_TRACKER_STRENGTH_ENTRY_ENABLED is deliberately enabled. When Open Food Facts is enabled, the same dialog adds barcode lookup; it always offers owner-private custom-food entry with calories, macros, and optional household portions. Source and contributor credit stays visible during selection. Loading, empty, API-error, and expired-session screens all provide a way forward. Keyboard focus is visible, the dialog traps focus, supports arrow-key tab navigation, closes with Escape, and is checked against WCAG 2.2 AA rules in Playwright on desktop and mobile. The public root resolves saved or browser interface-language preferences and falls back to /en. The localized shell keeps stable Explore, Contribute, Commons, and Build hubs at /en/explore, /en/contribute, /en/commons, and /en/build, with breadcrumbs and clear next actions. Child tools remain hidden until their release flags enable them. Tracker stays a separate utility with an independent layout and permanent /tracker address.

Moving between a localized public page and Tracker performs a full-document navigation so each root keeps its own language, styles, fonts, and providers. Tracker offers “Return to the commons” using the last validated same-origin public path stored in an HTTP-only cookie; missing, invalid, external, or oversized values fall back to the saved-language homepage. For an entry-point rollback, set OPENNOSH_PUBLIC_ROOT_ENABLED=off (also accepts false or 0) in the web process so / redirects to /tracker; localized public URLs remain directly reachable.

Nutrition, body-metric, and strength trends

Authenticated users can open /tracker/trends to review 7-, 30-, or 90-day history for nutrition, body measurements, and strength volume. Nutrition days follow the browser's IANA timezone; body-metric and workout ranges retain the APIs' documented UTC date boundaries. Every visual chart has a visible data table and keyboard-accessible native range and measure controls. Empty and single-record states stay descriptive and neutral, without diagnoses, coaching, streaks, or inferred health advice.

Body measurements remain separated by metric type and unit. Strength volume remains separated by exercise and load unit, so kilograms, pounds, and machine units are never combined. Bodyweight, band, and RPE-only sets do not produce volume.

The trends page uses bounded, owner-scoped aggregate endpoints rather than downloading paginated workout histories. GET /api/v1/body-metrics/trends?from=2026-08-01&to=2026-08-30 returns the latest measurement for each UTC day, metric type, and unit. GET /api/v1/workouts/trends?from=2026-08-01&to=2026-08-30 returns daily volume grouped by exercise and numeric load unit. Both accept inclusive UTC ranges of at most 90 days.

The browser calls only same-origin /api/v1 paths. The Next.js server forwards those requests to API_URL, which Compose sets to the internal api service. For local web development outside Compose, leave the default API address at http://localhost:8000 or set API_URL explicitly. In Compose, nginx is the only public web ingress and replaces caller-supplied forwarding headers with the actual peer address. The Next.js proxy authenticates that address to the API with WEB_PROXY_TOKEN, keeping source-address rate limits isolated instead of collapsing onto the web container. Generate a unique token of at least 32 characters for production. The web container is not published, and the Compose API port is bound to loopback, so remote callers cannot forge the private proxy headers.

Browser acceptance has two explicitly named lanes. The fast UI-journey lane uses contract-valid fixtures to cover broad presentation states. The vertical-acceptance lane starts disposable PostgreSQL, FastAPI, Next.js, publication-worker, evidence-worker, and immutable artifact services. Its supported test-only coordinator enqueues a real publication job, waits for all ten worker steps plus the durable receipt and accepted event, and only then marks the stack ready. The worker produces and activates the versioned release; an independent reference client verifies the record and provenance digests plus the distinct Ed25519 manifest and receipt signatures without intercepting opennosh API traffic.

Install Chromium once, then run the lanes independently:

npx --prefix web playwright install chromium
make web-e2e-ui

make acceptance-up
make web-e2e-vertical
make acceptance-down

Always stop the acceptance stack when finished. Its Compose project and loopback ports are derived from the worktree path, so concurrent worktrees cannot replace or tear down each other’s services. You can override ACCEPTANCE_PROJECT, ACCEPTANCE_WEB_PORT, and ACCEPTANCE_ARTIFACT_PORT when needed. Only the web and read-only artifact endpoints are published; the database and artifact volumes are disposable. CI reports UI-journey and real vertical failures as separate jobs.

Nutrient calculations

The opennosh_api.nutrition module validates nutrient maps, canonicalises source values to a per-100-gram internal basis, and converts grams, millilitres, and named household portions into immutable nutrient snapshots. Volume conversion requires an explicit food density; opennosh never guesses that one millilitre equals one gram. Calculations use a fixed 50-significant-digit decimal context, presentation rounding happens only through the API-boundary helper, and its JSON payload uses decimal strings so values do not change in transit.

Food logging

Authenticated users can create, list, read, and delete tenant-isolated food-log entries under /api/v1/logs. Create requests use the source and source_id returned by food search, plus an offset-aware timestamp, a configurable meal-slot label, and a quantity in grams, millilitres, or a named household portion:

Create an owner-private food before logging it with POST /api/v1/foods/custom. The mutation requires the authenticated session's CSRF token and accepts a canonical per-100-gram profile plus up to 20 optional, uniquely named portions:

{
  "name": "Homemade paneer",
  "nutrients": {
    "basis": "per_100g",
    "nutrients": {
      "energy_kcal": "265",
      "protein_g": "18.3",
      "fat_g": "20.8",
      "carbohydrate_g": "1.2"
    }
  },
  "portions": [{"name": "1 cube", "grams": "30"}]
}

The response identifies the food with source: "custom" and private: true. Custom foods remain owner-scoped, never appear in public search, and are excluded from public dataset exports.

{
  "logged_at": "2026-08-20T18:30:00-04:00",
  "meal_slot": "post workout",
  "food": {"source": "community", "source_id": "dal-rice"},
  "quantity": {"amount": "1.5", "unit": "portion", "portion_name": "1 bowl"}
}

POST /api/v1/logs and DELETE /api/v1/logs/{entry_id} require the authenticated session's CSRF token in X-CSRF-Token. The server resolves the source food, converts the quantity, and stores the food identity, original quantity, gram mass, and computed nutrients on the log row. Later source-food corrections therefore never rewrite historical nutrition. To correct an entry, delete it and create a replacement; there is deliberately no recalculating update endpoint.

Use GET /api/v1/logs?day=2026-08-20&timezone=America/New_York for a stable paginated local-day view and GET /api/v1/logs/daily-totals?day=2026-08-20&timezone=America/New_York for exact daily mass and nutrient totals. The timezone parameter accepts IANA names and overrides the user's saved settings_json.timezone; when neither exists, the API uses UTC. Day boundaries are converted to UTC after applying the selected timezone, including 23- and 25-hour daylight-saving days. Every read and mutation derives user_id from the session, returns 404 for another user's entry or custom food, and sends Cache-Control: no-store.

For chart-sized history, use GET /api/v1/logs/daily-totals/range?from=2026-08-01&to=2026-08-30&timezone=America/New_York. The inclusive range is limited to 90 days, returns one item per local calendar day (including empty days), and uses the same saved-timezone fallback and daylight-saving semantics as the single-day endpoint.

Private recipes

Authenticated recipe CRUD is available under /api/v1/recipes. A create or full-replacement request supplies a name, the finished recipe's yield in grams, and one to 100 source-qualified ingredients with gram quantities:

{
  "name": "Sunday dal",
  "yield_grams": "1400",
  "ingredients": [
    {"food": {"source": "usda", "source_id": "169090"}, "grams": "200"},
    {"food": {"source": "custom", "source_id": "7d735537-5ddf-4ec4-91ad-1f8153229619"}, "grams": "30"}
  ]
}

Ingredient sources may be usda, community, openfoodfacts, or custom. List recipes with GET /api/v1/recipes?limit=50&offset=0; limit accepts 1–100, offset accepts 0–10,000, and the response includes has_more. POST, PUT, and DELETE require the session CSRF token.

POST and PUT snapshot each ingredient's identity, exact mass, and nutrients. Recipe detail and totals therefore remain stable if an underlying public food changes or a private custom food is deleted. The response includes whole-recipe totals and a yield-derived per-100-gram profile. All recipe reads and writes are owner-scoped, respond with Cache-Control: no-store, and keep recipes out of public food-pack data.

Log a recipe through the ordinary POST /api/v1/logs endpoint with {"source":"recipe","source_id":"<recipe UUID>"}. A gram quantity scales the stored profile directly. A named portion of "whole recipe" maps exactly to the stored yield, so an amount of "0.25" logs one quarter of the recipe. The resulting log is itself immutable and remains readable after the recipe is edited or deleted.

Calorie and macro targets

Authenticated users manage their own dated target schedule under /api/v1/targets. A full replacement uses the session CSRF token and supplies non-overlapping inclusive date ranges for training and rest days:

{
  "items": [
    {
      "day_type": "training",
      "kcal": "2500",
      "protein_g": "180",
      "carb_g": "300",
      "fat_g": "65",
      "active_from": "2026-08-01",
      "active_until": null
    }
  ]
}

Use GET /api/v1/targets to read the complete schedule and GET /api/v1/targets/resolve?day=2026-08-20&day_type=training to resolve one date deterministically. Target values are always entered by the user; opennosh never calculates or prescribes them. The configurable TARGET_KCAL_FLOOR defaults to 1200 kcal. A lower user-entered value is accepted only when that schedule item includes "confirm_below_floor": true, and the confirmation plus the applicable floor are stored with the target. All target responses are owner-scoped and send Cache-Control: no-store.

Private body metrics

Authenticated users can create, list, and delete their own measurements under /api/v1/body-metrics. Create a record with the session CSRF token:

{
  "recorded_at": "2026-08-20T08:30:00-04:00",
  "metric_type": "body_weight",
  "value": "80.125",
  "unit": "kg"
}

Supported pairs are body_weight with kg or lb, body_fat_percentage with percent, and height, waist_circumference, hip_circumference, chest_circumference, neck_circumference, upper_arm_circumference, or thigh_circumference with cm or in. Values are positive exact decimals with at most four decimal places.

List an inclusive UTC date range with GET /api/v1/body-metrics?from=2026-08-01&to=2026-08-31&limit=100&offset=0. Both dates are required, results are newest first, and the response includes has_more. Every query is owner-scoped; deleting another user's ID returns the same 404 as a missing record. Successful and failed responses send Cache-Control: no-store. The stable record shape (id, recorded_at, metric_type, value, and unit) is also the representation used by the authenticated /export/me response. opennosh stores and reports these numbers without streaks, shaming, or automated medical interpretation.

Private strength workouts

Authenticated users can create and manage their own workouts under /api/v1/workouts. A workout has a timezone-aware performed_at, optional notes, and up to 500 ordered sets. Each set refers to an attributed exercise and records reps plus one of kg, lb, bodyweight, band, machine_units, or rpe_only. kg, lb, and machine_units require a nonnegative load_value; bodyweight and band omit it; and rpe_only stores a rating from 1 through 10 in load_value. For example:

{
  "performed_at": "2026-08-20T18:00:00-04:00",
  "notes": "Upper body",
  "sets": [
    {
      "exercise_id": "66fef1bf-7bb3-4ccf-bd52-dd661006075b",
      "reps": 8,
      "load_value": "60",
      "load_unit": "kg"
    }
  ]
}

Use GET /api/v1/workouts?from=2026-08-01&to=2026-08-31&limit=50&offset=0 for an inclusive UTC-date range. limit accepts 1–100, offset accepts 0–10,000, and the response includes has_more. Read, replace workout metadata, or delete a workout with GET, PUT, or DELETE at /api/v1/workouts/{workout_id}. POST /api/v1/workouts/{workout_id}/sets, PUT /api/v1/workouts/{workout_id}/sets/{set_id}, and the corresponding DELETE endpoint append, edit, and remove sets without changing the surviving sets' relative order. Mutations require the session CSRF token, and all responses send Cache-Control: no-store.

Every returned set embeds the exercise's source identifier and URL, license identifier and URL, author fields, attribution text, and translation-level attribution so clients can display the required credit without a second lookup.

Volume is computed only for kg, lb, and machine_units, and remains separated by exercise and unit. GET /api/v1/workouts/volume?from=2026-08-01&to=2026-08-31&exercise_id=<id> refuses to combine incompatible units; add &load_unit=kg or another exact unit to select one. Bodyweight, band, and RPE-only sets remain useful records but are never converted into an invented numeric volume.

Attributed wger exercise catalogue

Import a downloaded wger exerciseinfo JSON export after upgrading the database:

make db-upgrade
make wger-import WGER_PATHS="downloads/exerciseinfo.json --json"

The command reads local files only; neither runtime imports nor automated tests call the live wger service. It accepts only records whose short name, full name, and license URL unambiguously identify CC-BY-SA-3.0. Missing, NC, ND, conflicting, or unsupported license metadata is reported and skipped. Safe source and derivative URLs, author information, cleaned plain-text translations, and complete per-translation attribution are retained. Re-importing the same export is a no-op, and an older source timestamp cannot replace a newer record.

Search and retrieve the catalogue through the public API:

GET /api/v1/exercises/search?q=squat&muscle=quads&equipment=barbell&limit=20&offset=0
GET /api/v1/exercises/{exercise_id}
GET /api/v1/export/exercises

Search is bounded and rate-limited per source IP, with PostgreSQL full-text and taxonomy indexes. Every search, detail, and export record carries its source, author, license, derivative, and translation attribution. The export has an explicit Creative Commons Attribution-ShareAlike 3.0 notice and remains separate from the CC0 community-food export; importing exercises never changes their license to CC0.

Public search and export have independent per-IP limits and PostgreSQL statement timeouts. The JSON export streams one validated record at a time and refuses catalogues above 10,000 rows or 64 MiB of serialized JSON so one anonymous request cannot consume unbounded server memory.

Search defaults to 120 requests per source IP per 60 seconds and a 500 ms statement timeout; configure those guards with EXERCISE_SEARCH_RATE_LIMIT_ATTEMPTS, EXERCISE_SEARCH_RATE_LIMIT_WINDOW_SECONDS, and EXERCISE_SEARCH_STATEMENT_TIMEOUT_MS. Export defaults to 10 requests per source IP per 60 seconds and a 2,000 ms statement timeout; configure it with EXERCISE_EXPORT_RATE_LIMIT_ATTEMPTS, EXERCISE_EXPORT_RATE_LIMIT_WINDOW_SECONDS, and EXERCISE_EXPORT_STATEMENT_TIMEOUT_MS.

Private and license-separated exports

opennosh provides four versioned JSON export boundaries:

GET /api/v1/export/me               authenticated private account data
GET /api/v1/export/foods/community public CC0 community-food pack
GET /api/v1/export/foods/odbl       public ODbL/DbCL Open Food Facts cache
GET /api/v1/export/exercises        public CC BY-SA wger catalogue

/export/me derives the owner from the session and includes that account's settings, custom foods, recipes and ingredient snapshots, food logs, targets, body metrics, workouts, and sets. It never includes password hashes, session tokens, CSRF secrets, or another tenant's records, and every response—including authentication failures—uses Cache-Control: no-store.

The three public exports never contain custom foods, recipes, logs, targets, body metrics, or workouts. Community rows retain pack version, provenance, source-license metadata, and visible contributor credit under a CC0 notice. Open Food Facts rows retain the separate ODbL/DbCL notices. Exercise rows retain wger source, author, license, derivative, and translation attribution.

All four responses are valid JSON objects with schema_version: "1.0.0". The server validates and spools one PostgreSQL row at a time into a secure bounded-memory temporary file, closes the database snapshot, and then streams that file to the client. Slow downloads therefore do not retain a database connection. Public dataset exports retain their row, exact serialized-byte, per-IP rate, and statement-timeout guards. Two shared public spool slots cap retained public temporary data at 128 MiB, while one independently reserved private slot prevents anonymous traffic from blocking a personal export. Response deadlines close abandoned downloads and release their slots and files. The private export is rate-limited per authenticated account and has no row ceiling, so a user can leave with all of their data. Configure the new guards with COMMUNITY_EXPORT_RATE_LIMIT_ATTEMPTS, COMMUNITY_EXPORT_RATE_LIMIT_WINDOW_SECONDS, COMMUNITY_EXPORT_STATEMENT_TIMEOUT_MS, PRIVATE_EXPORT_RATE_LIMIT_ATTEMPTS, PRIVATE_EXPORT_RATE_LIMIT_WINDOW_SECONDS, and PRIVATE_EXPORT_STATEMENT_TIMEOUT_MS. Shared capacity and deadlines use PUBLIC_EXPORT_CONCURRENCY_LIMIT, PRIVATE_EXPORT_CONCURRENCY_LIMIT, EXPORT_CAPACITY_WAIT_SECONDS, PUBLIC_EXPORT_RESPONSE_TIMEOUT_SECONDS, and PRIVATE_EXPORT_RESPONSE_TIMEOUT_SECONDS.

USDA reference-food import

The offline importer accepts FoodData Central JSON files, official JSON ZIP archives, official relational CSV ZIP archives, or extracted CSV directories. It imports only Foundation, FNDDS, and SR Legacy foods into foods_reference; branded and experimental rows are rejected. Each accepted row retains its FDC ID, USDA source, CC0 license, source publication timestamp, nutrients per 100 grams, and gram-based household portions.

Download the bulk files from the FoodData Central dataset page, run migrations, then pass one or more archives:

make db-upgrade
make usda-import USDA_PATHS="downloads/foundation.zip downloads/fndds.zip downloads/sr-legacy.zip"

The importer uses DATABASE_URL by default and writes 500 records per batch. Override either setting by including --database-url <url> or --batch-size <count> in USDA_PATHS after the input paths.

The job streams large JSON archives, bounds archive expansion and record collections, upserts on FDC ID, and prints progress after each database batch. A rerun updates the same rows instead of duplicating them, while an older USDA release cannot overwrite a newer one. Malformed or incomplete source records are identified by FDC ID on standard error; valid records are still written, and the command exits nonzero when any rows were rejected. Error output retains a bounded sample and reports how many additional issues were omitted.

The production reference release is pinned in config/usda-reference-release.v1.json. It combines USDA Foundation 2026-04-30, FNDDS 2021-2023 published 2024-10-31, and SR Legacy 2018-04: 13,620 source rows, 13,497 accepted reference foods, and 123 rejected rows that do not meet opennosh's nutrient and portion contract. Verify the exact files without a database write:

make usda-release-verify USDA_SOURCE_DIRECTORY=downloads

The release command checks the USDA host, filenames, byte sizes, SHA-256 digests, per-dataset row accounting, and duplicate FDC IDs before opening a database transaction. Applying the release uses the bounded administration role, refuses to remove unexpected existing rows, and invalidates only the unfiltered retained search projections so the next readiness request rebuilds search while old cursor snapshots remain usable.

Branded Foods are assessed separately and never enter foods_reference through this release. make usda-branded-assess USDA_BRANDED_ARCHIVE=/path/to/archive.zip verifies the pinned April 2026 archive and applies the GTIN, duplicate-quarantine, and scale gates documented in docs/usda-branded-assessment.md.


Trust and release gates

make trust-gates-check reports the exact pull-request, release, and scheduled inventory: covered publication transitions, rescue outcomes, security-policy branches, user roles, runtime budgets, evidence retention, and active exceptions. Primary visual and real-vertical failures stay failed; diagnostic reruns only collect evidence. See Testing.

Product documents

File Purpose Who reads it
01-RESEARCH.md Competitive landscape, the actual gap, why now You
02-PRD.md Product requirements, MVP scope, explicit non-goals You + prd-to-github-issues
03-TRD.md Stack, data model, services, API surface You + prd-to-github-issues
04-DATA-LICENSING.md Read this first. The ODbL constraint that shapes the architecture You, before any code
docs/foodpack-spec.md The contribution unit. The most important file here Contributors + implementing agent
docs/api-contracts.md Canonical OpenAPI, problem-details, generated TypeScript, compatibility, and regeneration contract API + frontend contributors
docs/health-safety-copy-review.md Screen/state inventory and human approval record for health-sensitive copy Human reviewer + implementing agent
docs/license-notice-review.md Approved source-by-source notice matrix and release-artifact inventory Project owner + release reviewer
docs/domain-operations.md Non-secret domain, redirect, DNSSEC, and inbound-mail operations record Maintainers
docs/testing.md API, PostgreSQL, deterministic workflow-testkit, and fault-matrix commands and extension rules Backend contributors + release reviewers
docs/package-operations.md PyPI and npm release controls, verified publication evidence, and ongoing release procedure Maintainers + release reviewers
docs/public-operations.md Fixed status freshness, append-only incidents, recovery proof, redaction, and rollback Operators + security reviewers
docs/clean-install-verification.md Independent-machine Docker Compose, browser QA, and restart-persistence evidence Operators + release reviewers
docs/operations/governed-forge.md Steward approval, protected-merge trust boundary, two-App permissions, activation, intervention, and recovery runbook Operators + security reviewers
docs/operations/render-production.md Render deployment, isolated worker credentials, publication activation, federation enrollment, and live failure-drill ceremonies Operators + security reviewers
docs/governance-stewardship.md Accountable review, dispute, appeal, activation, and rollback contract Stewards + operators
DESIGN.md Living Commons brand, interface, accessibility, motion, and production asset contract Designers + frontend contributors
docs/designs/opennosh-full-movement-platform.md Finalized public-platform vision, release trains, trust boundaries, and implementation sequence Product, design, and engineering contributors
docs/designs/commons-missions.md Versioned Commons mission lifecycle, accepted-activity projection, trust boundaries, and activation gates Product, backend, and release contributors
docs/designs/t22-living-commons-reference-evidence.md Refreshed Living Commons reference acceptance map, responsive audit, and source hashes Designers + release reviewers
docs/spikes/t4-pgqueuer.md Accepted PgQueuer delivery boundary, publication-ledger ownership, T10 handler status, migration precondition, and production activation gate Backend contributors + operators
web/assets/fonts/v2/README.md Reproducible public font sources, subsets, licenses, route-scoped loading, budgets, and integrity hashes Frontend contributors + release reviewers
NOTICE.md and LICENSES.md Combined distribution notice and repository-wide licensing map Users + distributors
06-CONTRIBUTOR-MODEL.md How the community layer actually works You
07-LAUNCH-PLAN.md Naming, positioning, launch sequencing You
08-PRODUCT-DECISIONS.md Settled product, licensing, scope, and operating decisions You + implementing agent
AGENTS.md and CLAUDE.md Repository workflow, test commands, and GStack routing Implementing agents
web/AGENTS.md Version-specific Next.js guidance generated by the framework Frontend contributors + implementing agents
CONTRIBUTING.md Contribution workflow, boundaries, and validation commands Contributors
CONVENTIONS.md Health-safety, product, and data constraints Contributors + implementing agent
SECURITY.md Private vulnerability-reporting process Security reporters + maintainers
AUTHORS.md Maintainer and contributor credit Contributors + users
CHANGELOG.md Versioned record of shipped changes Users + maintainers
TODOS.md Open follow-up work plus completed launch-readiness and operational records Maintainers

How to use this

Do not hand the whole folder to an agent and say "build it." That produces a 4,000-line PR nobody can review.

The intended path:

  1. Read 04-DATA-LICENSING.md and 08-PRODUCT-DECISIONS.md before implementation.
  2. Treat 02-PRD.md and 03-TRD.md as the settled product and technical inputs.
  3. Run the issue-generation pipeline against 02-PRD.md and 03-TRD.md to produce a dependency-ordered issue queue.
  4. Keep docs/foodpack-spec.md in the implementation repository; contributors and the validator both depend on it.
  5. Treat 01, 06, and 07 as historical strategy and launch context, not implementation inputs.

The one-line pitch

Every calorie tracker locks your data behind a subscription and can't find your dal. This one runs on your hardware, and the food database is a git repo you can send a PR to.


The thing that will kill this project

Not the code. The food database.

Every prior attempt in this category either (a) leaned entirely on a crowd-sourced database with poor non-Western coverage, or (b) built a food table nobody else could contribute to. If food packs aren't trivially easy to write and merge, this becomes another solo-maintained tracker in a category that already has a dozen. docs/foodpack-spec.md is the load-bearing document.

Release files for opennosh 0.99.2.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for opennosh 0.99.2.0
File Size Uploaded
opennosh-0.99.2.0.tar.gz 477.0 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for opennosh 0.99.2.0
File Interpreter ABI Platform
opennosh-0.99.2.0-py3-none-any.whl Python 3 none any Details

Total release size: 1.0 MB

Release files / opennosh-0.99.2.0.tar.gz

Download URL opennosh-0.99.2.0.tar.gz
Size 477.0 kB
Tags Source
SHA-256 checksum
How to use checksums
833b6d9ef3b6c42f75a6151e15ac2024da9c541aea92d2b8243a4ffff739f84c
BLAKE2b-256 checksum
How to use checksums
191c094bd9b1149209ae181f25bec640581046125d8c986aab7ef8d0801de9aa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / opennosh-0.99.2.0-py3-none-any.whl

Download URL opennosh-0.99.2.0-py3-none-any.whl
Size 571.7 kB
Tags Python 3
SHA-256 checksum
How to use checksums
617334d49f8873c935653e7f51f0d109d9fb058c186d1447c9616e5f1354a50f
BLAKE2b-256 checksum
How to use checksums
7e99bb015e9bb17ee9516e911cde0c76fd2544a7ffcf7e3793700b47853192cd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release history Release notifications | RSS feed

This release

0.99.2.0 This release

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page