@ikon85/agent-workflow-kit 0.36.1 → 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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: to-issues
|
|
3
|
-
description: Break a Feature or Program plan, spec, or PRD into independently-grabbable issues on the project issue tracker. This is the single public Planning facade: explicit Feature identity uses tracer-bullet decomposition; explicit Program identity delegates to the internal graph engine.
|
|
3
|
+
description: "Break a Feature or Program plan, spec, or PRD into independently-grabbable issues on the project issue tracker. This is the single public Planning facade: explicit Feature identity uses tracer-bullet decomposition; explicit Program identity delegates to the internal graph engine."
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<!-- project-extension:protocol-v1:start -->
|
package/README.md
CHANGED
|
@@ -445,6 +445,14 @@ the old way. Decision record:
|
|
|
445
445
|
|
|
446
446
|
## Release notes
|
|
447
447
|
|
|
448
|
+
### 0.36.3
|
|
449
|
+
|
|
450
|
+
- Metadata-only release.
|
|
451
|
+
|
|
452
|
+
### 0.36.2
|
|
453
|
+
|
|
454
|
+
- changed: `.claude/skills/to-issues/SKILL.md`
|
|
455
|
+
|
|
448
456
|
### 0.36.1
|
|
449
457
|
|
|
450
458
|
- changed: `.agents/skills/kit-update/SKILL.md`
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"kitVersion": "0.36.
|
|
2
|
+
"kitVersion": "0.36.3",
|
|
3
3
|
"files": [
|
|
4
4
|
{
|
|
5
5
|
"path": ".agents/skills/ask-matt/SKILL.md",
|
|
@@ -2207,7 +2207,7 @@
|
|
|
2207
2207
|
"ownerSkill": "to-issues",
|
|
2208
2208
|
"surface": "claude",
|
|
2209
2209
|
"installRole": "consumer",
|
|
2210
|
-
"sha256": "
|
|
2210
|
+
"sha256": "7cc957d9883ac205904df9fc3ba2d29e7f13661b6511b355f56115ac992e2a09",
|
|
2211
2211
|
"mode": 420,
|
|
2212
2212
|
"origin": "kit"
|
|
2213
2213
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ikon85/agent-workflow-kit",
|
|
3
|
-
"version": "0.36.
|
|
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": {
|
|
@@ -74,6 +74,8 @@ def parse_scalar(value: str) -> str:
|
|
|
74
74
|
if len(value) < 2 or not value.endswith("'"):
|
|
75
75
|
raise FrontmatterError("unterminated single-quoted scalar")
|
|
76
76
|
return value[1:-1].replace("''", "'")
|
|
77
|
+
if ": " in value:
|
|
78
|
+
raise FrontmatterError("mapping values are not allowed in a plain scalar")
|
|
77
79
|
return value.split(" #", 1)[0].strip()
|
|
78
80
|
|
|
79
81
|
|
|
@@ -193,6 +195,12 @@ class ValidatorBehaves(unittest.TestCase):
|
|
|
193
195
|
md = self._tmp_skill('---\nname: demo\ndescription: "Use „x" then y, z"\n---\nbody\n')
|
|
194
196
|
self.assertTrue(any("does not parse" in p for p in validate(md)))
|
|
195
197
|
|
|
198
|
+
def test_plain_scalar_colon_followed_by_space_is_flagged(self):
|
|
199
|
+
md = self._tmp_skill(
|
|
200
|
+
"---\nname: demo\ndescription: This is invalid YAML: mapping-like text.\n---\nbody\n"
|
|
201
|
+
)
|
|
202
|
+
self.assertTrue(any("does not parse" in p for p in validate(md)))
|
|
203
|
+
|
|
196
204
|
def test_name_dir_mismatch_is_flagged(self):
|
|
197
205
|
md = self._tmp_skill("---\nname: wrong\ndescription: ok\n---\nbody\n")
|
|
198
206
|
self.assertTrue(any("but directory is 'demo'" in p for p in validate(md)))
|
package/src/commands/update.mjs
CHANGED
|
@@ -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
|
});
|