-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Problem: Some packages lack package-level godoc comments.
Required Changes:
- Add
doc.goor package comment to:agent/packagememory/packagereasoner/packagecodec/packageprompt/jsonify/package
Template (agent/doc.go):
// Package agent provides implementations of the three core agent types:
// Prompter (stateless), Manifold (tool-enabled), and Automata (full agent).
//
// Usage:
//
// // Simple stateless agent
// prompter := agent.NewPrompter(llm, encoderFunc)
// result, _ := prompter.Prompt(ctx, input)
//
// // Tool-enabled agent
// manifold := agent.NewManifold(llm, encoder, decoder, registry)
// result, _ := manifold.Prompt(ctx, input)
//
// // Full autonomous agent
// automata := agent.NewAutomata(llm, memory, encoder, decoder, reasoner)
// result, _ := automata.Prompt(ctx, input)
//
// See package examples for detailed usage patterns.
package agentEstimated Effort: 1.5 hours
Skills Required: Technical writing, godoc