vikit-cli 1.0.0 → 1.0.2

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.
Files changed (2) hide show
  1. package/dist/index.js +10 -8
  2. package/package.json +3 -2
package/dist/index.js CHANGED
@@ -14378,13 +14378,13 @@ var init_kit = __esm(() => {
14378
14378
  engineer: {
14379
14379
  name: "vikit Engineer",
14380
14380
  repo: "vikit-engineer",
14381
- owner: "vikit",
14381
+ owner: "nguyen-manh-ha",
14382
14382
  description: "Engineering toolkit for building with Claude"
14383
14383
  },
14384
14384
  marketing: {
14385
14385
  name: "vikit Marketing",
14386
14386
  repo: "vikit-marketing",
14387
- owner: "vikit",
14387
+ owner: "nguyen-manh-ha",
14388
14388
  description: "Content automation: campaigns, social media, analytics workflows"
14389
14389
  }
14390
14390
  };
@@ -43311,7 +43311,7 @@ function getCliVersion2() {
43311
43311
  function getCliUserAgent() {
43312
43312
  return `${VIKIT_CLI_NPM_PACKAGE_NAME}/${getCliVersion2()}`;
43313
43313
  }
43314
- var VIKIT_CLI_NPM_PACKAGE_NAME = "vikit-cli", VIKIT_CLI_NPM_PACKAGE_URL, VIKIT_CLI_GLOBAL_INSTALL_COMMAND, VIKIT_CLI_INSTALL_COMMANDS, DEFAULT_NETWORK_TIMEOUT_MS = 3000;
43314
+ var VIKIT_CLI_NPM_PACKAGE_NAME = "vikit-cli", VIKIT_CLI_NPM_PACKAGE_URL, VIKIT_CLI_GLOBAL_INSTALL_COMMAND, VIKIT_CLI_INSTALL_COMMANDS, DEFAULT_NETWORK_TIMEOUT_MS = 8000;
43315
43315
  var init_vikit_constants = __esm(() => {
43316
43316
  VIKIT_CLI_NPM_PACKAGE_URL = `https://www.npmjs.com/package/${VIKIT_CLI_NPM_PACKAGE_NAME}`;
43317
43317
  VIKIT_CLI_GLOBAL_INSTALL_COMMAND = `npm install -g ${VIKIT_CLI_NPM_PACKAGE_NAME}`;
@@ -56936,7 +56936,7 @@ var package_default;
56936
56936
  var init_package = __esm(() => {
56937
56937
  package_default = {
56938
56938
  name: "vikit-cli",
56939
- version: "1.0.0",
56939
+ version: "1.0.1",
56940
56940
  description: "CLI tool for bootstrapping and updating vikit projects",
56941
56941
  type: "module",
56942
56942
  repository: {
@@ -56948,7 +56948,8 @@ var init_package = __esm(() => {
56948
56948
  registry: "https://registry.npmjs.org"
56949
56949
  },
56950
56950
  bin: {
56951
- vikit: "bin/vikit.js"
56951
+ vikit: "bin/vikit.js",
56952
+ vk: "bin/vikit.js"
56952
56953
  },
56953
56954
  files: [
56954
56955
  "bin/vikit.js",
@@ -77536,6 +77537,7 @@ async function checkProjectConfigCompleteness(setup, projectDir) {
77536
77537
  const hasOnlyClaudeMd = files.length === 1 && files.includes("CLAUDE.md");
77537
77538
  const totalRequired = requiredDirs.length + 1;
77538
77539
  if (hasOnlyClaudeMd || missingDirs.length === totalRequired) {
77540
+ const details = hasOnlyClaudeMd ? "Only CLAUDE.md found - missing agents, commands, rules, skills" : `Missing all required directories: ${missingDirs.join(", ")}`;
77539
77541
  return {
77540
77542
  id: "vk-project-config-complete",
77541
77543
  name: "Project Config Completeness",
@@ -77543,7 +77545,7 @@ async function checkProjectConfigCompleteness(setup, projectDir) {
77543
77545
  priority: "standard",
77544
77546
  status: "fail",
77545
77547
  message: "Incomplete configuration",
77546
- details: "Only CLAUDE.md found - missing agents, commands, rules, skills",
77548
+ details,
77547
77549
  suggestion: "Run 'vk init' to install complete vikit in project",
77548
77550
  autoFixable: false
77549
77551
  };
@@ -80280,8 +80282,8 @@ var CACHE_TTL_MS2 = parseCacheTtl();
80280
80282
  var GITHUB_API_TIMEOUT_MS = 1e4;
80281
80283
  var CACHE_FILENAME = "config-update-cache.json";
80282
80284
  var KIT_REPOS = {
80283
- engineer: { owner: "vikit", repo: "vikit-engineer" },
80284
- marketing: { owner: "vikit", repo: "vikit-marketing" }
80285
+ engineer: { owner: "nguyen-manh-ha", repo: "vikit-engineer" },
80286
+ marketing: { owner: "nguyen-manh-ha", repo: "vikit-marketing" }
80285
80287
  };
80286
80288
 
80287
80289
  class ConfigVersionChecker {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vikit-cli",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "CLI tool for bootstrapping and updating vikit projects",
5
5
  "type": "module",
6
6
  "repository": {
@@ -12,7 +12,8 @@
12
12
  "registry": "https://registry.npmjs.org"
13
13
  },
14
14
  "bin": {
15
- "vikit": "bin/vikit.js"
15
+ "vikit": "bin/vikit.js",
16
+ "vk": "bin/vikit.js"
16
17
  },
17
18
  "files": [
18
19
  "bin/vikit.js",