@heurist-network/skills 0.1.2 → 0.1.4

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.
Files changed (3) hide show
  1. package/README.md +7 -16
  2. package/dist/cli.js +10 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -2,19 +2,19 @@
2
2
 
3
3
  A CLI for browsing, installing, and managing verified AI agent skills from the [Heurist Mesh](https://mesh.heurist.ai) skill marketplace.
4
4
 
5
- Skills are reusable instruction sets (`SKILL.md` files) that extend coding agent capabilities. The Heurist marketplace provides curated, verified skills for Web3, DeFi, and blockchain development stored on [Autonomys](https://autonomys.xyz) decentralized storage.
5
+ Skills are reusable instruction sets (`SKILL.md` files) that extend coding agent capabilities. The Heurist marketplace focuses on verified, secure skills across crypto, finance, market intelligence, social data, and developer workflows: every new skill and every new version is audited before it can be installed, only `verified` skills are available through the CLI, sensitive capabilities trigger explicit warnings, and all marketplace artifacts are stored on [Autonomys](https://autonomys.xyz) decentralized storage with SHA256 integrity tracking.
6
6
 
7
7
  ## Quick Start
8
8
 
9
9
  ```bash
10
- npx @heurist-network/skills add binance-web3-crypto-market-rank
10
+ npx @heurist-network/skills add heurist-mesh
11
11
  ```
12
12
 
13
13
  Or install globally:
14
14
 
15
15
  ```bash
16
16
  npm i -g @heurist-network/skills
17
- heurist-skills add binance-web3-crypto-market-rank
17
+ heurist-skills add heurist-mesh
18
18
  ```
19
19
 
20
20
  ## Commands
@@ -52,8 +52,8 @@ heurist-skills add
52
52
  Search the skill marketplace.
53
53
 
54
54
  ```bash
55
- heurist-skills find binance
56
- heurist-skills find --category defi
55
+ heurist-skills find heurist
56
+ heurist-skills find --category Stocks
57
57
  heurist-skills find # browse all
58
58
  ```
59
59
 
@@ -67,7 +67,7 @@ List installed skills or browse the marketplace.
67
67
  heurist-skills list # project-installed skills
68
68
  heurist-skills list --global # global-installed skills
69
69
  heurist-skills list --remote # browse marketplace
70
- heurist-skills list --remote -c defi # filter by category
70
+ heurist-skills list --remote -c Crypto # filter by category
71
71
  heurist-skills list -a claude-code # filter by agent
72
72
  ```
73
73
 
@@ -78,7 +78,7 @@ Aliases: `ls`
78
78
  Show detailed skill information including capabilities, files, and install state.
79
79
 
80
80
  ```bash
81
- heurist-skills info binance-web3-crypto-market-rank
81
+ heurist-skills info heurist-mesh
82
82
  ```
83
83
 
84
84
  Aliases: `show`
@@ -147,15 +147,6 @@ Agents that share `.agents/skills/` (Cursor, Codex, OpenCode, Cline, Gemini CLI,
147
147
 
148
148
  The CLI auto-detects which agents are installed on your system. If one agent is found, it installs silently. If multiple are found, it prompts for selection.
149
149
 
150
- ## Heurist-Specific Features
151
-
152
- These features are unique to the Heurist marketplace and not present in other skills CLIs:
153
-
154
- - **Verification gate** — Only `verified` skills can be installed. Draft and archived skills are blocked.
155
- - **Capability warnings** — Before installing, the CLI warns about sensitive capabilities: private key access, transaction signing, leverage usage, and exchange API key requirements.
156
- - **Decentralized storage** — Skills are stored on Autonomys Auto Drive. Each file gets its own content-addressed CID for integrity.
157
- - **SHA256 integrity** — Download responses include `X-Skill-SHA256` for content verification and update tracking.
158
-
159
150
  ## Configuration
160
151
 
161
152
  | Variable | Description |
package/dist/cli.js CHANGED
@@ -607,6 +607,11 @@ async function addCommand(args) {
607
607
  throw new Error("Only verified skills can be installed.");
608
608
  }
609
609
  spinner6.stop(`Found: ${pc.cyan(detail.name)} \u2014 ${detail.description}`);
610
+ if (detail.external_api_dependencies.length > 0) {
611
+ p.log.info(
612
+ `External APIs: ${pc.dim(detail.external_api_dependencies.join(", "))}`
613
+ );
614
+ }
610
615
  const warnings = getCapabilityWarnings(detail.capabilities);
611
616
  if (warnings.length > 0) {
612
617
  p.log.warn(
@@ -1212,7 +1217,8 @@ async function listRemote(options) {
1212
1217
  const status = installed.has(skill.slug) ? pc3.green(" [installed]") : "";
1213
1218
  const category = skill.category ? pc3.dim(` [${skill.category}]`) : "";
1214
1219
  const risk = skill.risk_tier ? pc3.dim(` risk:${skill.risk_tier}`) : "";
1215
- console.log(` ${pc3.cyan(skill.slug)}${category}${risk}${status}`);
1220
+ const externalApis = skill.external_api_dependencies.length > 0 ? pc3.dim(` apis:${skill.external_api_dependencies.join(", ")}`) : "";
1221
+ console.log(` ${pc3.cyan(skill.slug)}${category}${risk}${externalApis}${status}`);
1216
1222
  console.log(` ${skill.description}`);
1217
1223
  const warnings = [];
1218
1224
  if (skill.capabilities.requires_private_keys) warnings.push("private-keys");
@@ -1325,6 +1331,9 @@ async function infoCommand(args) {
1325
1331
  console.log(` ${pc4.bold("Risk Tier:")} ${detail.risk_tier || "\u2014"}`);
1326
1332
  console.log(` ${pc4.bold("Status:")} ${detail.verification_status}`);
1327
1333
  console.log(` ${pc4.bold("Source:")} ${detail.source_url || "\u2014"}`);
1334
+ if (detail.external_api_dependencies.length > 0) {
1335
+ console.log(` ${pc4.bold("External APIs:")} ${detail.external_api_dependencies.join(", ")}`);
1336
+ }
1328
1337
  if (detail.author?.display_name) {
1329
1338
  console.log(` ${pc4.bold("Author:")} ${detail.author.display_name}`);
1330
1339
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@heurist-network/skills",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "CLI tool for browsing, installing, and managing Heurist Mesh skills from the skill marketplace registry.",
5
5
  "type": "module",
6
6
  "bin": {