lean-spec 0.2.21 → 0.2.23

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
@@ -76,12 +76,36 @@ Works with any AI coding assistant via MCP or CLI:
76
76
  }
77
77
  ```
78
78
 
79
- **Compatible with:** VS Code Copilot, Cursor, Windsurf, Claude Code, Gemini CLI, and more.
79
+ **Compatible with:** VS Code Copilot, Claude Code, Gemini CLI, Cursor, Windsurf, Kiro CLI, Kimi CLI, Qodo CLI, Amp, Trae Agent, Qwen Code, Droid, and more.
80
80
 
81
81
  📖 [Full AI integration guide →](https://www.lean-spec.dev/docs/guide/usage/ai-coding-workflow)
82
82
 
83
83
  ---
84
84
 
85
+ ## Agent Skills
86
+
87
+ Teach your AI assistant the Spec-Driven Development methodology:
88
+
89
+ ```bash
90
+ # Recommended (uses skills.sh)
91
+ lean-spec skill install
92
+
93
+ # Or directly via skills.sh
94
+ npx skills add codervisor/lean-spec -y
95
+ ```
96
+
97
+ This installs the **leanspec-sdd** skill which teaches AI agents:
98
+ - When to create specs vs. implement directly
99
+ - How to discover existing specs before creating new ones
100
+ - Best practices for context economy and progressive disclosure
101
+ - Complete SDD workflow (Discover → Design → Implement → Validate)
102
+
103
+ **Compatible with:** Claude Code, Cursor, Windsurf, GitHub Copilot, and other [Agent Skills](https://skills.sh/) compatible tools.
104
+
105
+ 📖 [View skill documentation →](skills/leanspec-sdd/SKILL.md)
106
+
107
+ ---
108
+
85
109
  ## Features
86
110
 
87
111
  | 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.23",
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.23",
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.23",
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.23",
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.23",
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.23",
43
+ "@leanspec/cli-darwin-arm64": "0.2.23",
44
+ "@leanspec/cli-linux-x64": "0.2.23",
45
+ "@leanspec/cli-windows-x64": "0.2.23"
46
46
  }
47
47
  }