goose_list: List Objects in Goose Memory

View source: R/memory.R

goose_listR Documentation

List Objects in Goose Memory

Description

List all R objects saved in Goose memory, optionally filtered by category or tags.

Usage

goose_list(category = NULL, tags = NULL, global = TRUE)

Arguments

category

Character string. Filter by category (default: NULL shows all)

tags

Character vector. Filter by tags (default: NULL shows all)

global

Logical. If TRUE (default), lists global memory. If FALSE, lists project-local memory.

Value

A data.frame with information about saved objects

Examples

## Not run: 
# List all saved objects
goose_list()

# List objects in a specific category
goose_list(category = "models")

# List objects with specific tags
goose_list(tags = "production")

## End(Not run)

gooseR documentation built on Feb. 6, 2026, 5:07 p.m.