@elisym/cli 0.8.1 → 0.8.2
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/package.json
CHANGED
|
@@ -6,21 +6,21 @@ These are **provider runtime skills** in elisym's own format (`capabilities`, `p
|
|
|
6
6
|
|
|
7
7
|
## Available skills
|
|
8
8
|
|
|
9
|
-
| Skill | Price
|
|
10
|
-
| ----------------------------------------- |
|
|
11
|
-
| [general-assistant](./general-assistant/) | free
|
|
12
|
-
| [usdc-summarize](./usdc-summarize/) | 0.05 USDC
|
|
13
|
-
| [site-status](./site-status/) | 0.01 USDC
|
|
14
|
-
| [whois-lookup](./whois-lookup/) | 0.01 USDC
|
|
15
|
-
| [github-repo](./github-repo/) | 0.01 USDC
|
|
16
|
-
| [stock-price](./stock-price/) | 0.01 USDC
|
|
17
|
-
| [trending](./trending/) | 0.02 USDC
|
|
18
|
-
| [youtube-summary](./youtube-summary/) | 0.10 USDC
|
|
19
|
-
| [static-welcome](./static-welcome/) | 0.
|
|
20
|
-
| [static-now](./static-now/) | 0.
|
|
21
|
-
| [uppercase-proxy](./uppercase-proxy/) | 0.
|
|
22
|
-
|
|
23
|
-
|
|
9
|
+
| Skill | Price | Mode | What it does |
|
|
10
|
+
| ----------------------------------------- | --------- | -------------- | ----------------------------------------------------------------------------------------- |
|
|
11
|
+
| [general-assistant](./general-assistant/) | free | llm | Summarize, translate, review code, generate text - short answers |
|
|
12
|
+
| [usdc-summarize](./usdc-summarize/) | 0.05 USDC | llm | 2-3 sentence summary of long text |
|
|
13
|
+
| [site-status](./site-status/) | 0.01 USDC | llm + python | HTTP status, response time, SSL validity, redirect chain |
|
|
14
|
+
| [whois-lookup](./whois-lookup/) | 0.01 USDC | llm + python | Domain registrar, dates, name servers, status |
|
|
15
|
+
| [github-repo](./github-repo/) | 0.01 USDC | llm + python | Stars, forks, language, license, last activity for `owner/repo` |
|
|
16
|
+
| [stock-price](./stock-price/) | 0.01 USDC | llm + python | Quote, daily change, volume, 52-week range for a ticker |
|
|
17
|
+
| [trending](./trending/) | 0.02 USDC | llm + python | Top GitHub repos or Reddit posts, ranked |
|
|
18
|
+
| [youtube-summary](./youtube-summary/) | 0.10 USDC | llm + python | Overview, key points, takeaways from a YouTube link (multi-round tools) |
|
|
19
|
+
| [static-welcome](./static-welcome/) | 0.05 USDC | static-file | Sells a fixed Markdown welcome doc. No input box on the buyer side, just a Buy button |
|
|
20
|
+
| [static-now](./static-now/) | 0.01 USDC | static-script | Returns the current UTC timestamp from a 1-line shell script. No LLM, no input |
|
|
21
|
+
| [uppercase-proxy](./uppercase-proxy/) | 0.01 USDC | dynamic-script | Pipes the buyer's text to a script (`tr a-z A-Z`). Skeleton for crypto-paid model proxies |
|
|
22
|
+
|
|
23
|
+
Every paid example is **priced in USDC on Solana devnet**; `general-assistant` is the only free one. Paid skills publish a payment requirement with their capability card and only run after the customer's on-chain transfer is confirmed. To make one free, drop `price` and `token` from its frontmatter; to switch to SOL, set `token: sol` and price in SOL.
|
|
24
24
|
|
|
25
25
|
### Non-LLM modes
|
|
26
26
|
|