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