Claudest
A curated Claude Code plugin marketplace. Everything here is something I personally use, build, and iterate on across real projects. If it's in this marketplace, it works.

⚡ Installation
Add the marketplace, then install any plugin:
/plugin marketplace add gupsammy/claudest
/plugin install claude-memory@claudest
/plugin install claude-research@claudest
/plugin install claude-coding@claudest
/plugin install claude-skills@claudest
/plugin install claude-thinking@claudest
/plugin install claude-content@claudest
/plugin install claude-utilities@claudest
/plugin install claude-claw@claudest
To enable auto-updates, run /plugin, go to the Marketplaces tab, and toggle auto-update for Claudest.
🧠 claude-memory 
Conversation memory for Claude Code. Stores every session in a SQLite database with full-text search (FTS5, BM25 ranking, zero external dependencies) and makes past conversations available to the agent automatically.
- Automatic context injection — on every session start, precomputed context summaries from recent sessions are injected automatically. The agent knows what you worked on last time before you say a word.
recall-conversations — search conversation history by keywords, browse recent sessions, or run structured analyses like retrospectives and gap-finding.
extract-learnings — reads past conversations, identifies non-obvious insights worth preserving, and proposes placing them at the right layer in the memory hierarchy (CLAUDE.md, MEMORY.md, or topic files). Includes a consolidation mode with dedicated memory-auditor and signal-discoverer agents for batch processing.
get-token-insights — analyzes Claude token usage with a normalization pipeline and interactive HTML dashboard. Surfaces cache hit rates, workflow patterns, and spending trends.
For the full story behind the architecture: What I Learned Building a Memory System for My Coding Agent.
/plugin install claude-memory@claudest
🔍 claude-research 
Cross-platform research skills for Claude Code.
run-research — autonomous research agent that queries Reddit, X/Twitter, YouTube, and the web simultaneously, then synthesizes findings weighted by engagement. Sources are detected at runtime — missing tools are skipped silently.
search-youtube — YouTube research toolkit built on yt-dlp. Search with filters, extract transcripts, pull audio, scan channels, and batch process URLs. Research mode runs adaptive multi-round discovery with parallel agents.
# Prerequisites — install only what you need, each source is optional
pip install yt-dlp # YouTube (used by both skills)
pip install reddit-cli # Reddit
brew install bird # X / Twitter
# brave-cli — one-command installer included in run-research skill output
# Web search falls back to Claude's native WebSearch if brave-cli is missing
/plugin install claude-research@claudest
💻 claude-coding 
Coding workflow skills for Claude Code. Nine skills and two agents covering the commit loop, project maintenance, documentation, and code quality.