askpplx 1.2.2 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -36,11 +36,20 @@ askpplx "What are breaking changes in React 19 that affect this code? $(cat src/
|
|
|
36
36
|
Add this rule to your `CLAUDE.md` or `AGENTS.md` to enable automatic Perplexity lookups, no need to configure MCPs:
|
|
37
37
|
|
|
38
38
|
```markdown
|
|
39
|
-
# Rule: askpplx CLI Usage
|
|
39
|
+
# Rule: `askpplx` CLI Usage
|
|
40
40
|
|
|
41
|
-
|
|
41
|
+
**MANDATORY:** Run `npx -y askpplx --help` at the start of every agent session to learn available options and confirm the tool is working.
|
|
42
42
|
|
|
43
|
-
Use
|
|
43
|
+
Use `askpplx` to query Perplexity, an AI search engine combining real-time web search with advanced language models.
|
|
44
44
|
|
|
45
|
-
|
|
45
|
+
## Why This Matters
|
|
46
|
+
|
|
47
|
+
- **Ground your knowledge:** Your training data has a cutoff date. Real-time search ensures you work with current information—correct API signatures, latest versions, up-to-date best practices.
|
|
48
|
+
- **Save time and resources:** A quick lookup is far cheaper than debugging hallucinated code or explaining why an approach failed. When in doubt, verify first.
|
|
49
|
+
- **Reduce false confidence:** Even when you feel certain, external verification catches subtle errors before they compound into larger problems.
|
|
50
|
+
- **Stay current:** Libraries change, APIs deprecate, patterns evolve. What was correct six months ago may be wrong today.
|
|
51
|
+
|
|
52
|
+
## Usage Guidelines
|
|
53
|
+
|
|
54
|
+
Use concise prompts for quick facts and focused questions for deeper topics. If results are unexpected, refine your query and ask again. Verification is fast and cheap—prefer looking up information over making assumptions.
|
|
46
55
|
```
|