Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ReadCmd = &cobra.Command{
Use: "read",
Short: "Read the memory index",
Long: "\nRead and display the memory index maintained by the daemon.\n\n" +
"This command loads the precomputed index file and formats it for output. The index " +
"contains metadata and semantic analysis for all files in your memory directory.\n\n" +
"The read command is typically called by agent framework hooks (like Claude Code's " +
"SessionStart hooks) to load the memory index into the agent's context.",
Example: ` # Plain XML output (structured format)
agentic-memorizer read
# Plain markdown output (human-readable)
agentic-memorizer read --format markdown
# Plain JSON output (programmatic access)
agentic-memorizer read --format json
# Integration-wrapped output for Claude Code
agentic-memorizer read --format xml --integration claude-code-hook
# Verbose output with additional details
agentic-memorizer read --verbose`,
PreRunE: validateRead,
RunE: runRead,
}
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.