xwang-mattpocock 0.1.0 → 0.1.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/package.json CHANGED
@@ -1,10 +1,8 @@
1
1
  {
2
2
  "name": "xwang-mattpocock",
3
- "version": "0.1.0",
4
- "description": "A Claude Code skill that grills you relentlessly about a plan or design until reaching shared understanding.",
3
+ "version": "0.1.1",
4
+ "description": "A skill that grills you relentlessly about a plan or design until reaching shared understanding.",
5
5
  "keywords": [
6
- "claude",
7
- "claude-code",
8
6
  "skill",
9
7
  "agent-skill",
10
8
  "interview",
@@ -0,0 +1,74 @@
1
+ ---
2
+ name: to-prd
3
+ description: Turn the current conversation context into a PRD and publish it to the project issue tracker. Use when user wants to create a PRD from the current context.
4
+ ---
5
+
6
+ This skill takes the current conversation context and codebase understanding and produces a PRD. Do NOT interview the user — just synthesize what you already know.
7
+
8
+ The issue tracker and triage label vocabulary should have been provided to you — run `/setup-matt-pocock-skills` if not.
9
+
10
+ ## Process
11
+
12
+ 1. Explore the repo to understand the current state of the codebase, if you haven't already. Use the project's domain glossary vocabulary throughout the PRD, and respect any ADRs in the area you're touching.
13
+
14
+ 2. Sketch out the seams at which you're going to test the feature. Existing seams should be preferred to new ones. Use the highest seam possible. If new seams are needed, propose them at the highest point you can.
15
+
16
+ Check with the user that these seams match their expectations.
17
+
18
+ 3. Write the PRD using the template below, then publish it to the project issue tracker. Apply the `ready-for-agent` triage label - no need for additional triage.
19
+
20
+ <prd-template>
21
+
22
+ ## Problem Statement
23
+
24
+ The problem that the user is facing, from the user's perspective.
25
+
26
+ ## Solution
27
+
28
+ The solution to the problem, from the user's perspective.
29
+
30
+ ## User Stories
31
+
32
+ A LONG, numbered list of user stories. Each user story should be in the format of:
33
+
34
+ 1. As an <actor>, I want a <feature>, so that <benefit>
35
+
36
+ <user-story-example>
37
+ 1. As a mobile bank customer, I want to see balance on my accounts, so that I can make better informed decisions about my spending
38
+ </user-story-example>
39
+
40
+ This list of user stories should be extremely extensive and cover all aspects of the feature.
41
+
42
+ ## Implementation Decisions
43
+
44
+ A list of implementation decisions that were made. This can include:
45
+
46
+ - The modules that will be built/modified
47
+ - The interfaces of those modules that will be modified
48
+ - Technical clarifications from the developer
49
+ - Architectural decisions
50
+ - Schema changes
51
+ - API contracts
52
+ - Specific interactions
53
+
54
+ Do NOT include specific file paths or code snippets. They may end up being outdated very quickly.
55
+
56
+ Exception: if a prototype produced a snippet that encodes a decision more precisely than prose can (state machine, reducer, schema, type shape), inline it within the relevant decision and note briefly that it came from a prototype. Trim to the decision-rich parts — not a working demo, just the important bits.
57
+
58
+ ## Testing Decisions
59
+
60
+ A list of testing decisions that were made. Include:
61
+
62
+ - A description of what makes a good test (only test external behavior, not implementation details)
63
+ - Which modules will be tested
64
+ - Prior art for the tests (i.e. similar types of tests in the codebase)
65
+
66
+ ## Out of Scope
67
+
68
+ A description of the things that are out of scope for this PRD.
69
+
70
+ ## Further Notes
71
+
72
+ Any further notes about the feature.
73
+
74
+ </prd-template>