JavaScript library that perform fuzzy-search
Powerful smart search for React
HTTP-first MCP research server: start-research plus raw/smart search and scrape tools — built on mcp-use.
CLI-first multi-source web research with xAI/OpenAI-compatible search, Exa, Context7, Zhipu, Tavily, Firecrawl, and Deep Research planning.
MCP server providing seamless access to Apple Developer Documentation with smart search and wildcard support
Reusable smart search web component built with Lit
Smart Search MCP - 14个智能搜索工具(通过WebFetch真实获取搜索结果)
Generic smart search utility with weighted scoring
A smart search bar for React
A reusable Smart Search component built using Lit (Web Components). Supports dynamic search, filtering, keyboard navigation, accessibility, and flexible theming.
Smart Search Bar for Fantasy basket
A production-ready, cross-platform Smart Search package.
A sane, fast, not too smart, search expression parser
Tracking for Mezereon Smart Search & Filter
No description provided.
PDF viewer with precise text highlighting and smart search
This is Smart Search Based on MUI with search bar and pagination to filter the results
No description provided.
High-performance fuzzy search SDK for PostgreSQL with Parallel Search and Zombie Query Prevention
A module smart search module
A smart search box component that provides a user-friendly UI with a variety of features and animations.
MCP tool router with smart-search and on-demand loading
Mongoose query builder for JavaScript and TypeScript — smart search (string + number), deep populate (4 levels), multi-sort, operator filters (_gte _lte _ne _in _regex), date ranges, soft-delete, pagination. One function for full REST API filtering from U
Session intelligence for AI coding assistants. Persistent memory, knowledge graph, smart search, dead ends, crash recovery. Zero infrastructure.
SmartSearch adds full-text search functions to ActiveRecord running with MySQL, including search for similiar words. Its fast, simple, and works with almost zero-config!
angular smart search
Starscope is a code indexer, search and navigation tool for Ruby, Golang, and JavaScript. Inspired by the extremely popular Ctags and Cscope utilities, Starscope can answer a lot of questions about a lot of code.
A standalone Rails gem that provides Heroicons and Tabler Icons with smart caching and configurable search paths. Works with any Rails application.
mailmate is a Ruby library and CLI for working with MailMate's on-disk storage and AppleScript surface. It includes a smart-mailbox filter engine (lexer/parser/evaluator over MailMate's filter language), readers for the binary header indexes, and CLI tools for searching, reading, modifying, and sending mail via MailMate. Requires macOS with MailMate installed. Some library pieces (parser, evaluator, fixture-driven tests) work on any platform; the integration pieces (AppleScript driver, filesystem readers) raise Mailmate::PlatformError on non-macOS hosts.
Provides a simple Ruby interface for interacting with the You.com Smart, Research, Search, and News endpoints.
The Anagram application searches a dictionary for anagrams of words supplied on the command line. $ anagram teaching code Anagrams of teaching: cheating, teaching Anagrams of code: code, coed It is not (currently) smart enough to deal with multi-word anagrams. This code is Copyright 2008 Dave Thomas, The Pragmatic Programmers. It is released under the terms of the MIT License. See the file LICENSE.
IMDB v2.1.1: Modern poster display using termpix gem with Sixel and w3m protocol support. Discover and manage movies and TV series from IMDb's Top 250 lists. Features smart search with preview mode, advanced filtering by rating/year/genre, streaming information via TMDb, wish lists, and terminal poster display. Enhanced with jump-to-existing items, duplicate management, robust data handling, and improved HTTP timeout/error handling.
# Noty A bookmarks and snippets manager, stores bookmarks as YAML files and nippets as plain text, utilizes "Ag silver searcher" fast search to search your files when you need to open or copy a snippet, that makes its searching capabilities so enourmouse as it's inherited from AG. Noty is smart, so it react depending on your input, so provide URL and it'll create a bookmark, provide some text and it will search for it in all bookmarks and snippets, if it didn't find any files it will prompt you to create a snippet. Some common usages could be, bookmarking URL, save snippet of text you liked, save some canned responses and quickly copy it when needed. ## Installation ```bash $ gem install noty ``` ## Requirements 1. ag : silver searcher https://github.com/ggreer/the_silver_searcher ### For Linux: 1. xsel : could be found on most distros official repositories 2. xdg-open : should be installed with most opendesktop compatible desktop environments ## Environment by default Noty saves your files in `~/.notes` if you want to change that path, define an Environment variable in your shell init file `.bashrc` or `.zshrc` ```bash export NOTES_PATH=/path/to/your/notes/dir ``` ## Usage Snippets and bookmarks manager. **Usage:** ```bash noty inputs ``` **Input types:** 1. **url:** e.g "http://www.example.com", add URL as a bookmark file 2. **keyword:** search bookmarks and perform action on it, a single word of multiple words or regex, it is passed to "ag silver searcher" 3. **snippet text:** any multiword text, it will search first if no files contain this text you'll be asked if you want to create a snippet for it ## Examples Add a bookmark ```bash noty https://www.youtube.com ``` Search for bookmark ```bash noty youtube ``` Add a snippet text ```bash noty this is a long text that I need to save in my stash ``` Search for a snippet (same as searching for bookmarks) ```bash noty need ``` ## Contributing Bug reports and pull requests are welcome on GitHub at https://github.com/blazeeboy/noty. ## License The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
go (to project) do (stuffs) godo provides a smart way of opening a project folder in multiple terminal tabs and, in each tab, invoking a commands appropriate to that project. For example if the folder contains a Rails project the actions might include: starting mongrel, tailing one or more logs, starting consoles or IRB sessions, tailing production logs, opening an editor, running autospec, or gitk. godo works by searching your project paths for a given search string and trying to match it against paths found in one or more configured project roots. It will make some straightforward efforts to disambiguate among multiple matches to find the one you want. godo then uses configurable heuristics to figure out what type of project it is, for example "a RoR project using RSpec and Subversion". From that it will invokes a series of action appropriate to the type of project detected with each action being run, from the project folder, in its own terminal session. godo is entirely configured by a YAML file (~/.godo) that contains project types, heuristics, actions, project paths, and a session controller. A sample configuration file is provided that can be installed using godo --install. godo comes with an iTerm session controller for MacOSX that uses the rb-appscript gem to control iTerm (see lib/session.rb and lib/sessions/iterm_session.rb). It should be relatively straightforward to add new controller (e.g. for Leopard Terminal.app), or a controller that works in a different way (e.g. by creating new windows instead of new tabs). There is nothing MacOSX specific about the rest of godo so creating controllers for other unixen should be straightforward if they can be controlled from ruby. godo is a rewrite of my original 'gp' script (http://matt.blogs.it/entries/00002674.html) which fixes a number of the deficiencies of that script, turns it into a gem, has a better name, and steals the idea of using heuristics to detect project types from Solomon White's gp variant (http://onrails.org/articles/2007/11/28/scripting-the-leopard-terminal). godo now includes contributions from Lee Marlow <lee.marlow@gmail.com> including support for project level .godo files to override the global configuration, support for Terminal.app, and maximum depth support to speed up the finder. godo lives at the excellent GitHub: http://github.com/mmower/godo/ and accepts patches and forks.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.