HackerTrans
TopNewTrendsCommentsPastAskShowJobs

alfredoizjr

no profile record

Submissions

[untitled]

1 points·by alfredoizjr·20일 전·0 comments

[untitled]

1 points·by alfredoizjr·2개월 전·0 comments

[untitled]

1 points·by alfredoizjr·2개월 전·0 comments

[untitled]

1 points·by alfredoizjr·2개월 전·0 comments

[untitled]

1 points·by alfredoizjr·3개월 전·0 comments

[untitled]

1 points·by alfredoizjr·3개월 전·0 comments

[untitled]

1 points·by alfredoizjr·3개월 전·0 comments

[untitled]

1 points·by alfredoizjr·3개월 전·0 comments

[untitled]

1 points·by alfredoizjr·3개월 전·0 comments

[untitled]

1 points·by alfredoizjr·4개월 전·0 comments

Show HN: Import Your AI Memory into ContextForge

contextforge.dev
1 points·by alfredoizjr·4개월 전·0 comments

Show HN: GitHub Copilot Now Supports MCP

contextforge.dev
1 points·by alfredoizjr·4개월 전·0 comments

Show HN: ContextForge now supports Cursor IDE – persistent AI memory

contextforge.dev
1 points·by alfredoizjr·4개월 전·1 comments

Show HN: ContextForge – Persistent memory MCP server for Claude

contextforge.dev
2 points·by alfredoizjr·5개월 전·8 comments

comments

alfredoizjr
·4개월 전·discuss
Hey HN — I built this because I got tired of re-explaining my project to Claude every session. Same stack, same decisions, same patterns, every morning. ContextForge stores your context with semantic search and your AI recalls it automatically via MCP. Works with Claude Code, Claude Desktop, and now Cursor — all synced.
alfredoizjr
·5개월 전·discuss
English isn't my first language — I'm a native Spanish speaker. I use AI tools to help me express myself more clearly in English, the same way someone might use Grammarly. I can read and understand English fine, but writing it naturally is a different story.

The project is 100% real. I built it, I use it every day, and I'm happy to talk about the technical details if anyone's interested
alfredoizjr
·5개월 전·discuss
Not a bot, just a dev who's not great at writing casual replies yet. I'll work on that. Thanks for the heads up on the guidelines
alfredoizjr
·5개월 전·discuss


  Fair point. The MCP client package is open source and on npm (contextforge-mcp). The backend and  
  dashboard are closed source for now since it's a hosted service — similar to how Mem0 or Ragie    
  handle it.                                                                                        
                                                                                                    
  That said, I hear you. It's something I'm considering as the project matures.
alfredoizjr
·5개월 전·discuss
Thanks! We use PostgreSQL (Supabase) with pgvector. Tried file-based early on but needed proper concurrent access and vector search.

  Indexing is hybrid — pgvector for semantic search, full-text search for exact matches.            
                                                                                                    
  For lifecycle, we keep it simple: users organize knowledge into "spaces" per project. Git spaces  
  auto-sync commits/PRs. No automatic eviction — snapshots let you save/restore state.              
                                                                                                    
  Cross-conversation context: we don't carry over conversation state. Each session, Claude just
  queries stored knowledge for what's relevant. No identity leaking between sessions, just
  searchable context on demand.

  Curious — have you run into specific challenges with memory lifecycle in your own work?
alfredoizjr
·5개월 전·discuss
Hi HN, I'm a solo dev. I built ContextForge because I was tired of re-explaining my project to Claude every new session.

  It's an MCP server that gives Claude persistent memory — semantic search, GitHub integration, task
   tracking, and team collaboration. There's a web dashboard to manage everything.

  Works with Claude Code, Cursor, Windsurf, and any MCP client.

  Free tier available, install with: npm install -g contextforge-mcp

  Happy to answer any questions!