lean-spec 0.2.21 → 0.2.22

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
@@ -82,6 +82,26 @@ Works with any AI coding assistant via MCP or CLI:
82
82
 
83
83
  ---
84
84
 
85
+ ## Agent Skills
86
+
87
+ Teach your AI assistant the Spec-Driven Development methodology:
88
+
89
+ ```bash
90
+ npx skills add codervisor/lean-spec --skill leanspec-sdd
91
+ ```
92
+
93
+ This installs the **leanspec-sdd** skill which teaches AI agents:
94
+ - When to create specs vs. implement directly
95
+ - How to discover existing specs before creating new ones
96
+ - Best practices for context economy and progressive disclosure
97
+ - Complete SDD workflow (Discover → Design → Implement → Validate)
98
+
99
+ **Compatible with:** Claude Code, Cursor, Windsurf, GitHub Copilot, and other [Agent Skills](https://skills.sh/) compatible tools.
100
+
101
+ 📖 [View skill documentation →](skills/leanspec-sdd/SKILL.md)
102
+
103
+ ---
104
+
85
105
  ## Features
86
106
 
87
107
  | Feature | Description |
Binary file
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leanspec/cli-darwin-arm64",
3
- "version": "0.2.21",
3
+ "version": "0.2.22",
4
4
  "description": "LeanSpec CLI binary for macOS ARM64",
5
5
  "os": [
6
6
  "darwin"
Binary file
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leanspec/cli-darwin-x64",
3
- "version": "0.2.21",
3
+ "version": "0.2.22",
4
4
  "description": "LeanSpec CLI binary for macOS x64",
5
5
  "os": [
6
6
  "darwin"
Binary file
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leanspec/cli-linux-x64",
3
- "version": "0.2.21",
3
+ "version": "0.2.22",
4
4
  "description": "LeanSpec CLI binary for Linux x64",
5
5
  "os": [
6
6
  "linux"
Binary file
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leanspec/cli-windows-x64",
3
- "version": "0.2.21",
3
+ "version": "0.2.22",
4
4
  "description": "LeanSpec CLI binary for Windows x64",
5
5
  "os": [
6
6
  "win32"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lean-spec",
3
- "version": "0.2.21",
3
+ "version": "0.2.22",
4
4
  "description": "Specification-driven development made simple",
5
5
  "type": "module",
6
6
  "bin": {
@@ -39,9 +39,9 @@
39
39
  "node": ">=20"
40
40
  },
41
41
  "optionalDependencies": {
42
- "@leanspec/cli-darwin-x64": "0.2.21",
43
- "@leanspec/cli-darwin-arm64": "0.2.21",
44
- "@leanspec/cli-linux-x64": "0.2.21",
45
- "@leanspec/cli-windows-x64": "0.2.21"
42
+ "@leanspec/cli-darwin-x64": "0.2.22",
43
+ "@leanspec/cli-darwin-arm64": "0.2.22",
44
+ "@leanspec/cli-linux-x64": "0.2.22",
45
+ "@leanspec/cli-windows-x64": "0.2.22"
46
46
  }
47
47
  }