### Liminal tools ---
# info: Activates liminal shell extension and tools. Managed through `liminal_cl` command. Learn more at {info_url}
# version {LIMINAL_PACKAGE_VERSION}. date = {install_date}
. "{extension_source_path}"
sourcing_exit_status=$?
if [ "$sourcing_exit_status" -ne 0 ]; then
	# Attempt to use the CLI, if it exists for a more helpful message.
	if command -v liminal_cl >/dev/null 2>&1; then
		liminal_cl doctor --check-shell-env
	else
		echo "Error: Liminal shell extension not activated from " >&2
	fi
fi
### --- Liminal tools
