@chiendt/ack-cli 1.1.0-dev.2 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cli-manifest.json +2 -2
- package/dist/index.js +72 -2
- package/package.json +1 -1
package/cli-manifest.json
CHANGED
package/dist/index.js
CHANGED
|
@@ -63710,7 +63710,7 @@ var package_default;
|
|
|
63710
63710
|
var init_package = __esm(() => {
|
|
63711
63711
|
package_default = {
|
|
63712
63712
|
name: "@chiendt/ack-cli",
|
|
63713
|
-
version: "1.
|
|
63713
|
+
version: "1.2.0",
|
|
63714
63714
|
description: "ACK CLI - tool for bootstrapping and updating ACK kits (Claude Code agent kits)",
|
|
63715
63715
|
type: "module",
|
|
63716
63716
|
repository: {
|
|
@@ -76767,6 +76767,76 @@ var init_ownership_display = __esm(() => {
|
|
|
76767
76767
|
import_picocolors29 = __toESM(require_picocolors(), 1);
|
|
76768
76768
|
});
|
|
76769
76769
|
|
|
76770
|
+
// src/ui/node_modules/picocolors/picocolors.js
|
|
76771
|
+
var require_picocolors2 = __commonJS((exports, module) => {
|
|
76772
|
+
var p2 = process || {};
|
|
76773
|
+
var argv = p2.argv || [];
|
|
76774
|
+
var env3 = p2.env || {};
|
|
76775
|
+
var isColorSupported = !(!!env3.NO_COLOR || argv.includes("--no-color")) && (!!env3.FORCE_COLOR || argv.includes("--color") || p2.platform === "win32" || (p2.stdout || {}).isTTY && env3.TERM !== "dumb" || !!env3.CI);
|
|
76776
|
+
var formatter = (open6, close, replace = open6) => (input) => {
|
|
76777
|
+
let string = "" + input, index = string.indexOf(close, open6.length);
|
|
76778
|
+
return ~index ? open6 + replaceClose(string, close, replace, index) + close : open6 + string + close;
|
|
76779
|
+
};
|
|
76780
|
+
var replaceClose = (string, close, replace, index) => {
|
|
76781
|
+
let result = "", cursor = 0;
|
|
76782
|
+
do {
|
|
76783
|
+
result += string.substring(cursor, index) + replace;
|
|
76784
|
+
cursor = index + close.length;
|
|
76785
|
+
index = string.indexOf(close, cursor);
|
|
76786
|
+
} while (~index);
|
|
76787
|
+
return result + string.substring(cursor);
|
|
76788
|
+
};
|
|
76789
|
+
var createColors = (enabled = isColorSupported) => {
|
|
76790
|
+
let f4 = enabled ? formatter : () => String;
|
|
76791
|
+
return {
|
|
76792
|
+
isColorSupported: enabled,
|
|
76793
|
+
reset: f4("\x1B[0m", "\x1B[0m"),
|
|
76794
|
+
bold: f4("\x1B[1m", "\x1B[22m", "\x1B[22m\x1B[1m"),
|
|
76795
|
+
dim: f4("\x1B[2m", "\x1B[22m", "\x1B[22m\x1B[2m"),
|
|
76796
|
+
italic: f4("\x1B[3m", "\x1B[23m"),
|
|
76797
|
+
underline: f4("\x1B[4m", "\x1B[24m"),
|
|
76798
|
+
inverse: f4("\x1B[7m", "\x1B[27m"),
|
|
76799
|
+
hidden: f4("\x1B[8m", "\x1B[28m"),
|
|
76800
|
+
strikethrough: f4("\x1B[9m", "\x1B[29m"),
|
|
76801
|
+
black: f4("\x1B[30m", "\x1B[39m"),
|
|
76802
|
+
red: f4("\x1B[31m", "\x1B[39m"),
|
|
76803
|
+
green: f4("\x1B[32m", "\x1B[39m"),
|
|
76804
|
+
yellow: f4("\x1B[33m", "\x1B[39m"),
|
|
76805
|
+
blue: f4("\x1B[34m", "\x1B[39m"),
|
|
76806
|
+
magenta: f4("\x1B[35m", "\x1B[39m"),
|
|
76807
|
+
cyan: f4("\x1B[36m", "\x1B[39m"),
|
|
76808
|
+
white: f4("\x1B[37m", "\x1B[39m"),
|
|
76809
|
+
gray: f4("\x1B[90m", "\x1B[39m"),
|
|
76810
|
+
bgBlack: f4("\x1B[40m", "\x1B[49m"),
|
|
76811
|
+
bgRed: f4("\x1B[41m", "\x1B[49m"),
|
|
76812
|
+
bgGreen: f4("\x1B[42m", "\x1B[49m"),
|
|
76813
|
+
bgYellow: f4("\x1B[43m", "\x1B[49m"),
|
|
76814
|
+
bgBlue: f4("\x1B[44m", "\x1B[49m"),
|
|
76815
|
+
bgMagenta: f4("\x1B[45m", "\x1B[49m"),
|
|
76816
|
+
bgCyan: f4("\x1B[46m", "\x1B[49m"),
|
|
76817
|
+
bgWhite: f4("\x1B[47m", "\x1B[49m"),
|
|
76818
|
+
blackBright: f4("\x1B[90m", "\x1B[39m"),
|
|
76819
|
+
redBright: f4("\x1B[91m", "\x1B[39m"),
|
|
76820
|
+
greenBright: f4("\x1B[92m", "\x1B[39m"),
|
|
76821
|
+
yellowBright: f4("\x1B[93m", "\x1B[39m"),
|
|
76822
|
+
blueBright: f4("\x1B[94m", "\x1B[39m"),
|
|
76823
|
+
magentaBright: f4("\x1B[95m", "\x1B[39m"),
|
|
76824
|
+
cyanBright: f4("\x1B[96m", "\x1B[39m"),
|
|
76825
|
+
whiteBright: f4("\x1B[97m", "\x1B[39m"),
|
|
76826
|
+
bgBlackBright: f4("\x1B[100m", "\x1B[49m"),
|
|
76827
|
+
bgRedBright: f4("\x1B[101m", "\x1B[49m"),
|
|
76828
|
+
bgGreenBright: f4("\x1B[102m", "\x1B[49m"),
|
|
76829
|
+
bgYellowBright: f4("\x1B[103m", "\x1B[49m"),
|
|
76830
|
+
bgBlueBright: f4("\x1B[104m", "\x1B[49m"),
|
|
76831
|
+
bgMagentaBright: f4("\x1B[105m", "\x1B[49m"),
|
|
76832
|
+
bgCyanBright: f4("\x1B[106m", "\x1B[49m"),
|
|
76833
|
+
bgWhiteBright: f4("\x1B[107m", "\x1B[49m")
|
|
76834
|
+
};
|
|
76835
|
+
};
|
|
76836
|
+
module.exports = createColors();
|
|
76837
|
+
module.exports.createColors = createColors;
|
|
76838
|
+
});
|
|
76839
|
+
|
|
76770
76840
|
// src/commands/watch/phases/implementation-git-helpers.ts
|
|
76771
76841
|
import { spawn as spawn6 } from "node:child_process";
|
|
76772
76842
|
async function getCurrentBranch2(cwd2) {
|
|
@@ -106300,7 +106370,7 @@ import { basename as basename29, join as join149, resolve as resolve50 } from "n
|
|
|
106300
106370
|
init_logger();
|
|
106301
106371
|
|
|
106302
106372
|
// src/ui/ack-cli-design/tokens.ts
|
|
106303
|
-
var import_picocolors31 = __toESM(
|
|
106373
|
+
var import_picocolors31 = __toESM(require_picocolors2(), 1);
|
|
106304
106374
|
import { homedir as homedir48, platform as platform12 } from "node:os";
|
|
106305
106375
|
import { resolve as resolve49, win32 } from "node:path";
|
|
106306
106376
|
var PANEL_MIN_WIDTH = 60;
|