Help us improve
Share bugs, ideas, or general feedback.
Harness-first Claude Code plugin for staged engineering work and local knowledge recall
npx claudepluginhub done-0/openarcheClaude Code plugin that keeps complex tasks from closing before planning, validation, review, and closeout are explicit
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 83 marketplace plugins, 191 local specialized agents, and 155 local skills - optimized for granular installation and minimal token usage
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
Share bugs, ideas, or general feedback.
Local developer memory plugin for Claude Code. Automatically learns from your conversations and recalls relevant knowledge when you need it — fully local, zero cloud dependency.
OpenArche solves three problems every developer hits with Claude Code:
OpenArche fixes all three by silently building a local knowledge base from your conversations, and surfacing the right knowledge exactly when you need it.
1. Add the plugin:
/plugin marketplace add Done-0/openarche
2. Install:
/plugin install openarche
Then reload the plugin:
/reload-plugin
3. Run setup:
/openarche:setup
Setup handles all configuration automatically and optionally bootstraps from your conversation history. Downloads the local embedding model (~120MB) on first run — one time only.
4. Done. OpenArche runs fully automatically in the background.
To update OpenArche to the latest version:
/plugin update openarche
/reload-plugin
| Command | Description |
|---|---|
/openarche:setup | Initialize plugin, batch-extract memories from all conversation history |
/openarche:extract | Manually trigger extraction from qualifying conversation history |
/openarche:config | View or update configuration |
/openarche:save | Manually save an insight from the current conversation |
/openarche:list | List recently stored memories |
/openarche:search | Search the memory library with a query |
/openarche:forget | Delete a memory by ID |
/openarche:reindex | Rebuild vector index after switching embedding models |
Run /openarche:config to view and change settings interactively.
Config file: <home>/.claude/openarche/config.json
{
"embedding": {
"provider": "local",
"localModel": "Xenova/multilingual-e5-small",
"remoteModel": "",
"remoteApiKey": "",
"remoteBaseUrl": ""
},
"retrieval": {
"threshold": 0.73,
"topK": 3,
"maxInjectChars": 3000,
"reranking": {
"enabled": false,
"provider": "local",
"remoteModel": "",
"remoteApiKey": "",
"remoteBaseUrl": "",
"weights": {
"similarity": 0.7,
"quality": 0.2,
"recency": 0.05,
"frequency": 0.05
}
}
},
"extraction": {
"model": "claude-haiku-4-5-20251001",
"minQualityScore": 0.6,
"bootstrapConcurrency": 3
}
}