public-api-finder 0.2.2 → 0.2.3
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 +4 -4
- package/package.json +1 -1
- package/skills/public-api-finder/SKILL.md +4 -4
package/README.md
CHANGED
|
@@ -11,10 +11,10 @@ Powered by multiple sources:
|
|
|
11
11
|
## Quick start
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
|
-
npx --package
|
|
15
|
-
npx --package
|
|
16
|
-
npx --package
|
|
17
|
-
npx --package
|
|
14
|
+
npx --yes --package=public-api-finder -- public-api-finder "weather forecast" --no-auth --https
|
|
15
|
+
npx --yes --package=public-api-finder -- public-api-finder "crypto prices" --category Cryptocurrency --limit 5
|
|
16
|
+
npx --yes --package=public-api-finder -- public-api-finder "jobs" --json
|
|
17
|
+
npx --yes --package=public-api-finder -- public-api-finder "payments" --openapi
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
## Why
|
package/package.json
CHANGED
|
@@ -10,10 +10,10 @@ Use this skill when a task needs a public API candidate. The CLI searches multip
|
|
|
10
10
|
## Quick command
|
|
11
11
|
|
|
12
12
|
```bash
|
|
13
|
-
npx --package
|
|
14
|
-
npx --package
|
|
15
|
-
npx --package
|
|
16
|
-
npx --package
|
|
13
|
+
npx --yes --package=public-api-finder -- public-api-finder "weather forecast" --no-auth --https
|
|
14
|
+
npx --yes --package=public-api-finder -- public-api-finder "crypto prices" --category Cryptocurrency --limit 5
|
|
15
|
+
npx --yes --package=public-api-finder -- public-api-finder "jobs" --json
|
|
16
|
+
npx --yes --package=public-api-finder -- public-api-finder "payments" --openapi
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
If npm is unavailable, use the bundled fallback script:
|