@barlevalon/grilling-skill 0.1.0

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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +11 -0
  3. package/SKILL.md +10 -0
  4. package/package.json +39 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Alon Hearter
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,11 @@
1
+ # grilling
2
+
3
+ Reusable interview loop for pressure-testing a plan or design until every branch of the decision tree is resolved.
4
+
5
+ ## Credits
6
+
7
+ Based on [`mattpocock/skills`](https://github.com/mattpocock/skills/tree/main/skills/productivity/grilling) by Matt Pocock.
8
+
9
+ ## Skill
10
+
11
+ - [`SKILL.md`](SKILL.md)
package/SKILL.md ADDED
@@ -0,0 +1,10 @@
1
+ ---
2
+ name: grilling
3
+ description: Interview the user relentlessly about a plan or design. Use when the user wants to stress-test a plan before building, or uses any 'grill' trigger phrases.
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, waiting for feedback on each question before continuing. Asking multiple questions at once is bewildering.
9
+
10
+ If a question can be answered by exploring the codebase, explore the codebase instead.
package/package.json ADDED
@@ -0,0 +1,39 @@
1
+ {
2
+ "name": "@barlevalon/grilling-skill",
3
+ "version": "0.1.0",
4
+ "description": "Reusable interview loop for pressure-testing a plan or design until every branch of the decision tree is resolved.",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/barlevalon/skills.git",
9
+ "directory": "skills/productivity/grilling"
10
+ },
11
+ "bugs": {
12
+ "url": "https://github.com/barlevalon/skills/issues"
13
+ },
14
+ "homepage": "https://github.com/barlevalon/skills/tree/main/skills/productivity/grilling#readme",
15
+ "keywords": [
16
+ "agent-skill",
17
+ "agent-skills",
18
+ "ai-agent",
19
+ "grilling",
20
+ "pi",
21
+ "pi-package",
22
+ "productivity",
23
+ "skills"
24
+ ],
25
+ "files": [
26
+ "LICENSE",
27
+ "README.md",
28
+ "SKILL.md"
29
+ ],
30
+ "scripts": {
31
+ "pack:check": "npm pack --dry-run"
32
+ },
33
+ "pi": {
34
+ "skills": [
35
+ "./SKILL.md"
36
+ ]
37
+ },
38
+ "curator": "Alon Hearter"
39
+ }