UNPKG

@mesh-tech/mesh-cli

Version:

CLI for Mesh platform development utilities

14 lines (13 loc) 545 B
import { Command } from "commander"; export declare const INTENT_RANGE = "^0.3.6"; export declare function resolveTargetRoot(startDir?: string): string; export declare function listPackageSkills(root: string): Array<{ name: string; dir: string; source: string; }>; export declare function seedAppSkill(root: string, appName: string, appRelPath: string): string | null; export declare function syncSkills(root: string, opts?: { check?: boolean; }): boolean; export declare function registerSkillsCommands(program: Command): void;