feat: refactor skill scripts into cli subcommands (#759)

This commit is contained in:
Charles Packer
2026-01-31 14:18:10 -08:00
committed by GitHub
parent fa3f48583c
commit 375e485874
38 changed files with 1834 additions and 4402 deletions

View File

@@ -24,14 +24,6 @@ type Props = {
// Horizontal line character for Claude Code style
const SOLID_LINE = "─";
/**
* Truncate text to max length with ellipsis
*/
function truncate(text: string, maxLength: number): string {
if (text.length <= maxLength) return text;
return `${text.slice(0, maxLength - 3)}...`;
}
/**
* InlineTaskApproval - Renders Task tool approval UI inline with pretty formatting
*