agentshq 0.1.4 → 0.1.5
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/cli.mjs
CHANGED
|
@@ -2945,7 +2945,7 @@ var WellKnownProvider = class {
|
|
|
2945
2945
|
const wellKnownProvider = new WellKnownProvider();
|
|
2946
2946
|
//#endregion
|
|
2947
2947
|
//#region package.json
|
|
2948
|
-
var version$1 = "0.1.
|
|
2948
|
+
var version$1 = "0.1.5";
|
|
2949
2949
|
//#endregion
|
|
2950
2950
|
//#region src/add.ts
|
|
2951
2951
|
const isCancelled$1 = (value) => typeof value === "symbol";
|
|
@@ -4753,7 +4753,6 @@ async function removeCommand(agentNames, options) {
|
|
|
4753
4753
|
}
|
|
4754
4754
|
const format = ide.agentFileFormat;
|
|
4755
4755
|
if (format === "flat-md" || format === "flat-agent-md" || format === "json" || format === "toml") {
|
|
4756
|
-
const { getOutputFileName } = await import("./_chunks/format-translator.mjs");
|
|
4757
4756
|
const fileName = getOutputFileName(sanitizedName, format);
|
|
4758
4757
|
const flatFilePath = join(isGlobal ? ide.globalAgentsDir : join(cwd, ide.agentsDir), fileName);
|
|
4759
4758
|
try {
|
|
@@ -5358,4 +5357,4 @@ async function main() {
|
|
|
5358
5357
|
}
|
|
5359
5358
|
main();
|
|
5360
5359
|
//#endregion
|
|
5361
|
-
export {
|
|
5360
|
+
export {};
|
package/package.json
CHANGED