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

# Feedback & Updates

> Help shape the future of MemoryPlugin and stay updated on our progress

export const ArticleInfo = ({author, lastUpdated}) => {
  const authorAvatar = author === 'asad' ? '/images/author-asad.jpeg' : null;
  const formatDate = dateInput => {
    if (!dateInput) return '';
    if (typeof dateInput === 'string' && !dateInput.match(/^\d{4}-\d{2}-\d{2}/)) {
      return dateInput;
    }
    try {
      const date = new Date(dateInput);
      const now = new Date();
      const diffTime = Math.abs(now - date);
      const diffDays = Math.floor(diffTime / (1000 * 60 * 60 * 24));
      if (diffDays === 0) return 'today';
      if (diffDays === 1) return '1 day ago';
      if (diffDays < 7) return `${diffDays} days ago`;
      if (diffDays < 30) return `${Math.ceil(diffDays / 7)} week${Math.ceil(diffDays / 7) > 1 ? 's' : ''} ago`;
      if (diffDays < 365) return `${Math.ceil(diffDays / 30)} month${Math.ceil(diffDays / 30) > 1 ? 's' : ''} ago`;
      return `${Math.ceil(diffDays / 365)} year${Math.ceil(diffDays / 365) > 1 ? 's' : ''} ago`;
    } catch {
      return dateInput;
    }
  };
  return <div style={{
    display: "flex",
    alignItems: "center",
    gap: "8px",
    marginBottom: "16px",
    padding: "8px 12px",
    backgroundColor: "var(--ifm-color-emphasis-100)",
    borderRadius: "6px",
    fontSize: "14px",
    color: "var(--ifm-color-content-secondary)",
    border: "1px solid var(--ifm-color-emphasis-200)",
    opacity: "0.8"
  }}>
      <div style={{
    width: "40px",
    height: "40px",
    borderRadius: "50%",
    background: authorAvatar || "linear-gradient(45deg, #4F46E5, #7C3AED)",
    display: "flex",
    alignItems: "center",
    justifyContent: "center",
    color: "white",
    fontWeight: "bold",
    fontSize: "18px"
  }}>
        {authorAvatar ? <img src={authorAvatar} alt={author} style={{
    width: "100%",
    height: "100%",
    borderRadius: "50%"
  }} /> : author?.[0]?.toUpperCase()}
      </div>
      <div>
        <div style={{
    fontWeight: "400",
    fontSize: "14px"
  }}>Written by <span style={{
    fontWeight: "600"
  }}>{author}</span></div>
        <div style={{
    fontSize: "14px"
  }}>Last updated <span style={{
    fontWeight: "600"
  }}>{formatDate(lastUpdated)}</span></div>
      </div>
    </div>;
};

<ArticleInfo author="asad" lastUpdated="2025-08-20" />

## Your Voice Matters

We're building MemoryPlugin for you, and your feedback drives our development. Here's how you can get involved and stay informed:

<CardGroup cols={2}>
  <Card title="Feature Requests & Feedback" icon="comment" href="https://feedback.memoryplugin.com">
    Share your ideas, request new features, and vote on what matters most to you. Your input directly influences our development priorities.
  </Card>

  <Card title="Product Roadmap" icon="map" href="https://feedback.memoryplugin.com/roadmap">
    See what we're working on right now, what's coming soon, and our long-term vision. Track the progress of features you've requested.
  </Card>

  <Card title="Changelog" icon="list" href="https://feedback.memoryplugin.com/changelog">
    Stay updated with our latest releases, improvements, and bug fixes. See how MemoryPlugin evolves with each update.
  </Card>

  <Card title="Support" icon="envelope" href="mailto:support@memoryplugin.com">
    Need help or have questions? Our support team is here to assist you with any issues or inquiries.
  </Card>
</CardGroup>

## How to Contribute

### 1. Submit Feature Requests

Visit our [feedback portal](https://feedback.memoryplugin.com) to:

* Submit new feature ideas
* Share your use cases
* Vote on existing requests

For bugs or technical issues, please contact [support@memoryplugin.com](mailto:support@memoryplugin.com) for faster resolution.

### 2. Vote on Ideas

Help prioritize development by voting on features that matter most to you. The most requested features get our attention first.

### 3. Join the Discussion

Comment on existing requests to add context, share your perspective, or suggest improvements.

## Stay Connected

<Info>
  Check the [roadmap](https://feedback.memoryplugin.com/roadmap) regularly to see progress on features you've requested or voted for.
</Info>

We release updates frequently. Visit our [changelog](https://feedback.memoryplugin.com/changelog) to see what's new and what's been improved.

## Quick Links

* **Request a Feature**: [feedback.memoryplugin.com](https://feedback.memoryplugin.com)
* **View Roadmap**: [feedback.memoryplugin.com/roadmap](https://feedback.memoryplugin.com/roadmap)
* **See Recent Updates**: [feedback.memoryplugin.com/changelog](https://feedback.memoryplugin.com/changelog)
* **Get Support**: [support@memoryplugin.com](mailto:support@memoryplugin.com)
