go-process:
- Register factory, Result lifecycle, 5 named Action handlers
- Start/Run/StartWithOptions/RunWithOptions all return core.Result
- core.ID() replaces fmt.Sprintf, core.As replaces errors.As
core/agent:
- PrepSubsystem + monitor.Subsystem + setup.Service embed ServiceRuntime[T]
- 22 named Actions + agent.completion Task pipeline in OnStartup
- ChannelNotifier removed — all IPC via c.ACTION(messages.X{})
- proc.go: all methods via s.Core().Process(), returns core.Result
- status.go: WriteAtomic + JSONMarshalString
- paths.go: Fs.NewUnrestricted() replaces unsafe.Pointer
- transport.go: ONE net/http file — HTTPGet/HTTPPost/HTTPDo/MCP transport
- All disallowed imports eliminated from source files (13 quality gates)
- String concat eliminated — core.Concat() throughout
- 1:1 _test.go + _example_test.go for every source file
- Reference docs synced from core/go v0.8.0
- RFC-025 updated with net/http, net/url, io/fs quality gates
- lib.go: io/fs eliminated via Data.ListNames, Array[T].Deduplicate
Co-Authored-By: Virgil <virgil@lethean.io>
53 lines
1.4 KiB
Go
53 lines
1.4 KiB
Go
// SPDX-License-Identifier: EUPL-1.2
|
|
|
|
package agentic
|
|
|
|
import (
|
|
"time"
|
|
|
|
core "dappco.re/go/core"
|
|
)
|
|
|
|
// CompletionEvent is emitted when a dispatched agent finishes.
|
|
// Written to ~/.core/workspace/events.jsonl as append-only log.
|
|
//
|
|
// event := agentic.CompletionEvent{Type: "agent_completed", Agent: "codex", Workspace: "go-io-123", Status: "completed"}
|
|
type CompletionEvent struct {
|
|
Type string `json:"type"`
|
|
Agent string `json:"agent"`
|
|
Workspace string `json:"workspace"`
|
|
Status string `json:"status"`
|
|
Timestamp string `json:"timestamp"`
|
|
}
|
|
|
|
// emitEvent appends an event to the events log.
|
|
func emitEvent(eventType, agent, workspace, status string) {
|
|
eventsFile := core.JoinPath(WorkspaceRoot(), "events.jsonl")
|
|
|
|
event := CompletionEvent{
|
|
Type: eventType,
|
|
Agent: agent,
|
|
Workspace: workspace,
|
|
Status: status,
|
|
Timestamp: time.Now().UTC().Format(time.RFC3339),
|
|
}
|
|
|
|
line := core.Concat(core.JSONMarshalString(event), "\n")
|
|
|
|
// Append to events log
|
|
r := fs.Append(eventsFile)
|
|
if !r.OK {
|
|
return
|
|
}
|
|
core.WriteAll(r.Value, line)
|
|
}
|
|
|
|
// emitStartEvent logs that an agent has been spawned.
|
|
func emitStartEvent(agent, workspace string) {
|
|
emitEvent("agent_started", agent, workspace, "running")
|
|
}
|
|
|
|
// emitCompletionEvent logs that an agent has finished.
|
|
func emitCompletionEvent(agent, workspace, status string) {
|
|
emitEvent("agent_completed", agent, workspace, status)
|
|
}
|