@ikon85/agent-workflow-kit 0.36.2 → 0.36.3

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/README.md CHANGED
@@ -445,6 +445,10 @@ the old way. Decision record:
445
445
 
446
446
  ## Release notes
447
447
 
448
+ ### 0.36.3
449
+
450
+ - Metadata-only release.
451
+
448
452
  ### 0.36.2
449
453
 
450
454
  - changed: `.claude/skills/to-issues/SKILL.md`
@@ -1,5 +1,5 @@
1
1
  {
2
- "kitVersion": "0.36.2",
2
+ "kitVersion": "0.36.3",
3
3
  "files": [
4
4
  {
5
5
  "path": ".agents/skills/ask-matt/SKILL.md",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ikon85/agent-workflow-kit",
3
- "version": "0.36.2",
3
+ "version": "0.36.3",
4
4
  "description": "Portable AI-agent workflow skills (plan → execute → land → learn) for Claude Code & Codex — grilling, TDD, diagnosis, two-axis code review, cross-model Codex review, design & domain-modeling, plus a skill router (ask-matt). npx init/update/diff/uninstall.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -135,7 +135,7 @@ async function previewReadinessAdoption(context) {
135
135
  candidatePreview.generated = readiness.generated;
136
136
  candidatePreview.migrations = readiness.migrations;
137
137
  candidatePreview.migrated = readiness.migrated;
138
- if (!readiness.migrationConflicts.length) {
138
+ if (!readiness.migrationConflicts.length && !candidatePreview.conflicts.length) {
139
139
  await verifyCandidateSchema(candidateRoot, {
140
140
  pkg, preview: candidatePreview, priorReadinessManifest, nextReadinessManifest,
141
141
  });