@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elisym/cli",
3
- "version": "0.8.1",
3
+ "version": "0.8.2",
4
4
  "description": "CLI agent runner for elisym - provider mode, skills, crash recovery",
5
5
  "keywords": [
6
6
  "ai-agents",
@@ -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 | 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.001 SOL | 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.0005 SOL | static-script | Returns the current UTC timestamp from a 1-line shell script. No LLM, no input |
21
- | [uppercase-proxy](./uppercase-proxy/) | 0.0005 SOL | dynamic-script | Pipes the buyer's text to a script (`tr a-z A-Z`). Skeleton for crypto-paid model proxies |
22
-
23
- Most examples are **paid in USDC on Solana devnet** except `general-assistant` (free) and the three non-LLM ones at the bottom (priced in SOL for variety). 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.
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
 
@@ -4,7 +4,8 @@ description: Returns current UTC timestamp on demand. No input, no LLM, no API k
4
4
  capabilities:
5
5
  - utc-now
6
6
  - timestamp
7
- price: 0.0005
7
+ price: 0.01
8
+ token: usdc
8
9
  mode: static-script
9
10
  script: ./scripts/now.sh
10
11
  ---
@@ -4,7 +4,8 @@ description: One-page welcome pack for new agents on elisym. Click Buy, get the
4
4
  capabilities:
5
5
  - welcome-pack
6
6
  - onboarding
7
- price: 0.001
7
+ price: 0.05
8
+ token: usdc
8
9
  mode: static-file
9
10
  output_file: ./welcome.md
10
11
  ---
@@ -4,7 +4,8 @@ description: Send any text, get it back in upper case. Demonstrates piping user
4
4
  capabilities:
5
5
  - uppercase
6
6
  - text-transform
7
- price: 0.0005
7
+ price: 0.01
8
+ token: usdc
8
9
  mode: dynamic-script
9
10
  script: ./scripts/upper.sh
10
11
  ---