chore(observability): merge v2
This commit is contained in:
commit
a18e5de4af
435 changed files with 18249 additions and 12191 deletions
|
|
@ -4,6 +4,7 @@ import {
|
|||
ATTR_OPENCODE_SUBAGENT_AGENT_NAME,
|
||||
ATTR_OPENCODE_SUBAGENT_SESSION_ID,
|
||||
} from "@opencode-ai/core/observability/semconv"
|
||||
import { Money } from "@opencode-ai/schema/money"
|
||||
import { AppNodeBuilder } from "@opencode-ai/core/effect/app-node-builder"
|
||||
import { LayerNode } from "@opencode-ai/core/effect/layer-node"
|
||||
import { makeGlobalNode } from "@opencode-ai/core/effect/app-node"
|
||||
|
|
@ -76,7 +77,7 @@ const executionNode = makeGlobalNode({
|
|||
sessionID,
|
||||
assistantMessageID,
|
||||
finish: "stop",
|
||||
cost: 0,
|
||||
cost: Money.USD.zero,
|
||||
tokens,
|
||||
})
|
||||
})
|
||||
|
|
@ -117,6 +118,11 @@ const withSubagent = (location: Location.Ref) =>
|
|||
const locations = yield* LocationServiceMap.Service
|
||||
yield* AgentV2.Service.use((agents) =>
|
||||
agents.transform((draft) => {
|
||||
// The caller identity used by executeTool; subagent permission asserts against it.
|
||||
draft.update(toolIdentity.agent, (agent) => {
|
||||
agent.mode = "primary"
|
||||
agent.permissions.push({ action: "*", resource: "*", effect: "allow" })
|
||||
})
|
||||
draft.update(AgentV2.ID.make("reviewer"), (agent) => {
|
||||
agent.mode = "subagent"
|
||||
agent.model = childModel
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue