REPOSITORY
cwsfa/following-transport-amr Private
[참조 MVP] 작업자 추종 이송 AMR — 작업자 목표와 적재·배터리 상태를 이송 플랫폼 명령으로 결합하는 참조 MVP입니다.
https://git.agrithing.ai/cwsfa/following-transport-amr.git a9ee8ba feat: 작업자 추종 이송 AMR 구체 MVP 구현
c42d1d9 ci: add static dynamic and evidence gates
716132f feat: add executable institution reference MVP
330e8cc docs: define product role and interface contract
12 items · feat/concrete-mvp-v2
.asw directory → .gitea directory → asw_component directory → contracts directory → examples directory → release directory → tests directory → tools directory → NOTICE.md 176 B → pyproject.toml 216 B → README.md 1.1 KB → run.py 309 B →
·/ run.py
python · 309 B · e9d5621 Download
from __future__ import annotationsimport jsonimport sysfrom asw_component import executepath = sys.argv[1] if len(sys.argv) > 1 else Nonewith open(path, encoding="utf-8") if path else sys.stdin as source: payload = json.load(source)print(json.dumps(execute(payload), ensure_ascii=False, indent=2))