@heurist-network/skills 0.1.7 → 0.1.8

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 (2) hide show
  1. package/dist/cli.js +9 -1
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -955,14 +955,22 @@ async function resolveTargetAgents(options) {
955
955
  if (options.skipConfirm) {
956
956
  return ensureUniversalAgents(detectedNonUniversal);
957
957
  }
958
+ const universalList = getUniversalAgents();
959
+ const universalNames = universalList.map((a) => agents[a].displayName).join(", ");
958
960
  if (detectedNonUniversal.length === 1) {
959
961
  const agent = detectedNonUniversal[0];
962
+ p.log.info(
963
+ `${pc.dim("Always included")} ${pc.cyan("(.agents/skills)")}: ${universalNames}`
964
+ );
960
965
  p.log.info(`Installing to: ${pc.cyan(agents[agent].displayName)}`);
961
966
  return ensureUniversalAgents([agent]);
962
967
  }
968
+ p.log.info(
969
+ `${pc.dim("Always included")} ${pc.cyan("(.agents/skills)")}: ${universalNames}`
970
+ );
963
971
  const selectableAgents = getNonUniversalAgents();
964
972
  const selected = await p.multiselect({
965
- message: detectedNonUniversal.length > 1 ? "Select additional agents to install to:" : "Select agents to install to:",
973
+ message: "Select additional agents to install to:",
966
974
  options: selectableAgents.map((agent) => ({
967
975
  value: agent,
968
976
  label: agents[agent].displayName,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@heurist-network/skills",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
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": {