specleap-framework 2.1.5 → 2.1.6

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/CHANGELOG.md CHANGED
@@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [2.1.6] - 2026-04-24
11
+
12
+ ### Changed
13
+
14
+ - **`package.json` `bin` field** — switched from string form `"bin": "bin/specleap"` to object form `"bin": { "specleap": "bin/specleap" }`. This makes `npx specleap` work directly; previously the string form made npm link the executable as `specleap-framework` (the package name), forcing users to type `npx specleap-framework` — longer and counter-intuitive.
15
+ - **`package.json` `repository.url`** — added the `git+` prefix (`git+https://github.com/…`) to comply with the canonical [package.json spec](https://docs.npmjs.com/cli/configuring-npm/package-json#repository) and silence the normalization warning npm emitted on every publish.
16
+
17
+ ### Fixed
18
+
19
+ - **`.gitignore`** — added `**/__pycache__/` and `**/*.pyc` so Python bytecode generated at runtime by the `ui-ux-pro-max` skill never sneaks into the repo. Companion to the `.npmignore` rule already shipping since v2.1.5 that keeps the tarball clean.
20
+ - **Removed tracked `.pyc` artifacts** from `.claude/skills/ui-ux-pro-max/scripts/__pycache__/` that had slipped into the repo before the gitignore rule existed.
21
+
22
+ ### Notes
23
+
24
+ - No behavioral change to scripts, agents, commands, i18n or validation pipeline. Pure maintenance release to polish the packaging.
25
+
10
26
  ## [2.1.5] - 2026-04-24
11
27
 
12
28
  ### Fixed
package/README.md CHANGED
@@ -20,7 +20,7 @@
20
20
 
21
21
  SpecLeap convierte cualquier IDE con asistente de IA en un entorno de desarrollo spec-first. Combina un contrato de proyecto inmutable, agentes conversacionales especializados, 34 Agent Skills profesionales y un pipeline de validación en tres capas para entregar código consistente y probado sin improvisación.
22
22
 
23
- **Versión actual:** 2.1.5 · **Licencia:** MIT · **Autor:** Styng Arias ([ConceptualCreative](https://conceptualcreative.com))
23
+ **Versión actual:** 2.1.6 · **Licencia:** MIT · **Autor:** Styng Arias ([ConceptualCreative](https://conceptualcreative.com))
24
24
 
25
25
  ---
26
26
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "specleap-framework",
3
- "version": "2.1.5",
3
+ "version": "2.1.6",
4
4
  "description": "Spec-Driven Development Framework — Transform VSCode, Cursor, JetBrains into spec-first development machines",
5
5
  "keywords": [
6
6
  "spec-driven-development",
@@ -20,7 +20,7 @@
20
20
  "homepage": "https://specleap.com",
21
21
  "repository": {
22
22
  "type": "git",
23
- "url": "https://github.com/ConceptualCreative/specleap-framework.git"
23
+ "url": "git+https://github.com/ConceptualCreative/specleap-framework.git"
24
24
  },
25
25
  "bugs": {
26
26
  "url": "https://github.com/ConceptualCreative/specleap-framework/issues"
@@ -31,7 +31,9 @@
31
31
  "email": "developers@conceptualcreative.com",
32
32
  "url": "https://conceptualcreative.com"
33
33
  },
34
- "bin": "bin/specleap",
34
+ "bin": {
35
+ "specleap": "bin/specleap"
36
+ },
35
37
  "scripts": {
36
38
  "setup": "bash setup.sh",
37
39
  "skills": "bash scripts/install-skills.sh",