mirror of
https://github.com/przeprogramowani/10x-cli.git
synced 2026-09-19 03:30:01 +08:00
56484f5856
* feat(skills): guide CLI setup, named downloads and updates * fix(skills): bound npm inventory checks on cold Windows runners * fix(skills): align launch guide with 10xCards PRD journey * fix(tests): make helper checks portable on Windows * test(helpers): trace Windows npm pack startup * fix(helpers): allow bounded Windows npm startup time * fix(helpers): use released lesson-scoped skill filters Correct setup/guide examples and sync ownership to match CLI 1.21. Exercise the documented preview/write commands through CAC and the real partial writer, preserving all three trees and the PRD schema. Refs: https://github.com/przeprogramowani/10x-cli/pull/41 --------- Co-authored-by: Claude <noreply@anthropic.com>
18 lines
490 B
TypeScript
18 lines
490 B
TypeScript
export function validateCliSkills(
|
|
repoRoot: string,
|
|
options?: { packedPaths?: ReadonlySet<string> },
|
|
): Array<{ name: string; files: number }>;
|
|
|
|
export function readPackedPaths(
|
|
root: string,
|
|
options?: {
|
|
platform?: NodeJS.Platform;
|
|
searchPath?: string;
|
|
run?: (
|
|
command: string,
|
|
args: string[],
|
|
options: { cwd: string; encoding: "utf8"; stdio: ["ignore", "pipe", "pipe"]; timeout: number; killSignal: "SIGKILL" },
|
|
) => string;
|
|
},
|
|
): Set<string>;
|