agent/pkg/monitor/harvest_example_test.go
Snider ecd47fe3db revert fcb9c189e5
revert fix(agentic): harden TODO workspace write

Co-Authored-By: Virgil <virgil@lethean.io>
2026-04-18 11:22:27 +00:00

14 lines
313 B
Go

// SPDX-License-Identifier: EUPL-1.2
package monitor
import (
"dappco.re/go/agent/pkg/agentic"
core "dappco.re/go/core"
)
func Example_sharedWorkspaceStatusPath() {
path := agentic.WorkspaceStatusPath("/srv/workspace/core/go-io/task-5")
core.Println(core.HasSuffix(path, "status.json"))
// Output: true
}