fix: correct biome suppressions and formatting for #517
This commit is contained in:
@@ -15,7 +15,13 @@ import {
|
||||
} from "./commands/cas.js";
|
||||
import { cmdLogClean, cmdLogList, cmdLogShow } from "./commands/log.js";
|
||||
import { cmdSetup, cmdSetupInteractive } from "./commands/setup.js";
|
||||
import { cmdSkillArchitecture, cmdSkillCli, cmdSkillList, cmdSkillModerator, cmdSkillYaml } from "./commands/skill.js";
|
||||
import {
|
||||
cmdSkillArchitecture,
|
||||
cmdSkillCli,
|
||||
cmdSkillList,
|
||||
cmdSkillModerator,
|
||||
cmdSkillYaml,
|
||||
} from "./commands/skill.js";
|
||||
import { cmdStepFork, cmdStepList, cmdStepRead, cmdStepShow } from "./commands/step.js";
|
||||
import {
|
||||
cmdThreadCancel,
|
||||
@@ -479,7 +485,6 @@ skill
|
||||
.command("cli")
|
||||
.description("Print a markdown reference of all uwf commands")
|
||||
.action(() => {
|
||||
// biome-ignore lint/nursery/noConsole: CLI user-facing output
|
||||
console.log(cmdSkillCli());
|
||||
});
|
||||
|
||||
@@ -487,7 +492,6 @@ skill
|
||||
.command("architecture")
|
||||
.description("Print the architecture reference")
|
||||
.action(() => {
|
||||
// biome-ignore lint/nursery/noConsole: CLI user-facing output
|
||||
console.log(cmdSkillArchitecture());
|
||||
});
|
||||
|
||||
@@ -495,7 +499,6 @@ skill
|
||||
.command("yaml")
|
||||
.description("Print the workflow YAML schema reference")
|
||||
.action(() => {
|
||||
// biome-ignore lint/nursery/noConsole: CLI user-facing output
|
||||
console.log(cmdSkillYaml());
|
||||
});
|
||||
|
||||
@@ -503,7 +506,6 @@ skill
|
||||
.command("moderator")
|
||||
.description("Print the moderator reference")
|
||||
.action(() => {
|
||||
// biome-ignore lint/nursery/noConsole: CLI user-facing output
|
||||
console.log(cmdSkillModerator());
|
||||
});
|
||||
|
||||
@@ -511,7 +513,6 @@ skill
|
||||
.command("list")
|
||||
.description("List all available skill names")
|
||||
.action(() => {
|
||||
// biome-ignore lint/nursery/noConsole: CLI user-facing output
|
||||
console.log(cmdSkillList().join("\n"));
|
||||
});
|
||||
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
export { generateCliReference as cmdSkillCli } from "@uncaged/workflow-util";
|
||||
export { generateArchitectureReference as cmdSkillArchitecture } from "@uncaged/workflow-util";
|
||||
export { generateYamlReference as cmdSkillYaml } from "@uncaged/workflow-util";
|
||||
export { generateModeratorReference as cmdSkillModerator } from "@uncaged/workflow-util";
|
||||
export {
|
||||
generateArchitectureReference as cmdSkillArchitecture,
|
||||
generateCliReference as cmdSkillCli,
|
||||
generateModeratorReference as cmdSkillModerator,
|
||||
generateYamlReference as cmdSkillYaml,
|
||||
} from "@uncaged/workflow-util";
|
||||
|
||||
const SKILL_NAMES = ["cli", "architecture", "yaml", "moderator"] as const;
|
||||
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
export { encodeUint64AsCrockford } from "./base32.js";
|
||||
export { generateArchitectureReference } from "./architecture-reference.js";
|
||||
export { encodeUint64AsCrockford } from "./base32.js";
|
||||
export { generateCliReference } from "./cli-reference.js";
|
||||
export { generateModeratorReference } from "./moderator-reference.js";
|
||||
export { generateYamlReference } from "./yaml-reference.js";
|
||||
export { env } from "./env.js";
|
||||
export type {
|
||||
AgentFrontmatter,
|
||||
@@ -16,6 +14,7 @@ export {
|
||||
validateFrontmatter,
|
||||
} from "./frontmatter-markdown/index.js";
|
||||
export { createLogger } from "./logger.js";
|
||||
export { generateModeratorReference } from "./moderator-reference.js";
|
||||
export type {
|
||||
CreateProcessLoggerOptions,
|
||||
ProcessLogFn,
|
||||
@@ -28,3 +27,4 @@ export { err, ok } from "./result.js";
|
||||
export { getDefaultWorkflowStorageRoot, getGlobalCasDir } from "./storage-root.js";
|
||||
export type { LogFn, Result } from "./types.js";
|
||||
export { extractUlidTimestamp, generateUlid } from "./ulid.js";
|
||||
export { generateYamlReference } from "./yaml-reference.js";
|
||||
|
||||
Reference in New Issue
Block a user