REPOSITORY
cwsfa/following-amr-validation Private
[참조 MVP] 추종형 이송로봇 통합검증 — 추종·정지·레일 진입·적재 이송 시나리오를 확인하는 참조 검증 자산입니다.
https://git.agrithing.ai/cwsfa/following-amr-validation.git 33cdd75 feat: 추종형 이송로봇 통합검증 구체 MVP 구현
153f903 ci: add static dynamic and evidence gates
2898f91 feat: add executable institution reference MVP
28e1cdb 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 210 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))