vikit-cli 1.0.0 → 1.0.1

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 +7 -6
  2. package/package.json +1 -1
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}`;
@@ -77536,6 +77536,7 @@ async function checkProjectConfigCompleteness(setup, projectDir) {
77536
77536
  const hasOnlyClaudeMd = files.length === 1 && files.includes("CLAUDE.md");
77537
77537
  const totalRequired = requiredDirs.length + 1;
77538
77538
  if (hasOnlyClaudeMd || missingDirs.length === totalRequired) {
77539
+ const details = hasOnlyClaudeMd ? "Only CLAUDE.md found - missing agents, commands, rules, skills" : `Missing all required directories: ${missingDirs.join(", ")}`;
77539
77540
  return {
77540
77541
  id: "vk-project-config-complete",
77541
77542
  name: "Project Config Completeness",
@@ -77543,7 +77544,7 @@ async function checkProjectConfigCompleteness(setup, projectDir) {
77543
77544
  priority: "standard",
77544
77545
  status: "fail",
77545
77546
  message: "Incomplete configuration",
77546
- details: "Only CLAUDE.md found - missing agents, commands, rules, skills",
77547
+ details,
77547
77548
  suggestion: "Run 'vk init' to install complete vikit in project",
77548
77549
  autoFixable: false
77549
77550
  };
@@ -80280,8 +80281,8 @@ var CACHE_TTL_MS2 = parseCacheTtl();
80280
80281
  var GITHUB_API_TIMEOUT_MS = 1e4;
80281
80282
  var CACHE_FILENAME = "config-update-cache.json";
80282
80283
  var KIT_REPOS = {
80283
- engineer: { owner: "vikit", repo: "vikit-engineer" },
80284
- marketing: { owner: "vikit", repo: "vikit-marketing" }
80284
+ engineer: { owner: "nguyen-manh-ha", repo: "vikit-engineer" },
80285
+ marketing: { owner: "nguyen-manh-ha", repo: "vikit-marketing" }
80285
80286
  };
80286
80287
 
80287
80288
  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.1",
4
4
  "description": "CLI tool for bootstrapping and updating vikit projects",
5
5
  "type": "module",
6
6
  "repository": {