에이전트 워크스페이스
이 페이지는 openboaAgent의 파일시스템 surface를 설명합니다.
이 페이지가 답하는 질문은 다음과 같습니다.
- Agent는 실제로 어디서 일하는가
- 한 session에서 무엇이 writable한가
- 여러 session에 걸쳐 무엇이 shared한가
.openboa-runtime에는 무엇이 있는가/workspace와/workspace/agent는 왜 다른가
이 페이지가 필요한 이유
Agent가 filesystem-native runtime이라면, 단순히 “workspace가 있다” 정도로는 충분하지 않습니다. 실제로는 서로 다른 목적을 가진 surface가 나뉘어 있습니다.- session execution hand
- shared Agent substrate
- runtime catalog
- current work
- shared durable steering
- runtime self-inspection
세 가지 워크스페이스 surface
/workspace: session execution hand
/workspace는 현재 session이 실제로 일하는 writable hand입니다.
여기서 하는 일은:
- shared file을 stage해서 수정
- temporary working file 생성
- bounded shell command 실행
- current-session output inspection과 revision
- 여기서는 자유롭게 일하되
- 이것을 곧바로 global durable truth로 취급하지 않는 것
/workspace/agent: shared substrate
/workspace/agent는 한 Agent identity의 durable shared substrate입니다.
여기에는 보통 다음이 들어 있습니다.
AGENTS.mdSOUL.mdTOOLS.mdIDENTITY.mdUSER.mdHEARTBEAT.mdBOOTSTRAP.mdMEMORY.md
.openboa-runtime: runtime catalog
런타임은 현재 session 상태를 file처럼 다시 읽을 수 있도록:
- environment posture
- mounted resource catalog
- managed tool contract
- outcome / outcome grade / evaluation
- context budget
- event feed / wake traces
- shell state / history / last output
- permission posture
왜 이 split이 중요한가
이 split은 네 가지를 동시에 만족시킵니다.- Agent가 실제 파일시스템 위에서 일하는 감각을 유지
- 한 session이 shared mutation 없이도 생산적으로 작업 가능
- durable shared steering 보호
- prompt 밖에서도 runtime observability 유지