@lean-agent/skills 0.0.1

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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Peter Rupp
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # @lean-agent/skills
2
+
3
+ > Starter catalog of portable skills for [lean-agent](https://github.com/disRupptive/lean-agent) — the lean framework for agentic software development.
4
+
5
+ Each skill is a directory containing a `SKILL.md` file in the standard [Claude Code skill format](https://docs.claude.com/en/docs/claude-code/skills). The `@lean-agent/core` CLI translates them into the native format for Claude Code, Cursor, Windsurf, or VS Code (GitHub Copilot).
6
+
7
+ ## Skills
8
+
9
+ | Skill | What it does |
10
+ | --- | --- |
11
+ | **`challenger`** | Interview the user relentlessly about a plan or design until reaching shared understanding. Walks every branch of the decision tree. |
12
+
13
+ More coming.
14
+
15
+ ## Install a skill
16
+
17
+ ```bash
18
+ npx lean-agent add challenger --tool=claude
19
+ ```
20
+
21
+ ## Using a skill without the CLI
22
+
23
+ Every skill in this catalog uses the standard Claude Code SKILL.md format. You can copy any skill directory straight into your `.claude/skills/` folder without installing the CLI. No lock-in.
24
+
25
+ See the [main repository](https://github.com/disRupptive/lean-agent) for the full story.
26
+
27
+ ## License
28
+
29
+ MIT
package/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "@lean-agent/skills",
3
+ "version": "0.0.1",
4
+ "description": "Starter catalog of portable skills for the lean-agent framework. Works with Claude Code, Cursor, Windsurf, and VS Code.",
5
+ "files": [
6
+ "skills/**/*",
7
+ "README.md",
8
+ "LICENSE"
9
+ ],
10
+ "author": "Peter Rupp",
11
+ "license": "MIT",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/disRupptive/lean-agent.git",
15
+ "directory": "packages/skills"
16
+ },
17
+ "bugs": {
18
+ "url": "https://github.com/disRupptive/lean-agent/issues"
19
+ },
20
+ "homepage": "https://github.com/disRupptive/lean-agent/tree/main/packages/skills#readme",
21
+ "keywords": [
22
+ "lean-agent",
23
+ "ai",
24
+ "skills",
25
+ "claude",
26
+ "cursor",
27
+ "windsurf",
28
+ "copilot",
29
+ "challenger"
30
+ ],
31
+ "publishConfig": {
32
+ "access": "public"
33
+ }
34
+ }
@@ -0,0 +1,10 @@
1
+ ---
2
+ name: challenger
3
+ description: Interview the user relentlessly about a plan or design until reaching shared understanding, resolving each branch of the decision tree. Use when user wants to stress-test a plan, get challenged on their design, or mentions "challenge me".
4
+ ---
5
+
6
+ Interview me relentlessly about every aspect of this plan until we reach a shared understanding. Walk down each branch of the design tree, resolving dependencies between decisions one-by-one. For each question, provide your recommended answer.
7
+
8
+ Ask the questions one at a time.
9
+
10
+ If a question can be answered by exploring the codebase, explore the codebase instead.