> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mindli.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Stats

> View your thinking statistics, patterns, and experimental analytics.

export const ProTips = ({page, item, icon, children}) => {
  const label = page || item;
  if (!label || !children) {
    return null;
  }
  return <>
      <Heading level="3">
        {icon ? <span style={{
    marginRight: "10px",
    display: "inline-block"
  }}>
            {icon}
          </span> : null}
        Pro Tips for: {label}
      </Heading>
      {children}
    </>;
};

export const MndIcon = ({icon, size = 20, color, circle = false}) => {
  const iconUrl = `https://app.mindli.com/api/icon/${icon}`;
  const [isDarkMode, setIsDarkMode] = React.useState(false);
  React.useEffect(() => {
    const checkTheme = () => {
      const darkClass = document.documentElement.classList.contains('dark');
      const darkAttr = document.documentElement.getAttribute('data-theme') === 'dark';
      setIsDarkMode(darkClass || darkAttr);
    };
    checkTheme();
    const observer = new MutationObserver(checkTheme);
    observer.observe(document.documentElement, {
      attributes: true,
      attributeFilter: ['class', 'data-theme']
    });
    return () => observer.disconnect();
  }, []);
  let finalColor = color;
  if (!color) {
    finalColor = isDarkMode ? '#FFFFFF' : '#333333';
  }
  const iconElement = <span style={{
    width: `${size}px`,
    height: `${size}px`,
    backgroundColor: finalColor,
    maskImage: `url(${iconUrl})`,
    maskSize: 'contain',
    maskRepeat: 'no-repeat',
    WebkitMaskImage: `url(${iconUrl})`,
    WebkitMaskSize: 'contain',
    display: 'inline-block',
    verticalAlign: 'middle'
  }} />;
  if (!circle) {
    return <span style={{
      display: 'inline-flex',
      alignItems: 'center',
      justifyContent: 'center',
      verticalAlign: 'middle',
      transform: 'translateY(-0.08em)'
    }}>
        {iconElement}
      </span>;
  }
  const circleSize = Math.max(size + 6, 20);
  return <span style={{
    display: 'inline-flex',
    width: `${circleSize}px`,
    height: `${circleSize}px`,
    border: `2px solid ${finalColor}`,
    borderRadius: '9999px',
    alignItems: 'center',
    justifyContent: 'center',
    verticalAlign: 'middle',
    transform: 'translateY(-0.08em)'
  }}>
      {iconElement}
    </span>;
};

> “I think; therefore I am.”
> René Descartes 1596–1650 (French philosopher, mathematician, and scientist, often referred to as the "Father of Modern Philosophy.")

## Overview

* Our roadmap for "human thinking in the age of AI" draws from how people use MindLi.
* Here, we share various experimental statistics on your thinking.
* Share your feedback through the Help <MndIcon icon="MNDIconCircleQuestionMark" /> menu.

For shared actions across MindLi, including the MindLi button, Help button, Avatar button, and Search field, see [Using MindLi](/get-started/using-mindli).

## Stats Screen Controls

1. **<MndIcon icon="MNDIconChartArea" /> Stats:** Refresh data to get the latest statistics

2. **<MndIcon icon="MNDIconManySparks" /> Sparks:** View the 4 oldest Sparks in a selected Box, adjust preview size, and show/hide archived Sparks

<ProTips item="Stats" icon={<MndIcon icon="MNDIconBrain" color="#FF9900" size={18} />}>
  <ol>
    <li>Use <MndIcon icon="MNDIconManySparks" size={14} /> Sparks > <MndIcon icon="MNDIconBoxes" size={14} /> Show Oldest Sparks in a Box to resurface long-running topics and decide what to archive or reconnect</li>
    <li>Use <MndIcon icon="MNDIconManySparks" size={14} /> Sparks > <MndIcon icon="MNDIconArchive" size={14} /> Show Archived to confirm cleanup is not hiding important patterns</li>
  </ol>
</ProTips>
