shll-skills 2.0.11 → 2.0.12

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/dist/index.js CHANGED
@@ -1467,7 +1467,7 @@ configCmd.action(async (opts) => {
1467
1467
  process.exit(1);
1468
1468
  }
1469
1469
  });
1470
- var DEFAULT_INDEXER = "https://indexer.shll.run";
1470
+ var DEFAULT_INDEXER = "https://indexer-mainnet.shll.run";
1471
1471
  var listingsCmd = new import_commander.Command("listings").description("List all available agent templates for rent").option("--indexer <url>", "Indexer API URL", DEFAULT_INDEXER).action(async (opts) => {
1472
1472
  try {
1473
1473
  const indexerUrl = opts.indexer || DEFAULT_INDEXER;
package/dist/index.mjs CHANGED
@@ -1477,7 +1477,7 @@ configCmd.action(async (opts) => {
1477
1477
  process.exit(1);
1478
1478
  }
1479
1479
  });
1480
- var DEFAULT_INDEXER = "https://indexer.shll.run";
1480
+ var DEFAULT_INDEXER = "https://indexer-mainnet.shll.run";
1481
1481
  var listingsCmd = new Command("listings").description("List all available agent templates for rent").option("--indexer <url>", "Indexer API URL", DEFAULT_INDEXER).action(async (opts) => {
1482
1482
  try {
1483
1483
  const indexerUrl = opts.indexer || DEFAULT_INDEXER;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shll-skills",
3
- "version": "2.0.11",
3
+ "version": "2.0.12",
4
4
  "description": "SHLL Agent Runtime Skill for OpenClaw",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
package/src/index.ts CHANGED
@@ -1242,7 +1242,7 @@ configCmd.action(async (opts) => {
1242
1242
  });
1243
1243
 
1244
1244
  // -- Subcommand: listings (query available agent templates) --------
1245
- const DEFAULT_INDEXER = "https://indexer.shll.run";
1245
+ const DEFAULT_INDEXER = "https://indexer-mainnet.shll.run";
1246
1246
 
1247
1247
  const listingsCmd = new Command("listings")
1248
1248
  .description("List all available agent templates for rent")