├── .Rbuildignore ├── .gitattributes ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ └── pr-commands.yaml ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── ai-prompts.R ├── ai-search-functions.R ├── defunct-functions.R ├── index-sites.R ├── search-functions.R ├── searcher-package.R └── utilities.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── codecov.yml ├── cran-comments.md ├── man ├── ai_prompt.Rd ├── ai_prompt_active.Rd ├── ai_prompt_clear.Rd ├── ai_prompt_list.Rd ├── ai_prompt_management.Rd ├── ai_prompt_register.Rd ├── ai_prompt_remove.Rd ├── ai_searcher.Rd ├── ask_bing_copilot.Rd ├── ask_chatgpt.Rd ├── ask_claude.Rd ├── ask_grok.Rd ├── ask_meta_ai.Rd ├── ask_mistral.Rd ├── ask_perplexity.Rd ├── figures │ ├── prompt-hierarchy.svg │ ├── prompt-structure.svg │ ├── searcher-animated-logo.svg │ └── searcher-logo.svg ├── search_bing.Rd ├── search_bitbucket.Rd ├── search_bluesky.Rd ├── search_brave.Rd ├── search_duckduckgo.Rd ├── search_ecosia.Rd ├── search_github.Rd ├── search_google.Rd ├── search_grep.Rd ├── search_kagi.Rd ├── search_mastodon.Rd ├── search_posit_community.Rd ├── search_qwant.Rd ├── search_rseek.Rd ├── search_site.Rd ├── search_stackoverflow.Rd ├── search_startpage.Rd ├── search_twitter.Rd ├── searcher-defunct.Rd ├── searcher-package.Rd └── searcher.Rd ├── searcher.Rproj ├── tests ├── testthat.R └── testthat │ ├── test-index-sites.R │ ├── test-search-functions.R │ ├── test-searcher-package.R │ └── test-utilities.R └── vignettes ├── .gitignore ├── faq.Rmd ├── managing-ai-prompts.Rmd ├── search-patterns.Rmd └── using-ai-assistants-with-searcher.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-commands.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/.github/workflows/pr-commands.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/ai-prompts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/R/ai-prompts.R -------------------------------------------------------------------------------- /R/ai-search-functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/R/ai-search-functions.R -------------------------------------------------------------------------------- /R/defunct-functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/R/defunct-functions.R -------------------------------------------------------------------------------- /R/index-sites.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/R/index-sites.R -------------------------------------------------------------------------------- /R/search-functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/R/search-functions.R -------------------------------------------------------------------------------- /R/searcher-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/R/searcher-package.R -------------------------------------------------------------------------------- /R/utilities.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/R/utilities.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/codecov.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/cran-comments.md -------------------------------------------------------------------------------- /man/ai_prompt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/man/ai_prompt.Rd -------------------------------------------------------------------------------- /man/ai_prompt_active.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/man/ai_prompt_active.Rd -------------------------------------------------------------------------------- /man/ai_prompt_clear.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/man/ai_prompt_clear.Rd -------------------------------------------------------------------------------- /man/ai_prompt_list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/man/ai_prompt_list.Rd -------------------------------------------------------------------------------- /man/ai_prompt_management.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/man/ai_prompt_management.Rd -------------------------------------------------------------------------------- /man/ai_prompt_register.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/man/ai_prompt_register.Rd -------------------------------------------------------------------------------- /man/ai_prompt_remove.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/man/ai_prompt_remove.Rd -------------------------------------------------------------------------------- /man/ai_searcher.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/man/ai_searcher.Rd -------------------------------------------------------------------------------- /man/ask_bing_copilot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/man/ask_bing_copilot.Rd -------------------------------------------------------------------------------- /man/ask_chatgpt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/man/ask_chatgpt.Rd -------------------------------------------------------------------------------- /man/ask_claude.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/man/ask_claude.Rd -------------------------------------------------------------------------------- /man/ask_grok.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/man/ask_grok.Rd -------------------------------------------------------------------------------- /man/ask_meta_ai.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/man/ask_meta_ai.Rd -------------------------------------------------------------------------------- /man/ask_mistral.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/man/ask_mistral.Rd -------------------------------------------------------------------------------- /man/ask_perplexity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/man/ask_perplexity.Rd -------------------------------------------------------------------------------- /man/figures/prompt-hierarchy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/man/figures/prompt-hierarchy.svg -------------------------------------------------------------------------------- /man/figures/prompt-structure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/man/figures/prompt-structure.svg -------------------------------------------------------------------------------- /man/figures/searcher-animated-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/man/figures/searcher-animated-logo.svg -------------------------------------------------------------------------------- /man/figures/searcher-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/man/figures/searcher-logo.svg -------------------------------------------------------------------------------- /man/search_bing.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/man/search_bing.Rd -------------------------------------------------------------------------------- /man/search_bitbucket.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/man/search_bitbucket.Rd -------------------------------------------------------------------------------- /man/search_bluesky.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/man/search_bluesky.Rd -------------------------------------------------------------------------------- /man/search_brave.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/man/search_brave.Rd -------------------------------------------------------------------------------- /man/search_duckduckgo.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/man/search_duckduckgo.Rd -------------------------------------------------------------------------------- /man/search_ecosia.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/man/search_ecosia.Rd -------------------------------------------------------------------------------- /man/search_github.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/man/search_github.Rd -------------------------------------------------------------------------------- /man/search_google.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/man/search_google.Rd -------------------------------------------------------------------------------- /man/search_grep.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/man/search_grep.Rd -------------------------------------------------------------------------------- /man/search_kagi.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/man/search_kagi.Rd -------------------------------------------------------------------------------- /man/search_mastodon.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/man/search_mastodon.Rd -------------------------------------------------------------------------------- /man/search_posit_community.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/man/search_posit_community.Rd -------------------------------------------------------------------------------- /man/search_qwant.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/man/search_qwant.Rd -------------------------------------------------------------------------------- /man/search_rseek.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/man/search_rseek.Rd -------------------------------------------------------------------------------- /man/search_site.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/man/search_site.Rd -------------------------------------------------------------------------------- /man/search_stackoverflow.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/man/search_stackoverflow.Rd -------------------------------------------------------------------------------- /man/search_startpage.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/man/search_startpage.Rd -------------------------------------------------------------------------------- /man/search_twitter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/man/search_twitter.Rd -------------------------------------------------------------------------------- /man/searcher-defunct.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/man/searcher-defunct.Rd -------------------------------------------------------------------------------- /man/searcher-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/man/searcher-package.Rd -------------------------------------------------------------------------------- /man/searcher.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/man/searcher.Rd -------------------------------------------------------------------------------- /searcher.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/searcher.Rproj -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-index-sites.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/tests/testthat/test-index-sites.R -------------------------------------------------------------------------------- /tests/testthat/test-search-functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/tests/testthat/test-search-functions.R -------------------------------------------------------------------------------- /tests/testthat/test-searcher-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/tests/testthat/test-searcher-package.R -------------------------------------------------------------------------------- /tests/testthat/test-utilities.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/tests/testthat/test-utilities.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/faq.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/vignettes/faq.Rmd -------------------------------------------------------------------------------- /vignettes/managing-ai-prompts.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/vignettes/managing-ai-prompts.Rmd -------------------------------------------------------------------------------- /vignettes/search-patterns.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/vignettes/search-patterns.Rmd -------------------------------------------------------------------------------- /vignettes/using-ai-assistants-with-searcher.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coatless-rpkg/searcher/HEAD/vignettes/using-ai-assistants-with-searcher.Rmd --------------------------------------------------------------------------------