NOTICE.md +1−0 View file@@ -0,0 +1 @@
1 +
본 코드는 A-SW 서비스 플랫폼 사용 흐름을 위한 VIA 참조 MVP입니다. 주식회사 정원에스에프에이의 공식 연구개발 결과물이 아닙니다.[참조 MVP] 작업자 추종 이송 AMR — 작업자 목표와 적재·배터리 상태를 이송 플랫폼 명령으로 결합하는 참조 MVP입니다.
https://git.agrithing.ai/cwsfa/following-transport-amr.git a9ee8ba c42d1d9 716132f 330e8cc 330e8ccaf3a44b4bc74fff8c6c4ae0069e430729 NOTICE.md +1−0 View file본 코드는 A-SW 서비스 플랫폼 사용 흐름을 위한 VIA 참조 MVP입니다. 주식회사 정원에스에프에이의 공식 연구개발 결과물이 아닙니다.README.md +21−0 View file# 작업자 추종 이송 AMR> **A-SW Hub 연동 검증용 참조 MVP** — 주식회사 비아가 기관별 Git→품질검증→제품 기준선 흐름을 설명하기 위해 작성했습니다. **주식회사 정원에스에프에이의 공식 연구성과나 납품 코드를 대체하지 않습니다.**## 제품 내 역할- 대상 제품: **추종형 이송로봇**- 역할 기관: **주식회사 정원에스에프에이**- 기술 영역: **AMR Integration**- 배포 대상: **ACU**작업자 목표와 적재·배터리 상태를 이송 플랫폼 명령으로 결합하는 참조 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": "작업자 추종 이송 AMR reference interface", "type": "object", "required": [ "component", "accepted", "status" ], "properties": { "component": { "const": "cwsfa/following-transport-amr" }, "accepted": { "type": "boolean" }, "status": { "type": "string" }, "target": { "const": "acu" } }}release/manifest.json +21−0 View file{ "schemaVersion": "asw.release/v1", "component": "cwsfa/following-transport-amr", "displayName": "작업자 추종 이송 AMR", "owner": "주식회사 정원에스에프에이", "implementationAuthor": "주식회사 비아 (연동 검증용 참조 구현)", "version": "0.1.0-mvp", "domain": "AMR Integration", "status": "REFERENCE_MVP", "compatibility": { "product": "worker-following-transport-robot", "api": "asw-component/v1" }, "evidence": [ "static-analysis", "unit-test", "component-test", "interface-contract", "sha256" ]}