Perplexica
A lightweight, open-source AI assistant built for local hardware.
npx -y skills add cutec-chris/PawLia --skill perplexicaAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Perform AI-powered web searches using a Perplexica or Vane instance. Returns a synthesized answer with cited sources. Use when the user asks for current information, research topics, news, or complex questions requiring web search with summarization.
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
1.9 KB, as published. Nobody here has run it
Perplexica / Vane AI Search
Instructions
-
Run the search script with the provided arguments:
python <scripts_dir>/search.py --query "<query>" --focus <focus_mode>The script reads the instance URL from
skill-config.perplexica.url. You may pass--url "<url>"only if an explicit override is needed.Optional model configuration: By default, the skill automatically picks the first available chat and embedding model from the instance. You only need to set these if you want to override the default:
skill-config.perplexica.chat_model_provider(provider display name, e.g.Groq)skill-config.perplexica.chat_model(model key, e.g.llama-3.1-8b-instant)skill-config.perplexica.embedding_model_provider+skill-config.perplexica.embedding_model
Valid values for
--focus:webSearch(default),academicSearch,youtubeSearch,redditSearch,wolframAlphaSearch. Omit--focusif unsure — it defaults towebSearch. -
The script outputs a JSON object with
answer(string) andsources(array of objects withtitle,url,snippetfields) -
Return the answer followed by the sources
Output format
Return results like this:
<answer>
Sources:
1. **<title>** — <url>
Return only the answer and sources, no additional commentary.
Error handling
If the script exits with an error, report: "Search failed: <error message from stderr>"