@mikulgohil/ai-kit 1.6.0 → 1.7.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/dist/index.js CHANGED
@@ -15,7 +15,7 @@ var GUIDES_DIR = path.join(PACKAGE_ROOT, "guides");
15
15
  var DOCS_SCAFFOLDS_DIR = path.join(PACKAGE_ROOT, "docs-scaffolds");
16
16
  var AGENTS_DIR = path.join(PACKAGE_ROOT, "agents");
17
17
  var CONTEXTS_DIR = path.join(PACKAGE_ROOT, "contexts");
18
- var VERSION = "1.6.0";
18
+ var VERSION = "1.6.1";
19
19
  var AI_KIT_CONFIG_FILE = "ai-kit.config.json";
20
20
  var GENERATED_FILES = {
21
21
  claudeMd: "CLAUDE.md",
@@ -1276,7 +1276,10 @@ var AVAILABLE_SKILLS = [
1276
1276
  "checkpoint",
1277
1277
  "orchestrate",
1278
1278
  "quality-gate",
1279
- "harness-audit"
1279
+ "harness-audit",
1280
+ // New skills (v1.7.0) — requirements clarification (inspired by OMC Deep Interview)
1281
+ "deep-interview",
1282
+ "clarify-requirements"
1280
1283
  ];
1281
1284
  var SKILL_DESCRIPTIONS = {
1282
1285
  "prompt-help": "Help developers write effective AI prompts with structured context",
@@ -1323,7 +1326,10 @@ var SKILL_DESCRIPTIONS = {
1323
1326
  "checkpoint": "Create a verification snapshot \u2014 run all quality checks and record pass/fail status",
1324
1327
  "orchestrate": "Multi-agent orchestration \u2014 break complex tasks into subtasks and delegate to agents",
1325
1328
  "quality-gate": "Run comprehensive quality checks: types, lint, format, tests, bundle, a11y, security",
1326
- "harness-audit": "Audit AI agent configuration \u2014 check CLAUDE.md, hooks, agents, skills, MCP servers"
1329
+ "harness-audit": "Audit AI agent configuration \u2014 check CLAUDE.md, hooks, agents, skills, MCP servers",
1330
+ // New skills (v1.7.0) — requirements clarification
1331
+ "deep-interview": "Socratic requirements gathering \u2014 structured interview to transform vague ideas into detailed specifications",
1332
+ "clarify-requirements": "Quick task clarification \u2014 identify gaps and ambiguities in under 5 minutes before coding"
1327
1333
  };
1328
1334
  async function copySkills(targetDir) {
1329
1335
  const copied = [];
@@ -1412,7 +1418,13 @@ var UNIVERSAL_AGENTS = [
1412
1418
  "build-resolver",
1413
1419
  "doc-updater",
1414
1420
  "refactor-cleaner",
1415
- "architect"
1421
+ "architect",
1422
+ // New agents (v1.7.0) — inspired by oh-my-claudecode evaluation
1423
+ "data-scientist",
1424
+ "performance-profiler",
1425
+ "migration-specialist",
1426
+ "dependency-auditor",
1427
+ "api-designer"
1416
1428
  ];
1417
1429
  var CONDITIONAL_AGENTS = [
1418
1430
  {