NOTICE.md +1−0 View file@@ -0,0 +1 @@
1 +
본 코드는 A-SW 서비스 플랫폼 사용 흐름을 위한 VIA 참조 MVP입니다. 주식회사 하다의 공식 연구개발 결과물이 아닙니다.[참조 MVP] 온실 이송 플랫폼 고도화 — 이송 플랫폼의 주행·적재·현장 실증 상태를 제공하는 위탁연구 참조 MVP입니다.
https://git.agrithing.ai/hada/greenhouse-transport-platform.git 314c1df 4315384 35b4834 8e1eda4 8e1eda4d7108fb2c33701b2671e095a96a7dce05 NOTICE.md +1−0 View file본 코드는 A-SW 서비스 플랫폼 사용 흐름을 위한 VIA 참조 MVP입니다. 주식회사 하다의 공식 연구개발 결과물이 아닙니다.README.md +21−0 View file# 온실 이송 플랫폼 고도화> **A-SW Hub 연동 검증용 참조 MVP** — 주식회사 비아가 기관별 Git→품질검증→제품 기준선 흐름을 설명하기 위해 작성했습니다. **주식회사 하다의 공식 연구성과나 납품 코드를 대체하지 않습니다.**## 제품 내 역할- 대상 제품: **추종형 이송로봇**- 역할 기관: **주식회사 하다**- 기술 영역: **Field Platform**- 배포 대상: **MCU**이송 플랫폼의 주행·적재·현장 실증 상태를 제공하는 위탁연구 참조 MVP입니다.## 실행```bashpython run.py examples/input.jsonpython -m unittest discover -s tests -v```실제 기관 구현은 `contracts/component.interface.json`의 저장소 식별자와 제품 기준선 연결 규칙을 유지하면서 교체할 수 있습니다.contracts/component.interface.json +24−0 View file{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "온실 이송 플랫폼 고도화 reference interface", "type": "object", "required": [ "component", "accepted", "status" ], "properties": { "component": { "const": "hada/greenhouse-transport-platform" }, "accepted": { "type": "boolean" }, "status": { "type": "string" }, "target": { "const": "mcu" } }}release/manifest.json +21−0 View file{ "schemaVersion": "asw.release/v1", "component": "hada/greenhouse-transport-platform", "displayName": "온실 이송 플랫폼 고도화", "owner": "주식회사 하다", "implementationAuthor": "주식회사 비아 (연동 검증용 참조 구현)", "version": "0.1.0-mvp", "domain": "Field Platform", "status": "REFERENCE_MVP", "compatibility": { "product": "worker-following-transport-robot", "api": "asw-component/v1" }, "evidence": [ "static-analysis", "unit-test", "component-test", "interface-contract", "sha256" ]}