MINARA

작업 공간 파일 나열

GET /v1/workspace/files: 모든 편집 가능한 작업 공간 md 파일을 크기, mtime 및 sha256과 함께 열거합니다.

GET /v1/workspace/files

모든 편집 가능한 작업 공간 md 파일을 크기, mtime 및 sha256과 함께 열거합니다. 디스크에 없는 파일은 exists: false로 표시됩니다. 이름 집합은 apps/agent/src/workspace/seed.tsEDITABLE_WORKSPACE_FILES에서 화이트리스트로 제한됩니다.

메서드GET
경로/v1/workspace/files
인증GATEWAY_AUTH_TOKEN이 설정된 경우 Authorization: Bearer <token> 필요
카테고리workspace

응답 본문

{ "ok": true, "data": { "workspace_dir": "/home/user/.minara/workspace", "files": [{ "name": "SOUL.md", "exists": true, "size": 1982, "mtime": 1714492800000, "sha256": "deadbeef..." }, { "name": "HEARTBEAT.md", "exists": false, "size": 0, "mtime": null, "sha256": null }] } }

목차