neo-skill 0.1.27 → 0.1.28

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "neo-skill",
3
- "version": "0.1.27",
3
+ "version": "0.1.28",
4
4
  "description": "A multi-assistant skill generator (Claude/Windsurf/Cursor/GitHub Skills) driven by a canonical SkillSpec.",
5
5
  "license": "MIT",
6
6
  "bin": {
@@ -144,6 +144,7 @@ def _build_sync_pairs(effective_ais: List[str]) -> List[tuple]:
144
144
  pairs = [
145
145
  ("skills", "skills"),
146
146
  (".shared/skill-creator", ".shared/skill-creator"),
147
+ (".shared/review-gate", ".shared/review-gate"),
147
148
  ]
148
149
  for ai in effective_ais:
149
150
  rules = AI_COPY_RULES.get(ai)