revert fix(agentic): harden TODO workspace write Co-Authored-By: Virgil <virgil@lethean.io>
13 lines
233 B
Go
13 lines
233 B
Go
// SPDX-License-Identifier: EUPL-1.2
|
|
|
|
package agentic
|
|
|
|
import (
|
|
core "dappco.re/go/core"
|
|
)
|
|
|
|
func Example_planPath() {
|
|
path := planPath("/tmp/plans", "my-plan")
|
|
core.Println(core.HasSuffix(path, "my-plan.json"))
|
|
// Output: true
|
|
}
|