Dashboard / Enovari GitHub Presence Strategy
Total Contacts
0
Completed
0
In Progress
0
Completion Rate
0%
Overall Progress 0%
🔍

Establishing Credibility Without Exposing Source Code

0 items

Table of Contents

0 items

1. Executive Summary

0 items

2. Public Repo Strategy (No Source Code)

4 items
What to Publish (and What NOT to)
Medium
Additional Info
MCP server configuration examples and setup guides Client SDKs / API wrappers (TypeScript, Python) Integration examples (Claude Desktop, ChatGPT, Cursor, VS Code, etc.) Documentation site source (Docusaurus, MkDocs, or similar) GitHub Actions / CI templates for users who build on your API .cursor/rules and .claude/ configuration examples Community-contributed integrations and tools Changelog / release notes Core server code (memory engine, search algorithms, embedding pipeline) Database schemas or migration files from production API keys, secrets, environment configs Internal benchmarking tools or proprietary algorithms Production infrastructure code (Terraform, Kubernetes configs)
Recommended Repository Structure
Medium
Additional Info
Create these repos under the enovari GitHub org:
The "MCP Server" Repo — Your Star Magnet
Medium
Critical detail
The LICENSE file should cover only the documentation and configuration examples (MIT is fine). Add a clear note that the Enovari server itself is proprietary software available at enovari.ai.
Additional Info
The single most important repo is mcp-server-enovari. This is what gets listed in MCP directories and what developers will find when searching. Structure: `` mcp-server-enovari/ ├── README.md # Hero README (see template below) ├── LICENSE # MIT for the config/docs, not the server ├── CHANGELOG.md # Version history ├── CONTRIBUTING.md # How to contribute examples ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── feature_request.md │ │ └── integration_request.md │ └── workflows/ │ └── validate-configs.yml # CI that validates config examples ├── configs/ │ ├── claude-desktop/ │ │ └── claude_desktop_config.json │ ├── cursor/ │ │ └── .cursor/mcp.json │ ├── chatgpt/ │ │ └── setup-guide.md │ ├── vscode/ │ │ └── settings.json │ └── windsurf/ │ └── mcp_config.json ├── examples/ │ ├── basic-memory/ │ │ └── README.md │ ├── persona-system/ │ │ └── README.md │ ├── cross-platform-sync/ │ │ └── README.md │ └── api-integrations/ │ └── README.md ├── docker/ │ ├── docker-compose.yml # If you offer self-hosted option │ └── README.md ├── docs/ │ ├── quickstart.md │ ├── authentication.md │ ├── api-reference.md │ ├── memory-concepts.md │ ├── personas.md │ └── troubleshooting.md └── assets/ ├── logo.svg ├── banner.png ├── demo.gif # Animated GIF showing Enovari in action └── screenshots/ ├── claude-desktop.png ├── cursor-integration.png └── memory-dashboard.png ``
What Makes a Repo "Star-Worthy"
Medium
Additional Info
Based on patterns from the most-starred repos: 1. Immediate visual impact — Logo, badges, animated GIF or screenshot in the first viewport 2. One-command setupnpx enovari-setup or a single JSON config paste 3. Clear value proposition — First line answers "why should I care?" 4. Active maintenance signals — Recent commits, closed issues, version badges 5. Social proof — "Used by X developers" or "Integrates with Claude, ChatGPT, Cursor..." 6. Copy-paste ready — Config snippets with syntax highlighting that work immediately

3. GitHub Organization Setup

8 items
Organization vs Personal Account
Medium
Recommendation
Create the organization. It's free and immediately signals "this is a real product, not a hobby project."
Organization Setup Checklist
Medium
Additional Info
1. Create org: github.com/enovari Display name: "Enovari" Bio: "Persistent, portable AI memory across every platform. Your AI forgets everything. Enovari remembers." URL: https://enovari.ai Avatar: Enovari logo (square, at least 500x500px, works at small sizes) Location: (optional — adds legitimacy if included) Email: hello@enovari.ai or support@enovari.ai 2. Create .github repository for org-level profile: File: .github/profile/README.md — this is the org's "landing page" This README shows on github.com/enovari when anyone visits 3. Pin repositories (up to 6): mcp-server-enovari (the star magnet) enovari-examples enovari-js enovari-python docs awesome-ai-memory` 4. Configure org settings: Enable GitHub Discussions on the main repo Set up issue templates Enable GitHub Pages on docs repo Add social preview images (1280x640px) to all repos
Organization Profile README
Medium
Additional Info
The .github repo's profile/README.md appears on your org page. Template: ```markdown <p align="center"> <img src="https://enovari.ai/logo.svg"; width="120" alt="Enovari" /> </p> <h3 align="center">Persistent AI Memory Across Every Platform</h3> <p align="center"> <em>Your AI forgets everything. Enovari remembers.</em> </p> <p align="center"> <a href="https://enovari.ai";>Website</a> • <a href="https://github.com/enovari/mcp-server-enovari";>MCP Server</a> • <a href="https://github.com/enovari/docs";>Documentation</a> • <a href="https://github.com/enovari/enovari-examples";>Examples</a> </p>
What is Enovari?
Medium
Additional Info
Enovari gives AI assistants persistent, structured memory that works across sessions, platforms, and tools. Connect once, and your AI remembers everything — your preferences, your projects, your context.
Works With
Medium
Quick Start
Medium
Additional Info
Add Enovari to Claude Desktop in 30 seconds: ``json { "mcpServers": { "enovari": { "command": "npx", "args": ["-y", "mcp-server-enovari"], "env": { "ENOVARI_API_KEY": "your-api-key" } } } } `` Get your API key at [enovari.ai](https://enovari.ai)
Repositories
Medium
Making a Solo Founder Look Like a Team
Medium
Additional Info
Appearance matters. Strategies: Use "we" language in all READMEs and docs ("We built Enovari to...") GitHub Bot accounts are legitimate — set up enovari-bot for automated commits (changelog updates, version bumps) Community contributors count — even one person submitting a typo fix shows on the contributors list Invite early users as collaborators on the examples repo Use GitHub Actions for automated activity (daily config validation, weekly changelog updates) GitHub Sponsors badge signals an established project

4. GitHub as Marketing

6 items
GitHub Stars = Social Proof
Medium
Additional Info
Stars are the developer world's equivalent of social media followers. They signal: "This project is worth looking at" "Other developers trust this" "This is actively maintained" 0-50 stars: Invisible. No credibility signal. 50-200 stars: Shows up in "similar projects" recommendations. Minimally credible. 200-500 stars: Appears in GitHub Explore recommendations. Considered noteworthy. 500-1000 stars: Serious credibility. Shows up in roundup articles and lists. 1000+: Established project. Self-sustaining discovery through GitHub's algorithms. 1. Post to relevant subreddits (r/ClaudeAI, r/ChatGPTPro, r/LocalLLaMA, r/MCP) when you launch the repo 2. Share on X/Twitter with demo GIFs 3. Ask early users/beta testers to star the repo 4. Submit to awesome lists (each listing drives 10-50 stars) 5. Write a "Show HN" post on Hacker News when ready 6. Create genuinely useful content that people want to bookmark (the awesome list strategy) 7. Cross-promote from your website ("Star us on GitHub" button) 8. Include "If Enovari is useful to you, consider giving us a star" in the README footer Buy stars (GitHub detects and penalizes this) Use star-for-star exchange groups Create fake accounts to star your repo
Awesome Lists Strategy
Medium
Additional Info
Awesome lists are curated directories on GitHub that developers use to discover tools. Getting listed drives sustained traffic and stars. Read the contribution guidelines carefully Follow the exact format of existing entries Keep descriptions concise (one line) Include only stable, working links Don't submit to the same list twice Wait until your repo has at least a solid README before submitting ``markdown [Enovari](https://github.com/enovari/mcp-server-enovari) - Persistent, portable AI memory across sessions and platforms. Cross-session recall, persona system, 140+ API integrations. ``
GitHub Discussions as Community Forum
Medium
Additional Info
Enable GitHub Discussions on mcp-server-enovari. This is free, indexed by Google, and keeps community interaction tied to your GitHub presence. Google indexes Discussions (SEO value) Reduces support burden (searchable Q&A) Creates sense of active community Contributors appear on your org page Discussion count shows on repo page
GitHub Pages for Documentation
Medium
Additional Info
Use GitHub Pages to host documentation at enovari.github.io/docs or configure a custom domain like docs.enovari.ai. Docusaurus (by Meta) — Best for product docs. Used by many MCP-related projects. Repo: github.com/facebook/docusaurus Versioned docs, search, blog, i18n built-in MkDocs Material — Python-based, simpler. Beautiful defaults. Repo: github.com/squidfunk/mkdocs-material Mintlify — Designed specifically for API docs. Beautiful out of the box. URL: mintlify.com ``yaml # .github/workflows/deploy-docs.yml name: Deploy Documentation on: push: branches: [main] jobs: deploy: runs-on: ubuntu-latest steps: uses: actions/checkout@v4 uses: actions/setup-node@v4 with: node-version: 20 run: npm ci run: npm run build uses: peaceiris/actions-gh-pages@v3 with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./build ``
GitHub Actions for Public CI/CD Badges
Medium
Additional Info
Even without source code, you can use GitHub Actions to create "activity signals": 1. Config validation — CI that validates all example config files are valid JSON/YAML 2. Link checking — Automated checks that all docs links are live 3. API health check — Scheduled workflow that pings enovari.ai API and updates a status badge 4. Changelog generation — Auto-generate changelog from PR titles 5. SDK tests — If you publish SDKs, run their test suites publicly ``markdown [![API Status](https://img.shields.io/endpoint?url=https://enovari.ai/api/health-badge)](https://enovari.ai) [![npm version](https://img.shields.io/npm/v/mcp-server-enovari)](https://npmjs.com/package/mcp-server-enovari) [![Discord](https://img.shields.io/discord/YOUR_ID?label=Discord&;logo=discord)](https://discord.gg/enovari) [![GitHub stars](https://img.shields.io/github/stars/enovari/mcp-server-enovari)](https://github.com/enovari/mcp-server-enovari) [![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE) ``
Contributing to Related Open-Source Projects
Medium
Additional Info
High-visibility strategy: contribute to projects your potential users already use. Every contribution links back to your GitHub profile, which links to your org, which links to Enovari.

5. GitHub SEO & Discoverability

6 items
How GitHub Repos Rank in Google
Medium
Additional Info
GitHub repos rank extremely well in Google because: GitHub has massive domain authority (DA 95+) READMEs are crawled as the page content Repo metadata (description, topics) become meta tags Stars correlate with higher rankings Regular commits signal fresh content Repository main page (README) All markdown files in the repo GitHub Discussions threads GitHub Pages sites Issue titles and bodies Wiki pages
Optimal Repository Naming
Medium
Primary repo
mcp-server-enovari
Additional Info
Follows the mcp-server-{name} convention used across the MCP ecosystem This exact pattern is what MCP directories search for Google searches for "mcp server memory" will surface this enovari-docs — Captures "enovari documentation" searches enovari-examples — Captures "enovari examples" or "enovari setup" searches awesome-ai-memory — Captures "ai memory tools" searches (massive SEO play)
Repository Description Optimization
Medium
Additional Info
The GitHub repo description appears in: Google search results (as meta description) GitHub search results GitHub Explore pages Social media previews (Open Graph) Front-load keywords ("MCP server", "AI memory", "persistent") Include platform names people search for ("Claude", "ChatGPT", "Cursor") Stay under 350 characters (GitHub's display limit) No emojis in descriptions (they don't render in search results)
GitHub Topics
Medium
Additional Info
Topics are GitHub's tagging system. They drive discoverability through: Topic browse pages (github.com/topics/mcp) GitHub search filters "Related repositories" suggestions GitHub Explore recommendations `` mcp mcp-server model-context-protocol ai-memory persistent-memory claude chatgpt cursor ai-assistant llm ai-tools developer-tools memory context api ` ` awesome awesome-list ai-memory llm-memory persistent-memory ai-tools mcp rag vector-database ai-agents ` Maximum 20 topics per repo Mix high-volume topics (ai, llm, developer-tools) with specific ones (mcp-server, ai-memory) Check existing topic pages to see competition: github.com/topics/mcp-server Create the enovari` topic and use it across all your repos
Appearing in GitHub Explore and Trending
Medium
Additional Info
GitHub Trending (github.com/trending) shows repos with the most stars gained in a period. To appear: Coordinate a launch day (post to HN, Reddit, X, Discord all at once) Aim for 30+ stars in a single day to trend in a language category Trending in "All Languages" requires 100+ stars/day GitHub Explore (github.com/explore) is curated and algorithmic: Having 100+ stars helps Active maintenance (recent commits) is required Good README quality signals Relevant topics help categorization You can submit collections: github.com/explore/submit
Social Preview Images
Medium
Additional Info
Every repo should have a custom social preview image (1280x640px). This appears when someone shares the GitHub link on: X/Twitter LinkedIn Discord Slack Reddit Left side: Enovari logo Center: Repo name and one-line description Right side: Key feature icons or platform logos Background: Dark, clean, matching enovari.ai branding Tools: Canva, Figma, or any design tool Set via: Repo Settings > Social Preview > Edit > Upload image

6. Case Studies: Closed-Source Products with Great GitHub Presence

12 items
Cursor
Medium
Model
IDE with AI features (closed source core)
Lesson for Enovari
You don't need code to get stars. A well-maintained issue tracker with responsive maintainers drives stars.
Additional Info
The repo is essentially a feature-request and bug-tracking hub README has a beautiful hero image and clear product description GitHub Issues are the primary feedback mechanism Thousands of issues/discussions create organic SEO They use GitHub releases to publish changelogs Stars are massive despite having zero source code in the repo
Notion
Medium
Model
Productivity tool (fully closed source)
Lesson for Enovari
Publish real, functional SDKs. Even a thin API wrapper is enough to justify a repo.
Additional Info
SDKs are the public-facing repos (actual useful code) Clean API documentation Active issue management on SDK repos Community creates additional repos that reference Notion
Linear
Medium
Model
Project management tool (closed source)
Additional Info
Org page is clean and professional Main repo is for community feedback SDK packages are published to npm Active GitHub Discussions
Raycast
Medium
Model
Productivity launcher for Mac (closed source core)
Lesson for Enovari
Open-source complementary tools (e.g., a memory visualization tool, an MCP config validator) while keeping the core proprietary.
Additional Info
Extensions repo is a massive community contribution magnet Open-sourced complementary tools (not the core product) Beautiful org profile page Multiple repos showing activity Community contributions make the org look large and active
Supabase
Medium
Model
Backend-as-a-Service (open core, but relevant model)
Lesson for Enovari
A comparison section ("Enovari vs mem0 vs MemGPT vs Zep") in the README is extremely effective.
Additional Info
Main repo README is a masterclass in conversion Beautiful comparison tables ("Supabase vs Firebase") Multi-language SDK repos Active community (thousands of contributors) GitHub Sponsors enabled
Vercel
Medium
Model
Deployment platform (proprietary core)
Lesson for Enovari
Open-sourcing a useful framework or tool adjacent to your core product is the ultimate GitHub marketing strategy. Consider open-sourcing an "MCP memory toolkit" or "MCP testing framework."
Anthropic (Claude)
Medium
Model
AI company (closed model, open tools)
Lesson for Enovari
Cookbooks and examples repos get massive stars. An "Enovari Cookbook" repo with copy-paste workflows would be very effective.
OpenAI
Medium
Model
AI company (closed model, open tools)
Lesson for Enovari
The cookbook format (collection of how-to guides with working code) is enormously popular.
Mem0
Medium
Model
Direct competitor — AI memory (open core)
Lesson for Enovari
This is the benchmark to beat. Study their README structure closely. Note: they open-sourced the core, but Enovari can achieve similar visibility with docs/SDKs alone — it just requires more effort in other areas.
Additional Info
Massive README with badges, GIFs, comparison tables "Quickstart in 5 lines of code" right in the README Active community engagement Listed in every relevant awesome list Regular releases with changelogs
Zep
Medium
Model
AI memory infrastructure (open core)
Additional Info
Clean, professional README Good documentation Active in AI memory community
Mintlify
Medium
Model
Documentation platform (closed source)
Additional Info
Open-sourced their documentation components Main product is proprietary Users create repos using their tools (viral spread)
PostHog
Medium
Model
Product analytics (open core)
Additional Info
Extremely transparent development (public roadmap) Active social media linking to GitHub Multiple satellite repos for integrations

7. MCP Server Directory Listings

5 items
The MCP Ecosystem on GitHub
Medium
Additional Info
The Model Context Protocol ecosystem is rapidly growing. Being listed in directories is the single highest-ROI activity for MCP server discovery.
Primary Directories to Target
Medium
Maintained by
Anthropic / MCP core team
Stars
~5,000+
Category for Enovari
"Knowledge & Memory" or similar
How to get listed
Submit through their platform
Directory 1: Official MCP Servers Repository
URL: github.com/modelcontextprotocol/servers Maintained by: Anthropic / MCP core team Stars: ~15,000+ (as of early 2025, likely 25,000+ by now) How to get listed: Add your server to the "Community Servers" section of the README Submit a Pull Request following their contribution format Your server must implement the MCP protocol correctly Include: name, one-line description, link to repo Format example: ``markdown [Enovari](https://github.com/enovari/mcp-server-enovari) - Persistent, portable AI memory with cross-session recall, personas, and 140+ API integrations. `` Priority: HIGHEST — This is the canonical directory
Directory 2: awesome-mcp-servers (punkpeye)
URL: github.com/punkpeye/awesome-mcp-servers Stars: ~10,000+ (one of the most popular MCP lists) How to get listed: Submit a Pull Request Follow the awesome-list format Your server must be functional and documented Category for Enovari: "Knowledge & Memory" or similar Priority: HIGH
Directory 3: awesome-mcp-servers (wong2)
URL: github.com/wong2/awesome-mcp-servers Stars: ~5,000+ How to get listed: Pull Request following their format Priority: HIGH
Directory 4: MCP Hub / mcp.so
URL: mcp.so (web directory) How to get listed: Submit through their website Priority: HIGH — Web-based discovery, separate from GitHub
Directory 5: Smithery
URL: smithery.ai How to get listed: Register and submit your MCP server Priority: HIGH — Growing MCP marketplace
Directory 6: Glama MCP Directory
URL: glama.ai/mcp/servers How to get listed: Submit through their platform Priority: MEDIUM
MCP Naming Convention
Medium
Additional Info
The MCP ecosystem has a strong naming convention: mcp-server-{name}. Following this is critical: Repo name: mcp-server-enovari npm package: mcp-server-enovari This naming convention is how directories, tools, and developers find MCP servers GitHub search for mcp-server- returns thousands of results — you want to be in that list
MCP Server README Requirements
Medium
Additional Info
Most directories require your repo README to include: 1. What the server does (one paragraph) 2. Installation instructions (copy-paste ready) 3. Configuration for Claude Desktop (JSON snippet) 4. Available tools (table of tool names + descriptions) 5. Available resources (if any) 6. Authentication (how to get API key) 7. Example usage (at least one concrete example)
npm / PyPI Publishing
Medium
Additional Info
Many MCP servers are installed via npx mcp-server-{name}. Publishing to npm: Makes installation trivially easy Gets your package indexed in npm search Allows npx one-command setup (the standard in MCP ecosystem) Adds a version badge to your README The npm package can be a thin wrapper/installer that connects to your cloud service — it doesn't need to contain the actual server logic if Enovari runs as a hosted service.

8. Implementation Roadmap

5 items
Phase 1: Foundation (Week 1-2)
Medium
Phase 2: Content (Week 2-4)
Medium
Phase 3: SDKs & Distribution (Week 4-6)
Medium
Phase 4: Growth & Community (Week 6-12)
Medium
Phase 5: Amplification (Ongoing)
Medium

9. README Templates

1 items
Hero README for `mcp-server-enovari`
Medium
Additional Info
```markdown <div align="center"> <img src="assets/logo.svg" width="100" alt="Enovari" /> # Enovari MCP Server Persistent, portable AI memory across every platform. Your AI forgets everything. Enovari remembers. [![npm version](https://img.shields.io/npm/v/mcp-server-enovari)](https://npmjs.com/package/mcp-server-enovari) [![API Status](https://img.shields.io/badge/API-live-brightgreen)](https://enovari.ai) [![GitHub stars](https://img.shields.io/github/stars/enovari/mcp-server-enovari)](https://github.com/enovari/mcp-server-enovari/stargazers) [![Discord](https://img.shields.io/discord/DISCORD_ID?label=Discord&;logo=discord&color=5865F2)](https://discord.gg/enovari) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE) [Website](https://enovari.ai) • [Documentation](https://docs.enovari.ai) • [Examples](https://github.com/enovari/enovari-examples) • [Discord](https://discord.gg/enovari) <img src="assets/demo.gif" width="700" alt="Enovari Demo" /> </div>

Why Enovari?

9 items
Cross-platform memory
Medium
Feature
Cross-platform memory
ChatGPT Memory
Custom prompts
Enovari
Cross-session persistence
Medium
Feature
Cross-session persistence
ChatGPT Memory
Partial
Custom prompts
Enovari
Structured recall (search)
Medium
Feature
Structured recall (search)
ChatGPT Memory
Custom prompts
Enovari
Persona system
Medium
Feature
Persona system
ChatGPT Memory
Custom prompts
Enovari
140+ API integrations
Medium
Feature
140+ API integrations
ChatGPT Memory
Custom prompts
Enovari
Works with Claude
Medium
Feature
Works with Claude
ChatGPT Memory
Custom prompts
Enovari
Works with ChatGPT
Medium
Feature
Works with ChatGPT
ChatGPT Memory
Custom prompts
Enovari
Works with Cursor
Medium
Feature
Works with Cursor
ChatGPT Memory
Custom prompts
Enovari
MCP native
Medium
Feature
MCP native
ChatGPT Memory
Custom prompts
Enovari

Quick Start

3 items
Claude Desktop
Medium
Additional Info
Add to your claude_desktop_config.json: ``json { "mcpServers": { "enovari": { "command": "npx", "args": ["-y", "mcp-server-enovari"], "env": { "ENOVARI_API_KEY": "your-api-key" } } } } ``
Cursor
Medium
Additional Info
Add to .cursor/mcp.json: ``json { "mcpServers": { "enovari": { "command": "npx", "args": ["-y", "mcp-server-enovari"], "env": { "ENOVARI_API_KEY": "your-api-key" } } } } ``
Other Platforms
Medium
Additional Info
See setup guides for [ChatGPT](docs/chatgpt.md) • [VS Code](docs/vscode.md) • [Windsurf](docs/windsurf.md) • [Continue](docs/continue.md) > Get your API key: Sign up at [enovari.ai](https://enovari.ai) (free tier available)

Available Tools

0 items

How It Works

0 items

Examples

0 items

Documentation

0 items

Community

0 items

Contributing

0 items

License

1 items
README for `awesome-ai-memory`
Medium
Additional Info
Creating and maintaining an "awesome list" is one of the highest-ROI GitHub strategies. It positions Enovari as the authority in the AI memory space. ```markdown # Awesome AI Memory [![Awesome](https://awesome.re/badge.svg)](https://awesome.re) > A curated list of tools, frameworks, and research for giving AI assistants persistent memory. AI assistants forget everything between conversations. This list tracks the projects solving that problem.

Contents

0 items

MCP Memory Servers

0 items

Memory Frameworks

0 items

Vector Databases

0 items

Research Papers

0 items

Contributing

0 items

Key Takeaways

0 items

10. Appendix: All URLs & Resources

10.1 MCP Directories to Submit To

10.2 Awesome Lists to Submit To

10.3 Documentation Site Tools

10.4 Badge Services

10.5 Design Resources for Social Previews

10.6 Competitor GitHub Repos to Monitor

10.7 GitHub Features Reference

10.8 Subreddits and Communities for Launch

DirectoryURLType
Official MCP Serversgithub.com/modelcontextprotocol/serversGitHub repo
awesome-mcp-servers (punkpeye)github.com/punkpeye/awesome-mcp-serversGitHub repo
awesome-mcp-servers (wong2)github.com/wong2/awesome-mcp-serversGitHub repo
MCP Hubmcp.soWeb directory
Smitherysmithery.aiWeb marketplace
Glama MCPglama.ai/mcp/serversWeb directory
MCP Directory (various)Search GitHub for "mcp-directory"Multiple
ListURLCategory for Enovari
awesome-ai-toolsgithub.com/mahseema/awesome-ai-toolsAI Tools / Memory
awesome-llm-appsgithub.com/Shubhamsaboo/awesome-llm-appsTools / Infrastructure
awesome-generative-aiSearch for active reposDeveloper Tools
awesome-ai-agentsSearch for active reposMemory / Infrastructure
awesome-chatgptVarious reposPlugins / Extensions
awesome-claudeSearch for active reposMCP Servers
ToolURLBest For
Docusaurusdocusaurus.ioFull-featured product docs
MkDocs Materialsquidfunk.github.io/mkdocs-materialClean Python-based docs
Mintlifymintlify.comBeautiful API documentation
GitBookgitbook.comQuick wiki-style docs
Nextranextra.siteNext.js-based docs
ServiceURLUse Case
Shields.ioshields.ioStandard repo badges
Badgenbadgen.netAlternative badge service
GitHub Actions BadgesBuilt-inCI/CD status
Custom endpoint badgesShields.io endpoint APIAPI status, custom metrics
ToolURLUse Case
Canvacanva.comQuick social preview images
Figmafigma.comProfessional design
Carboncarbon.now.shBeautiful code screenshots
Terminalizergithub.com/faressoft/terminalizerTerminal session GIFs
VHSgithub.com/charmbracelet/vhsTerminal GIF recording
Asciinemaasciinema.orgTerminal session recording
CompanyPrimary RepoURL
Mem0mem0ai/mem0github.com/mem0ai/mem0
Zepgetzep/zepgithub.com/getzep/zep
MemGPT / Lettacpacker/MemGPTgithub.com/cpacker/MemGPT
LangChainlangchain-ai/langchaingithub.com/langchain-ai/langchain
LlamaIndexrun-llama/llama_indexgithub.com/run-llama/llama_index
FeatureHow to EnableURL
GitHub DiscussionsRepo Settings > Features > DiscussionsBuilt-in
GitHub PagesRepo Settings > PagesBuilt-in
GitHub ActionsAdd .github/workflows/*.ymlBuilt-in
GitHub ReleasesCreate via UI or gh release createBuilt-in
GitHub ProjectsOrg-level or repo-level boardsBuilt-in
Social PreviewRepo Settings > Social PreviewBuilt-in
TopicsRepo main page > gear icon near AboutBuilt-in
GitHub Sponsorsgithub.com/sponsorsRequires application
GitHub Explore submissiongithub.com/explore/submitManual
CommunityURLRules
r/ClaudeAIreddit.com/r/ClaudeAICheck self-promotion rules
r/ChatGPTProreddit.com/r/ChatGPTProCheck self-promotion rules
r/LocalLLaMAreddit.com/r/LocalLLaMATechnical audience
r/MachineLearningreddit.com/r/MachineLearningStrict rules, high value
r/artificialreddit.com/r/artificialGeneral AI community
Hacker Newsnews.ycombinator.com"Show HN" format
Product Huntproducthunt.comSchedule a launch day
Dev.todev.toWrite a launch article
AI Discord serversVariousSearch for AI/MCP discords