MCPcopy Create free account
hub / github.com/compozy/agh / newMemoryExtractorCommand

Function newMemoryExtractorCommand

internal/cli/memory.go:972–983  ·  view source on GitHub ↗
(deps commandDeps)

Source from the content-addressed store, hash-verified

970}
971
972func newMemoryExtractorCommand(deps commandDeps) *cobra.Command {
973 cmd := &cobra.Command{
974 Use: memoryExtractorKey,
975 Short: "Operate Memory v2 extractor runtime",
976 }
977 cmd.AddCommand(newMemoryExtractorStatusCommand(deps))
978 cmd.AddCommand(newMemoryExtractorListPendingCommand(deps))
979 cmd.AddCommand(newMemoryExtractorReplayCommand(deps))
980 cmd.AddCommand(newMemoryExtractorDrainCommand(deps))
981 cmd.AddCommand(newMemoryExtractorDisableCommand())
982 return cmd
983}
984
985func newMemoryExtractorStatusCommand(deps commandDeps) *cobra.Command {
986 var sessionID string

Callers 1

newMemoryCommandFunction · 0.85

Tested by

no test coverage detected