Show HN: WOLS โ€“ Open standard for mushroom cultivation tracking

https://news.ycombinator.com/rss Hits: 4
Summary

WeMush Open Labeling Standard (WOLS) An open-source specification for encoding cultivation specimen data in machine-readable QR codes. Vendor-agnostic. Privacy-preserving. Research-grade. ๐Ÿ„ Read the Full Specification | ๐Ÿ“– View Online | ๐ŸŒ WeMush Platform | ๐Ÿ’ฌ Join the Discussion Why WOLS? The global mushroom industry is worth $50 billion but operates on spreadsheets and paper notebooks. There's no standardization, no interoperability, and no way to share cultivation insights across organizations. WOLS fixes this. โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”‚ QR Code Label โ”‚ โ† Scan with any device โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ”‚ โ†“ โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”‚ Complete Specimen History: โ”‚ โ”‚ โ€ข Species & strain โ”‚ โ”‚ โ€ข Growth stage & timeline โ”‚ โ”‚ โ€ข Environmental conditions โ”‚ โ”‚ โ€ข Substrate composition โ”‚ โ”‚ โ€ข Harvest yields โ”‚ โ”‚ โ€ข Lineage & genetics โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ Use Cases ๐Ÿญ Commercial Farms : Regulatory compliance and traceability : Regulatory compliance and traceability ๐Ÿ”ฌ Research Labs : Reproducible experiments and data sharing : Reproducible experiments and data sharing ๐Ÿ  Home Cultivators : Track what works and optimize yields : Track what works and optimize yields โ™ป๏ธ Circular Economy : Prove sustainability claims with verifiable data : Prove sustainability claims with verifiable data ๐Ÿค Equipment Manufacturers: Integrate tracking into products Quick Start Generate a Label (JavaScript/TypeScript) npm install @wemush/wols import { generateLabel } from '@wemush/wols' ; const label = await generateLabel ( { species : "Pleurotus ostreatus" , strain : "Blue Oyster PoHu" , type : "SUBSTRATE" , stage : "COLONIZATION" , created : new Date ( ) . toISOString ( ) , } ) ; // label.qrDataUrl โ†’ QR code as PNG data URL // label.json โ†’ Full specimen data Scan and Parse (Python) pip install wols from wols import parse_label , scan_qr_code # Scan QR code from image specimen_data = scan_qr_code ( "path/to/qr_code.png" ) # Or parse raw data specimen = parse_label ( qr_code_data )...

First seen: 2026-01-05 21:26

Last seen: 2026-01-06 00:27