wicked-brain
RepositoryFreeDigital brain as skills for AI coding CLIs — no vector DB, no embeddings, no infrastructure
Capabilities11 decomposed
markdown-based skill indexing with full-text search
Medium confidenceIndexes markdown files containing code skills and knowledge into a local SQLite database with FTS5 (Full-Text Search 5) enabled, enabling semantic keyword matching without vector embeddings or external infrastructure. The system parses markdown structure (headings, code blocks, metadata) and builds inverted indices for fast retrieval of skill documentation by natural language queries. No external vector DB or embedding service required — all indexing and search happens locally.
Uses SQLite FTS5 for keyword-based retrieval instead of vector embeddings, eliminating dependency on external embedding services (OpenAI, Cohere) and vector databases while maintaining sub-millisecond local search performance
Simpler and faster to set up than Pinecone/Weaviate RAG stacks for developers who prioritize zero infrastructure over semantic similarity
ai cli skill injection via context augmentation
Medium confidenceRetrieves indexed skills from the local SQLite database and injects them into the context window of AI coding CLIs (Claude Code, Cursor, Gemini CLI, GitHub Copilot) as formatted markdown or structured prompts. The system acts as a middleware layer that intercepts queries, searches the skill index, and prepends relevant documentation to the AI's input context before sending to the LLM. Supports multiple CLI integrations through adapter patterns.
Implements RAG-like behavior without vector embeddings by using FTS5 keyword matching and injecting matched skills directly into CLI context windows, designed specifically for AI coding assistants rather than generic LLM applications
Lighter weight than full RAG pipelines (no embedding model, no vector DB) while still enabling skill-aware code generation in popular AI CLIs
cli command interface for skill management
Medium confidenceProvides a command-line interface for managing the skill library (add, remove, search, list, export) without requiring programmatic API calls. Commands include `wicked-brain add <file>`, `wicked-brain search <query>`, `wicked-brain list`, `wicked-brain export`, enabling developers to manage skills from the terminal. Supports piping and scripting for automation.
Provides a full-featured CLI for skill management (add, search, list, export) enabling terminal-based workflows and shell script integration without requiring a GUI or API client
More scriptable and automation-friendly than GUI-based knowledge management tools
skill library management with markdown versioning
Medium confidenceProvides a structured system for organizing, storing, and versioning coding skills as markdown files with optional metadata (tags, difficulty, language, category). Skills are stored in a flat or hierarchical directory structure and can be edited directly in any text editor. The system tracks which skills are indexed and provides utilities to add, update, and remove skills from the index without requiring a database UI or special tooling.
Treats skills as first-class markdown files with Git versioning rather than database records, enabling developers to manage their knowledge base using standard text editors and version control workflows
More portable and version-control-friendly than proprietary knowledge base tools (Notion, Obsidian plugins) while remaining compatible with standard developer workflows
zero-infrastructure local knowledge retrieval
Medium confidenceExecutes all knowledge indexing and retrieval operations locally on the developer's machine using SQLite FTS5, eliminating the need for external services, API keys, or cloud infrastructure. The entire skill database is stored as a single SQLite file that can be backed up, versioned, or shared via Git. No network calls, no rate limits, no vendor lock-in — all operations complete in milliseconds on local hardware.
Deliberately avoids external dependencies (vector DBs, embedding APIs, cloud services) by using only SQLite FTS5, making it the only RAG-adjacent system that requires zero infrastructure setup or API credentials
Eliminates operational complexity and cost of vector database services (Pinecone, Weaviate) while maintaining offline-first privacy guarantees that cloud-based RAG systems cannot provide
multi-cli adapter framework for skill injection
Medium confidenceProvides an extensible adapter pattern for integrating the skill library with multiple AI coding CLIs through standardized interfaces. Each CLI adapter handles the specific protocol, context format, and API of its target tool (Claude Code's prompt format, Cursor's context injection, Gemini CLI's request structure). New adapters can be added by implementing a simple interface without modifying core indexing logic.
Uses adapter pattern to abstract CLI-specific integration details, allowing a single skill library to work across Claude Code, Cursor, Gemini CLI, and custom tools without duplicating indexing or retrieval logic
More flexible than CLI-specific plugins because adapters are decoupled from core indexing, enabling skill library reuse across tools without reimplementing search
query-to-skill matching via fts5 keyword expansion
Medium confidenceConverts natural language queries into FTS5 search expressions by tokenizing, normalizing, and optionally expanding queries with synonyms or related terms. The system handles common query patterns (e.g., 'how do I X' → search for skill tags matching X) and applies FTS5 operators (AND, OR, phrase matching) to improve precision. No machine learning or semantic models — purely lexical matching with heuristic query expansion.
Implements heuristic-based query expansion for FTS5 to handle natural language variations without semantic embeddings, using rule-based synonym mapping and query pattern recognition
Simpler and faster than semantic search (no embedding inference latency) while still handling common query variations through configurable synonym expansion
skill metadata extraction and tagging
Medium confidenceParses markdown skill files to extract structured metadata (title, description, tags, language, difficulty, category) from frontmatter (YAML/TOML) or markdown conventions (heading levels, code fence language tags). Metadata is indexed alongside skill content, enabling filtered searches (e.g., 'find all Python skills tagged with async'). Supports custom metadata fields through configuration.
Extracts metadata from markdown structure (YAML frontmatter, code fence language tags, heading levels) rather than requiring a separate metadata file, keeping skills self-contained and editable in any text editor
More portable than database-based metadata (Notion, Obsidian) because metadata lives in the markdown file itself and is version-controllable
batch skill indexing and incremental updates
Medium confidenceIndexes multiple markdown files in batch operations, computing file hashes to detect changes and only re-indexing modified files. The system maintains an index state file tracking which skills have been indexed and their modification timestamps. Supports full re-indexing and incremental updates, enabling fast skill library updates without rebuilding the entire index.
Implements incremental indexing using file hashes and state tracking, avoiding full re-indexing of unchanged skills and enabling fast updates for large skill libraries
Faster than naive full re-indexing for large libraries while remaining simpler than distributed indexing systems
skill context window optimization for llm injection
Medium confidenceSelects and ranks the most relevant skills from search results to fit within the LLM's context window limit, using heuristics like skill size, relevance score, and recency. The system truncates or summarizes skills that exceed token budgets and prioritizes high-relevance matches. Supports configurable context window sizes for different LLMs (Claude 3, GPT-4, Gemini) and provides fallback strategies when skills don't fit.
Implements context window-aware skill selection using heuristic ranking and truncation, ensuring injected skills fit within LLM limits while maximizing relevance
More practical than naive skill injection because it respects context window constraints, whereas basic RAG systems may exceed token limits
skill library export and sharing
Medium confidenceExports the indexed skill library in multiple formats (JSON, CSV, markdown index) for sharing, backup, or integration with other tools. Supports selective exports (e.g., export only Python skills) and includes metadata, search indices, and skill content. Exported libraries can be re-imported into other wicked-brain instances or used as standalone documentation.
Exports skill libraries in multiple formats (JSON, CSV, markdown) enabling portability and integration with external tools, while preserving metadata and search indices
More portable than proprietary knowledge base exports because skills remain as plain markdown and structured data
Capabilities are decomposed by AI analysis. Each maps to specific user intents and improves with match feedback.
Related Artifactssharing capabilities
Artifacts that share capabilities with wicked-brain, ranked by overlap. Discovered automatically through the match graph.
antigravity-awesome-skills
Installable GitHub library of 1,400+ agentic skills for Claude Code, Cursor, Codex CLI, Gemini CLI, Antigravity, and more. Includes installer CLI, bundles, workflows, and official/community skill collections.
stitch-skills
A library of Agent Skills designed to work with the Stitch MCP server. Each skill follows the Agent Skills open standard, for compatibility with coding agents such as Antigravity, Gemini CLI, Claude Code, Cursor.
superpowers-zh
🦸 AI 编程超能力 · 中文增强版 — superpowers(116k+ ⭐)完整汉化 + 6 个中国原创 skills,让 Claude Code / Copilot CLI / Hermes Agent / Cursor / Windsurf / Kiro / Gemini CLI 等 16 款 AI 编程工具真正会干活
Agent Skills
Open format and reference SDK for packaging reusable capabilities and expertise for AI agents. [#opensource](https://github.com/agentskills/agentskills)
cc-switch
A cross-platform desktop All-in-One assistant tool for Claude Code, Codex, OpenCode, openclaw & Gemini CLI.
openclaw-superpowers
44 plug-and-play skills for OpenClaw — self-modifying AI agent with cron scheduling, security guardrails, persistent memory, knowledge graphs, and MCP health monitoring. Your agent teaches itself new behaviors during conversation.
Best For
- ✓solo developers building LLM-powered CLI agents
- ✓teams using Claude Code, Cursor, or Gemini CLI who want local knowledge augmentation
- ✓developers avoiding vector DB infrastructure (Pinecone, Weaviate, Milvus) for simplicity
- ✓developers using Claude Code, Cursor, or Gemini CLI who want persistent skill context
- ✓teams standardizing on specific coding patterns and wanting AI assistants to follow them
- ✓solo developers building custom LLM agents that need skill augmentation
- ✓developers comfortable with CLI tools and shell scripting
- ✓teams integrating skill management into CI/CD workflows
Known Limitations
- ⚠FTS5 keyword matching lacks semantic understanding — synonyms and conceptual similarity not captured without manual tagging
- ⚠No ranking by relevance confidence — results are binary match/no-match rather than scored by relevance
- ⚠Markdown parsing is basic — complex nested structures or non-standard formatting may not index correctly
- ⚠Single-machine SQLite — no distributed indexing or multi-user concurrent writes without locking
- ⚠Context window limited by the underlying CLI/LLM — injecting too many skills may exceed token limits
- ⚠No automatic skill relevance ranking — all matching skills injected equally, potentially diluting signal
Requirements
Input / Output
UnfragileRank
UnfragileRank is computed from adoption signals, documentation quality, ecosystem connectivity, match graph feedback, and freshness. No artifact can pay for a higher rank.
Repository Details
Package Details
About
Digital brain as skills for AI coding CLIs — no vector DB, no embeddings, no infrastructure
Categories
Alternatives to wicked-brain
Are you the builder of wicked-brain?
Claim this artifact to get a verified badge, access match analytics, see which intents users search for, and manage your listing.
Get the weekly brief
New tools, rising stars, and what's actually worth your time. No spam.
Data Sources
Looking for something else?
Search →