@arvoretech/hub 0.6.1 → 0.6.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/dist/index.js +7 -8
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -145,8 +145,7 @@ var addRepoCommand = new Command2("add-repo").description("Add a repository to t
|
|
|
145
145
|
url,
|
|
146
146
|
...opts.tech && { tech: opts.tech }
|
|
147
147
|
});
|
|
148
|
-
|
|
149
|
-
await writeFile2(configPath, header + stringify2(config), "utf-8");
|
|
148
|
+
await writeFile2(configPath, SCHEMA_COMMENT2 + stringify2(config), "utf-8");
|
|
150
149
|
const gitignorePath = join2(hubDir, ".gitignore");
|
|
151
150
|
await appendFile(gitignorePath, `${repoName}
|
|
152
151
|
`);
|
|
@@ -1230,7 +1229,7 @@ Installing skill ${source} from registry
|
|
|
1230
1229
|
})
|
|
1231
1230
|
).addCommand(
|
|
1232
1231
|
new Command7("find").description("Browse curated skills in the Repo Hub directory").argument("[query]", "Search term").action(async (query) => {
|
|
1233
|
-
const base = "https://
|
|
1232
|
+
const base = "https://hub.arvore.com.br/directory?type=skill";
|
|
1234
1233
|
const url = query ? `${base}&q=${encodeURIComponent(query)}` : base;
|
|
1235
1234
|
console.log(chalk7.blue("\n Browse curated skills at:\n"));
|
|
1236
1235
|
console.log(chalk7.cyan(` ${url}
|
|
@@ -1480,7 +1479,7 @@ Removed agent: ${name}
|
|
|
1480
1479
|
})
|
|
1481
1480
|
).addCommand(
|
|
1482
1481
|
new Command8("find").description("Browse curated agents in the Repo Hub directory").argument("[query]", "Search term").action(async (query) => {
|
|
1483
|
-
const base = "https://
|
|
1482
|
+
const base = "https://hub.arvore.com.br/directory?type=agent";
|
|
1484
1483
|
const url = query ? `${base}&q=${encodeURIComponent(query)}` : base;
|
|
1485
1484
|
console.log(chalk8.blue("\n Browse curated agents at:\n"));
|
|
1486
1485
|
console.log(chalk8.cyan(` ${url}
|
|
@@ -1700,7 +1699,7 @@ Installing hooks from ${source}
|
|
|
1700
1699
|
})
|
|
1701
1700
|
).addCommand(
|
|
1702
1701
|
new Command9("find").description("Browse curated hooks in the Repo Hub directory").argument("[query]", "Search term").action(async (query) => {
|
|
1703
|
-
const base = "https://
|
|
1702
|
+
const base = "https://hub.arvore.com.br/directory?type=hook";
|
|
1704
1703
|
const url = query ? `${base}&q=${encodeURIComponent(query)}` : base;
|
|
1705
1704
|
console.log(chalk9.blue("\n Browse curated hooks at:\n"));
|
|
1706
1705
|
console.log(chalk9.cyan(` ${url}
|
|
@@ -1897,7 +1896,7 @@ Installing commands from ${source}
|
|
|
1897
1896
|
})
|
|
1898
1897
|
).addCommand(
|
|
1899
1898
|
new Command10("find").description("Browse curated commands in the Repo Hub directory").argument("[query]", "Search term").action(async (query) => {
|
|
1900
|
-
const base = "https://
|
|
1899
|
+
const base = "https://hub.arvore.com.br/directory?type=command";
|
|
1901
1900
|
const url = query ? `${base}&q=${encodeURIComponent(query)}` : base;
|
|
1902
1901
|
console.log(chalk10.blue("\n Browse curated commands at:\n"));
|
|
1903
1902
|
console.log(chalk10.cyan(` ${url}
|
|
@@ -2836,7 +2835,7 @@ var updateCommand = new Command16("update").description("Update hub CLI to the l
|
|
|
2836
2835
|
// src/commands/directory.ts
|
|
2837
2836
|
import { Command as Command17 } from "commander";
|
|
2838
2837
|
import chalk17 from "chalk";
|
|
2839
|
-
var BASE_URL = "https://
|
|
2838
|
+
var BASE_URL = "https://hub.arvore.com.br/directory";
|
|
2840
2839
|
var directoryCommand = new Command17("directory").alias("dir").description("Browse the Repo Hub directory of skills, agents, hooks, and commands").argument("[query]", "Search term").option("-t, --type <type>", "Filter by type (skill, agent, hook, command)").action(async (query, opts) => {
|
|
2841
2840
|
const params = new URLSearchParams();
|
|
2842
2841
|
if (opts?.type) params.set("type", opts.type);
|
|
@@ -2857,7 +2856,7 @@ var directoryCommand = new Command17("directory").alias("dir").description("Brow
|
|
|
2857
2856
|
var program = new Command18();
|
|
2858
2857
|
program.name("hub").description(
|
|
2859
2858
|
"Give your AI coding assistant the full picture. Multi-repo context, agent orchestration, and end-to-end workflows."
|
|
2860
|
-
).version("0.6.
|
|
2859
|
+
).version("0.6.2").enablePositionalOptions();
|
|
2861
2860
|
program.addCommand(initCommand);
|
|
2862
2861
|
program.addCommand(addRepoCommand);
|
|
2863
2862
|
program.addCommand(setupCommand);
|