에이전트 도구
ToolDefinition은 Agent tool의 stable callable contract입니다.
현재 runtime은 tool을 prompt 속 suggestion이 아니라 first-class runtime object로 다룹니다.
tool이 아닌 것
모든 capability가 tool family여야 하는 것은 아닙니다. 대표적으로:proactive- 주로 loop directive와 wake queue에 속함
learning- 주로 loop directive와 learn store에 속함
현재 shape
tool definition은 보통 다음을 가집니다.namedescriptioninputSchemaoutputSchemaownershippermissionPolicyeffectsreadOnlydestructiveinterruptBehavior
ownership
tool surface에서는 단순히 “무슨 일을 한다”보다, “누가 그 side effect를 소유하느냐”가 중요합니다. 그래서 runtime은:- managed tool
- sandbox-backed tool
- custom tool
permission policy
permission policy는 metadata가 아니라 runtime contract입니다. 현재 중요한 posture는:- read-first surface를 먼저 쓰도록 유도
- high-risk mutation은 confirmation 또는 evaluator gate 뒤로 미룸
- shared substrate mutation은 explicit promotion path만 허용
managed navigation / recall tool
현재 Agent는 tool을 통해:- session navigation
- cross-session snapshot / event reread
- retrieval search
- memory read / write / promote
- outcome read / define / evaluate
- shell describe / exec / history / wait
- retrieval candidate는 hint
- session truth나 runtime artifact reread가 verification
learning 관련 tool surface
learning capture 자체는 harness가 담당합니다. 하지만 inspection과 promotion은 tool surface로 올라옵니다. 즉:- capture
- harness
- inspect / search / promote
- tools
이 페이지가 다루지 않는 것
이 페이지는 다음을 전부 다시 설명하지 않습니다.- session lifecycle
- sandbox execution boundary
- context assembly
- bootstrap file 의미