A-SW Hub / Repositories
Local Gitea · READ ONLY
← 저장소 Repositories
REPOSITORY

agerobotics/high-lift-mobile-platform Private

[참조 MVP] 고소작업 이동 플랫폼 — 주행·시저리프트·충전 상태를 단일 플랫폼 상태로 조정하는 참조 MVP입니다.

https://git.agrithing.ai/agerobotics/high-lift-mobile-platform.git
4 commits
COMMIT DETAIL

docs: define product role and interface contract

A-SW Reference Factory <[email protected]> · 2026. 8. 3. 오후 2:18:33
6c4ec50b809f33cb19e6ebde95ee89f3017a75f4
4 changed files +67 −0
added NOTICE.md +1−0 View file
@@ -0,0 +1 @@
1 + 본 코드는 A-SW 서비스 플랫폼 사용 흐름을 위한 VIA 참조 MVP입니다. 에이지로보틱스의 공식 연구개발 결과물이 아닙니다.
added README.md +21−0 View file
@@ -0,0 +1,21 @@
1 + # 고소작업 이동 플랫폼
2 +
3 + > **A-SW Hub 연동 검증용 참조 MVP** — 주식회사 비아가 기관별 Git→품질검증→제품 기준선 흐름을 설명하기 위해 작성했습니다. **에이지로보틱스의 공식 연구성과나 납품 코드를 대체하지 않습니다.**
4 +
5 + ## 제품 내 역할
6 +
7 + - 대상 제품: **과채류 적과·적심 로봇**
8 + - 역할 기관: **에이지로보틱스**
9 + - 기술 영역: **Mobile Platform**
10 + - 배포 대상: **MCU**
11 +
12 + 주행·시저리프트·충전 상태를 단일 플랫폼 상태로 조정하는 참조 MVP입니다.
13 +
14 + ## 실행
15 +
16 + ```bash
17 + python run.py examples/input.json
18 + python -m unittest discover -s tests -v
19 + ```
20 +
21 + 실제 기관 구현은 `contracts/component.interface.json`의 저장소 식별자와 제품 기준선 연결 규칙을 유지하면서 교체할 수 있습니다.
added contracts/component.interface.json +24−0 View file
@@ -0,0 +1,24 @@
1 + {
2 + "$schema": "https://json-schema.org/draft/2020-12/schema",
3 + "title": "고소작업 이동 플랫폼 reference interface",
4 + "type": "object",
5 + "required": [
6 + "component",
7 + "accepted",
8 + "status"
9 + ],
10 + "properties": {
11 + "component": {
12 + "const": "agerobotics/high-lift-mobile-platform"
13 + },
14 + "accepted": {
15 + "type": "boolean"
16 + },
17 + "status": {
18 + "type": "string"
19 + },
20 + "target": {
21 + "const": "mcu"
22 + }
23 + }
24 + }
added release/manifest.json +21−0 View file
@@ -0,0 +1,21 @@
1 + {
2 + "schemaVersion": "asw.release/v1",
3 + "component": "agerobotics/high-lift-mobile-platform",
4 + "displayName": "고소작업 이동 플랫폼",
5 + "owner": "에이지로보틱스",
6 + "implementationAuthor": "주식회사 비아 (연동 검증용 참조 구현)",
7 + "version": "0.1.0-mvp",
8 + "domain": "Mobile Platform",
9 + "status": "REFERENCE_MVP",
10 + "compatibility": {
11 + "product": "fruit-thinning-pinching-robot",
12 + "api": "asw-component/v1"
13 + },
14 + "evidence": [
15 + "static-analysis",
16 + "unit-test",
17 + "component-test",
18 + "interface-contract",
19 + "sha256"
20 + ]
21 + }