askaipods 0.2.0 → 0.2.1

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 CHANGED
@@ -7,7 +7,7 @@ $ askaipods "what are people saying about test-time compute"
7
7
 
8
8
  # askaipods · "what are people saying about test-time compute"
9
9
 
10
- *Tier: anonymous · Results: 20 · Quota: 1/5 daily*
10
+ *Tier: anonymous · Results: 20 · Quota: 1/10 daily*
11
11
 
12
12
  ## Results — newest first
13
13
 
@@ -83,7 +83,7 @@ askaipods "Anthropic safety research" --format json
83
83
  # Restrict to recent episodes only (anonymous tier caps --days at 90; member tier accepts any value)
84
84
  askaipods "GPU shortage" --days 90
85
85
 
86
- # Use a member-tier API key for 50/day instead of 5/day
86
+ # Use a member-tier API key for 50/day instead of 10/day
87
87
  ASKAIPODS_API_KEY=pk_xxx askaipods "your query"
88
88
  askaipods "your query" --api-key pk_xxx
89
89
  ```
@@ -100,7 +100,7 @@ Your agent will recognize the trigger phrase, invoke `askaipods`, and present th
100
100
 
101
101
  | | Anonymous (default) | Member |
102
102
  |---|---|---|
103
- | **Daily quota** | 5 searches per IP | 50 searches per user |
103
+ | **Daily quota** | 10 searches per IP | 50 searches per user |
104
104
  | **Results returned** | 20 (deterministic top 20, sorted newest-first) | 20 (deterministic top 20, sorted by relevance) |
105
105
  | **Text length** | Full text | Full text |
106
106
  | **Date precision** | Month only (`2025-10`) | Full date (`2025-10-15`) |
@@ -108,7 +108,7 @@ Your agent will recognize the trigger phrase, invoke `askaipods`, and present th
108
108
  | **Setup** | Nothing | `ASKAIPODS_API_KEY` env var |
109
109
  | **Sign up** | n/a | https://podlens.net |
110
110
 
111
- The anonymous tier exists so you can try the skill end-to-end with zero setup. Sign up for member access only when you outgrow the 5/day quota or need full dates and unlimited lookback.
111
+ The anonymous tier exists so you can try the skill end-to-end with zero setup. Sign up for member access only when you outgrow the 10/day quota or need full dates and unlimited lookback.
112
112
 
113
113
  ## Honest limitations
114
114
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "askaipods",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Search AI podcast quotes by topic — recent episode excerpts from Lex Fridman, Dwarkesh Patel, No Priors, Latent Space, and dozens more. Universal agentskills.io skill compatible with Claude Code, OpenAI Codex, Hermes Agent, OpenClaw, and any other agent that supports the open skill standard. Powered by podlens.net.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -2,7 +2,7 @@
2
2
  name: askaipods
3
3
  description: Search AI podcast quotes about a topic. Use whenever the user asks "what are people saying about X", "latest takes on Y", "find AI podcast quotes about Z", "who is discussing <model/concept>", or wants to know how AI researchers, founders, or VCs are publicly discussing any AI topic — even when they don't say "podcast". Returns recent excerpts from real episodes of Lex Fridman, Dwarkesh Patel, No Priors, Latent Space, and dozens more, sorted newest-first via the podlens.net semantic search API. Trigger eagerly on AI-research, ML-engineering, AI-investing, or AI-policy questions where real-human commentary beats a web search summary. Do not use for general web search, full transcript reading, or non-AI topics.
4
4
  license: MIT
5
- requirements: Node.js 18.3.0+ on PATH (the CLI uses `node:util.parseArgs`, which was added in 18.3.0), internet access to podlens.net. Optional ASKAIPODS_API_KEY env var unlocks the 50/day member tier with full dates and unlimited lookback; without it the skill works on the 5/day anonymous tier (per-IP, month-precision dates, `--days` capped at 90 when specified).
5
+ requirements: Node.js 18.3.0+ on PATH (the CLI uses `node:util.parseArgs`, which was added in 18.3.0), internet access to podlens.net. Optional ASKAIPODS_API_KEY env var unlocks the 50/day member tier with full dates and unlimited lookback; without it the skill works on the 10/day anonymous tier (per-IP, month-precision dates, `--days` capped at 90 when specified).
6
6
  ---
7
7
 
8
8
  # askaipods — AI podcast quote search
package/src/cli.js CHANGED
@@ -30,7 +30,7 @@ OPTIONS:
30
30
  -v, --version Show version
31
31
 
32
32
  ENVIRONMENT:
33
- ASKAIPODS_API_KEY PodLens API key. Without it: 5 searches/day per IP (anonymous).
33
+ ASKAIPODS_API_KEY PodLens API key. Without it: 10 searches/day per IP (anonymous).
34
34
  With it: 50 searches/day per user (member).
35
35
  Sign up at https://podlens.net to get one.
36
36
 
package/src/client.js CHANGED
@@ -196,7 +196,7 @@ export async function search({ query, days, apiKey, endpoint = PODLENS_ENDPOINT
196
196
  if (msg.includes("quota")) {
197
197
  const quotaMsg = apiKey
198
198
  ? "daily search quota exhausted (member tier: 50/day). Quota resets at 00:00 UTC."
199
- : "daily search quota exhausted (anonymous tier: 5/day). Quota resets at 00:00 UTC. " +
199
+ : "daily search quota exhausted (anonymous tier: 10/day). Quota resets at 00:00 UTC. " +
200
200
  "For 50 searches/day, set ASKAIPODS_API_KEY (sign up at https://podlens.net).";
201
201
  throw exitErr(2, quotaMsg);
202
202
  }