@ckelsoe/prompt-architect 3.0.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 (76) hide show
  1. package/.claude-plugin/marketplace.json +20 -0
  2. package/.claude-plugin/plugin.json +18 -0
  3. package/CHANGELOG.md +264 -0
  4. package/LICENSE +21 -0
  5. package/MIGRATION.md +66 -0
  6. package/README.md +1184 -0
  7. package/adapters/README.md +267 -0
  8. package/adapters/for-cursor.mdc +138 -0
  9. package/adapters/for-gemini-cli.md +70 -0
  10. package/adapters/for-github-copilot.md +141 -0
  11. package/adapters/for-openai-codex-cli.md +158 -0
  12. package/adapters/for-windsurf.md +136 -0
  13. package/adapters/system-prompt.md +243 -0
  14. package/package.json +135 -0
  15. package/scripts/install.js +490 -0
  16. package/scripts/test.js +213 -0
  17. package/scripts/validate-skill.js +350 -0
  18. package/skills/prompt-architect/SKILL.md +331 -0
  19. package/skills/prompt-architect/assets/templates/ape_template.txt +5 -0
  20. package/skills/prompt-architect/assets/templates/bab_template.txt +15 -0
  21. package/skills/prompt-architect/assets/templates/broke_template.txt +15 -0
  22. package/skills/prompt-architect/assets/templates/cai-critique-revise_template.txt +18 -0
  23. package/skills/prompt-architect/assets/templates/care_template.txt +16 -0
  24. package/skills/prompt-architect/assets/templates/chain-of-density_template.txt +46 -0
  25. package/skills/prompt-architect/assets/templates/chain-of-thought_template.txt +49 -0
  26. package/skills/prompt-architect/assets/templates/co-star_template.txt +17 -0
  27. package/skills/prompt-architect/assets/templates/crispe_template.txt +14 -0
  28. package/skills/prompt-architect/assets/templates/ctf_template.txt +15 -0
  29. package/skills/prompt-architect/assets/templates/devils-advocate_template.txt +25 -0
  30. package/skills/prompt-architect/assets/templates/hybrid_template.txt +101 -0
  31. package/skills/prompt-architect/assets/templates/least-to-most_template.txt +16 -0
  32. package/skills/prompt-architect/assets/templates/plan-and-solve_template.txt +7 -0
  33. package/skills/prompt-architect/assets/templates/pre-mortem_template.txt +27 -0
  34. package/skills/prompt-architect/assets/templates/race_template.txt +19 -0
  35. package/skills/prompt-architect/assets/templates/rcot_template.txt +31 -0
  36. package/skills/prompt-architect/assets/templates/react_template.txt +27 -0
  37. package/skills/prompt-architect/assets/templates/reverse-role_template.txt +11 -0
  38. package/skills/prompt-architect/assets/templates/rise-ie_template.txt +23 -0
  39. package/skills/prompt-architect/assets/templates/rise-ix_template.txt +28 -0
  40. package/skills/prompt-architect/assets/templates/risen_template.txt +21 -0
  41. package/skills/prompt-architect/assets/templates/rpef_template.txt +26 -0
  42. package/skills/prompt-architect/assets/templates/rtf_template.txt +13 -0
  43. package/skills/prompt-architect/assets/templates/self-refine_template.txt +16 -0
  44. package/skills/prompt-architect/assets/templates/skeleton-of-thought_template.txt +15 -0
  45. package/skills/prompt-architect/assets/templates/step-back_template.txt +10 -0
  46. package/skills/prompt-architect/assets/templates/tidd-ec_template.txt +45 -0
  47. package/skills/prompt-architect/assets/templates/tree-of-thought_template.txt +30 -0
  48. package/skills/prompt-architect/references/frameworks/ape.md +200 -0
  49. package/skills/prompt-architect/references/frameworks/bab.md +242 -0
  50. package/skills/prompt-architect/references/frameworks/broke.md +242 -0
  51. package/skills/prompt-architect/references/frameworks/cai-critique-revise.md +230 -0
  52. package/skills/prompt-architect/references/frameworks/care.md +235 -0
  53. package/skills/prompt-architect/references/frameworks/chain-of-density.md +479 -0
  54. package/skills/prompt-architect/references/frameworks/chain-of-thought.md +424 -0
  55. package/skills/prompt-architect/references/frameworks/co-star.md +256 -0
  56. package/skills/prompt-architect/references/frameworks/crispe.md +253 -0
  57. package/skills/prompt-architect/references/frameworks/ctf.md +207 -0
  58. package/skills/prompt-architect/references/frameworks/devils-advocate.md +206 -0
  59. package/skills/prompt-architect/references/frameworks/least-to-most.md +226 -0
  60. package/skills/prompt-architect/references/frameworks/plan-and-solve.md +210 -0
  61. package/skills/prompt-architect/references/frameworks/pre-mortem.md +197 -0
  62. package/skills/prompt-architect/references/frameworks/race.md +243 -0
  63. package/skills/prompt-architect/references/frameworks/rcot.md +203 -0
  64. package/skills/prompt-architect/references/frameworks/react.md +304 -0
  65. package/skills/prompt-architect/references/frameworks/reverse-role.md +189 -0
  66. package/skills/prompt-architect/references/frameworks/rise.md +555 -0
  67. package/skills/prompt-architect/references/frameworks/risen.md +297 -0
  68. package/skills/prompt-architect/references/frameworks/rpef.md +195 -0
  69. package/skills/prompt-architect/references/frameworks/rtf.md +358 -0
  70. package/skills/prompt-architect/references/frameworks/self-refine.md +205 -0
  71. package/skills/prompt-architect/references/frameworks/skeleton-of-thought.md +186 -0
  72. package/skills/prompt-architect/references/frameworks/step-back.md +206 -0
  73. package/skills/prompt-architect/references/frameworks/tidd-ec.md +470 -0
  74. package/skills/prompt-architect/references/frameworks/tree-of-thought.md +260 -0
  75. package/skills/prompt-architect/scripts/framework_analyzer.py +807 -0
  76. package/skills/prompt-architect/scripts/prompt_evaluator.py +336 -0
@@ -0,0 +1,45 @@
1
+ TASK TYPE:
2
+ [Clear indication of the activity type - e.g., Data Analysis, Customer Support Response, Technical Documentation, Content Translation]
3
+
4
+ INSTRUCTIONS:
5
+ [Specific steps and guidelines to accomplish the task]
6
+ 1. [First step or action]
7
+ 2. [Second step or action]
8
+ 3. [Continue with methodology and sequence]
9
+ 4. [Add more steps as needed...]
10
+
11
+ DO:
12
+ [Specify actions, language, structures, and information that MUST be included]
13
+ - [Required action or element #1]
14
+ - [Language or tone to use]
15
+ - [Structure or format to follow]
16
+ - [Information that must be present]
17
+ - [Add more as needed...]
18
+
19
+ DON'T:
20
+ [Highlight actions, elements, or approaches to AVOID]
21
+ - [Error or mistake to prevent #1]
22
+ - [Inappropriate language or approach to avoid]
23
+ - [Common pitfall to prevent]
24
+ - [Limitation or boundary not to cross]
25
+ - [Add more as needed...]
26
+
27
+ EXAMPLES:
28
+ [Provide concrete examples of desired outcomes]
29
+
30
+ Example 1 (Good):
31
+ [Detailed example showing desired output, format, tone, and structure]
32
+
33
+ Example 2 (Optional - Additional Good Example):
34
+ [Another example demonstrating quality and approach]
35
+
36
+ [Optional] Example 3 (What to Avoid):
37
+ [Counter-example showing what NOT to do, if helpful]
38
+
39
+ CONTEXT:
40
+ [Background information and user-provided content that affects the task]
41
+ - [Relevant background information]
42
+ - [Business or domain constraints]
43
+ - [User-provided data or content to reference]
44
+ - [Situational factors affecting the task]
45
+ - [Standards or guidelines that apply]
@@ -0,0 +1,30 @@
1
+ PROBLEM:
2
+ [Define what needs to be solved:
3
+ - What decision or problem are we addressing?
4
+ - What constraints apply?
5
+ - What does a good solution need to achieve?]
6
+
7
+ EXPLORE THESE BRANCHES:
8
+ Branch 1: [Name of approach/strategy]
9
+ Branch 2: [Name of approach/strategy]
10
+ Branch 3: [Name of approach/strategy]
11
+ [Add or remove branches as needed — 2 to 5 is optimal]
12
+
13
+ For each branch, analyze:
14
+ - Describe the approach
15
+ - Work through the core reasoning
16
+ - Identify key strengths
17
+ - Identify key weaknesses or risks
18
+ - Note any edge cases or assumptions
19
+
20
+ EVALUATION CRITERIA:
21
+ [Define how branches will be compared:
22
+ - What matters most? (list in priority order)
23
+ - Any hard constraints that eliminate certain branches?
24
+ - Is there one best answer, or does it depend on context?]
25
+
26
+ CONCLUSION:
27
+ [Synthesize the analysis:
28
+ - Select the best branch with clear reasoning
29
+ - OR explain trade-offs if the answer is context-dependent
30
+ - State the single biggest assumption that could change the recommendation]
@@ -0,0 +1,200 @@
1
+ # APE Framework
2
+
3
+ ## Overview
4
+
5
+ APE (Action, Purpose, Expectation) is the most minimal structured prompt framework — even simpler than RTF or CTF. It is designed for ultra-quick, single-sentence or two-sentence prompts where adding more structure would be overkill. APE answers three essential questions in the fewest possible words: what to do, why it matters, and what success looks like.
6
+
7
+ ## Components
8
+
9
+ ### A - Action
10
+ **Purpose:** State the core action to take. One clear verb-driven instruction.
11
+
12
+ **Questions to Ask:**
13
+ - What exactly should happen?
14
+ - What is the deliverable?
15
+ - What's the one thing needed?
16
+
17
+ **Examples:**
18
+ - "Write a function that..."
19
+ - "Summarize this document..."
20
+ - "Translate the following..."
21
+ - "List three alternatives to..."
22
+
23
+ ### P - Purpose
24
+ **Purpose:** State why this action is needed. Provides just enough context to calibrate the output without a full background brief.
25
+
26
+ **Questions to Ask:**
27
+ - Why is this needed?
28
+ - What will this be used for?
29
+ - Who needs it and why?
30
+
31
+ **Examples:**
32
+ - "...so a new engineer can understand the codebase quickly"
33
+ - "...for inclusion in a weekly stakeholder email"
34
+ - "...because our target market is in Brazil"
35
+ - "...to help decide which approach to take"
36
+
37
+ ### E - Expectation
38
+ **Purpose:** Define what a good result looks like. The standard for success.
39
+
40
+ **Questions to Ask:**
41
+ - What does a good result look like?
42
+ - Any quality bar to meet?
43
+ - Length, format, or tone requirements?
44
+
45
+ **Examples:**
46
+ - "Should be under 100 words and jargon-free"
47
+ - "Should be actionable, not just descriptive"
48
+ - "Should fit in a single Slack message"
49
+ - "Should have a clear recommendation at the end"
50
+
51
+ ## Template Structure
52
+
53
+ ```
54
+ ACTION: [What to do]
55
+ PURPOSE: [Why it's needed]
56
+ EXPECTATION: [What a good result looks like]
57
+ ```
58
+
59
+ Or as a single sentence:
60
+ ```
61
+ [ACTION] so that [PURPOSE], and it should [EXPECTATION].
62
+ ```
63
+
64
+ ## Complete Examples
65
+
66
+ ### Example 1: Code Comment
67
+
68
+ **Before APE:**
69
+ "Add a comment to this function."
70
+
71
+ **After APE:**
72
+ ```
73
+ ACTION: Write a JSDoc comment for this function.
74
+ PURPOSE: So a new team member can understand what it does without reading the implementation.
75
+ EXPECTATION: Should cover parameters, return value, and one usage example. Under 8 lines.
76
+ ```
77
+
78
+ ### Example 2: Meeting Summary
79
+
80
+ **Before APE:**
81
+ "Summarize this meeting."
82
+
83
+ **After APE:**
84
+ ```
85
+ ACTION: Summarize the key decisions and action items from this meeting transcript.
86
+ PURPOSE: For team members who missed the meeting and need to catch up quickly.
87
+ EXPECTATION: Bullet points only, max 10 bullets, each under 15 words.
88
+ ```
89
+
90
+ ### Example 3: Alternative Ideas
91
+
92
+ **Before APE:**
93
+ "Give me options."
94
+
95
+ **After APE:**
96
+ ```
97
+ ACTION: List 3 alternative approaches to the database indexing problem described below.
98
+ PURPOSE: To help the team decide which direction to pursue in tomorrow's planning session.
99
+ EXPECTATION: Each option needs a one-sentence tradeoff (pro and con). No implementation details yet.
100
+ ```
101
+
102
+ ### Example 4: Translation
103
+
104
+ **Before APE:**
105
+ "Translate this."
106
+
107
+ **After APE:**
108
+ ```
109
+ ACTION: Translate the following error message into Portuguese (Brazilian).
110
+ PURPOSE: Our app is launching in Brazil and this error will be seen by end users.
111
+ EXPECTATION: Natural-sounding Brazilian Portuguese, not a literal translation. Keep technical terms in English.
112
+ ```
113
+
114
+ ## Best Use Cases
115
+
116
+ 1. **Quick Tasks**
117
+ - Short code generation
118
+ - Simple translations
119
+ - Brief summaries
120
+ - List generation
121
+
122
+ 2. **When Speed Matters**
123
+ - Rapid iteration
124
+ - One-off requests
125
+ - Low-stakes outputs
126
+
127
+ 3. **When Role Is Obvious**
128
+ - The AI's role is implied by the action
129
+ - No persona setup needed
130
+
131
+ 4. **Single-Sentence Prompts Made Better**
132
+ - Takes any vague one-liner and adds just enough structure
133
+ - Minimal overhead
134
+
135
+ ## Selection Criteria
136
+
137
+ **Choose APE when:**
138
+ - ✅ Task is very simple and self-contained
139
+ - ✅ Role/persona is obvious or irrelevant
140
+ - ✅ You want minimum overhead
141
+ - ✅ Quick iteration is needed
142
+ - ✅ Expectation is the missing piece in your current prompt
143
+
144
+ **Avoid APE when:**
145
+ - ❌ Background/situation matters → use CTF
146
+ - ❌ Expertise framing affects quality → use RTF
147
+ - ❌ Complex multi-step → use RISEN
148
+ - ❌ Audience and tone are critical → use CO-STAR
149
+ - ❌ Transforming existing content → use BAB
150
+
151
+ ## APE vs. RTF vs. CTF
152
+
153
+ | | APE | CTF | RTF |
154
+ |---|---|---|---|
155
+ | Complexity | Minimal | Simple | Simple |
156
+ | Focus | Action + why + bar | Situation + task + format | Persona + task + format |
157
+ | Role needed? | No | No | Yes |
158
+ | Context needed? | Minimal (Purpose) | Yes | No |
159
+ | Best for | Ultra-quick, one-off | Context-heavy | Expertise-driven |
160
+
161
+ ## Inline APE Pattern
162
+
163
+ APE works especially well as a single sentence:
164
+
165
+ ```
166
+ [ACTION] for [PURPOSE], and it should [EXPECTATION].
167
+ ```
168
+
169
+ **Examples:**
170
+ ```
171
+ Summarize this PR description for a non-technical stakeholder, and it should fit in two sentences.
172
+ ```
173
+ ```
174
+ List three naming alternatives for this function for a code review discussion, and each should be self-explanatory without comments.
175
+ ```
176
+ ```
177
+ Write a commit message for these changes for git history, and it should follow conventional commits format.
178
+ ```
179
+
180
+ ## Common Mistakes
181
+
182
+ 1. **Skipping Expectation**
183
+ - Most one-liner prompts have Action but no Expectation
184
+ - Expectation is what APE adds most value on
185
+
186
+ 2. **Over-engineering Purpose**
187
+ - Purpose should be one sentence, not a paragraph
188
+ - If it needs more context, upgrade to CTF
189
+
190
+ 3. **Using APE for Complex Tasks**
191
+ - If Action has multiple sub-steps, upgrade to RISEN
192
+ - If Expectation requires detailed format spec, upgrade to RTF
193
+
194
+ ## Quick Reference
195
+
196
+ | Component | Focus | Key Question |
197
+ |-----------|-------|--------------|
198
+ | Action | What to do | "What should happen?" |
199
+ | Purpose | Why it matters | "Why is this needed?" |
200
+ | Expectation | Success bar | "What does good look like?" |
@@ -0,0 +1,242 @@
1
+ # BAB Framework
2
+
3
+ ## Overview
4
+
5
+ BAB (Before, After, Bridge) is a transformation-focused framework ideal for rewrite, refactor, and conversion tasks. It explicitly defines the current state, the desired state, and asks for the path between them. Nothing in the standard framework set handles "change this into that" as cleanly as BAB.
6
+
7
+ ## Components
8
+
9
+ ### B - Before
10
+ **Purpose:** Describe the current state — what exists now, what's wrong with it, or what needs to change.
11
+
12
+ **Questions to Ask:**
13
+ - What is the current state?
14
+ - What problem does it have?
15
+ - What are the limitations?
16
+ - What does it look like right now?
17
+
18
+ **Examples:**
19
+ - "This function uses nested callbacks and is difficult to read..."
20
+ - "Our homepage copy is written for developers, not customers..."
21
+ - "This README is disorganized with no clear structure..."
22
+
23
+ ### A - After
24
+ **Purpose:** Describe the desired end state — what it should look like once the transformation is complete.
25
+
26
+ **Questions to Ask:**
27
+ - What should the result look like?
28
+ - What qualities should it have?
29
+ - What problems should be solved?
30
+ - What does success look like?
31
+
32
+ **Examples:**
33
+ - "...should use async/await and be readable by a junior developer"
34
+ - "...should speak to non-technical buyers who care about outcomes"
35
+ - "...should have a clear structure with quick start and API docs sections"
36
+
37
+ ### B - Bridge
38
+ **Purpose:** Describe how to get from Before to After — the approach, constraints, and rules for the transformation.
39
+
40
+ **Questions to Ask:**
41
+ - What rules govern the transformation?
42
+ - What must be preserved?
43
+ - What should be changed vs. left alone?
44
+ - Any constraints on approach?
45
+
46
+ **Examples:**
47
+ - "Preserve all existing functionality, only change syntax"
48
+ - "Keep the same information but reframe for a non-technical audience"
49
+ - "Maintain existing section content, just restructure the order and add missing sections"
50
+
51
+ ## Template Structure
52
+
53
+ ```
54
+ BEFORE:
55
+ [Current state — what exists, what's wrong, what needs to change]
56
+
57
+ AFTER:
58
+ [Desired state — what it should look like, qualities it should have]
59
+
60
+ BRIDGE:
61
+ [How to get there — transformation rules, constraints, what to preserve]
62
+ ```
63
+
64
+ ## Complete Examples
65
+
66
+ ### Example 1: Code Refactoring
67
+
68
+ **Before BAB:**
69
+ "Refactor this code."
70
+
71
+ **After BAB:**
72
+ ```
73
+ BEFORE:
74
+ This JavaScript function uses nested callbacks (callback hell) and is difficult
75
+ to read, test, and maintain. It fetches user data, then fetches their orders,
76
+ then fetches order details — all nested three levels deep.
77
+
78
+ AFTER:
79
+ The same logic implemented using async/await with proper error handling. Should
80
+ be readable by a junior developer who is comfortable with ES6+ but unfamiliar
81
+ with Promises. Each step should be clearly separated and independently testable.
82
+
83
+ BRIDGE:
84
+ - Preserve all existing functionality and API call structure
85
+ - Replace only the async pattern (callbacks → async/await)
86
+ - Add try/catch error handling at the top level
87
+ - Do not change variable names or data structures
88
+ - Add inline comments explaining the flow
89
+ ```
90
+
91
+ ### Example 2: Copy Rewrite
92
+
93
+ **Before BAB:**
94
+ "Rewrite our landing page."
95
+
96
+ **After BAB:**
97
+ ```
98
+ BEFORE:
99
+ Our current homepage headline reads: "A robust, scalable event-driven
100
+ microservices orchestration platform." It was written by engineers for
101
+ engineers. Conversion rate is poor because our actual buyers are non-technical
102
+ operations managers.
103
+
104
+ AFTER:
105
+ A headline and 3-sentence description that immediately communicates business
106
+ value to an operations manager. Should answer "what problem does this solve
107
+ for me?" within the first 10 words. Should not use any technical jargon.
108
+
109
+ BRIDGE:
110
+ - Keep the core value proposition (automation, reliability, scale)
111
+ - Replace technical terms with business outcomes
112
+ - Use active voice and plain language
113
+ - Tone: confident, clear, outcome-focused
114
+ - Length: headline (8 words max) + 2-3 supporting sentences
115
+ ```
116
+
117
+ ### Example 3: Documentation Restructure
118
+
119
+ **Before BAB:**
120
+ "Fix our README."
121
+
122
+ **After BAB:**
123
+ ```
124
+ BEFORE:
125
+ Our README starts with a 500-word technical architecture explanation. New
126
+ contributors can't find the quick start. There is no installation section —
127
+ setup instructions are buried in a wiki link. The API docs section is empty.
128
+
129
+ AFTER:
130
+ A README that a new contributor can use to be productive within 15 minutes.
131
+ Clear sections, scannable with headers, quick start in the first screen.
132
+
133
+ BRIDGE:
134
+ - Keep all existing content (do not delete information, only reorganize)
135
+ - Reorder sections: Overview → Quick Start → Installation → Usage → API → Contributing
136
+ - Move architecture explanation to a collapsible section or link to wiki
137
+ - Add a minimal API docs skeleton with TODO placeholders
138
+ - Add a table of contents at the top
139
+ ```
140
+
141
+ ### Example 4: Tone Transformation
142
+
143
+ **Before BAB:**
144
+ "Make this email sound better."
145
+
146
+ **After BAB:**
147
+ ```
148
+ BEFORE:
149
+ This customer complaint response sounds defensive and shifts blame to the
150
+ customer. It uses passive voice and doesn't offer a clear resolution path.
151
+
152
+ AFTER:
153
+ A response that acknowledges the problem, takes responsibility, and gives the
154
+ customer a clear next step. Should feel warm, professional, and solution-focused.
155
+
156
+ BRIDGE:
157
+ - Keep the factual information (what happened, timeline)
158
+ - Remove defensive language and blame shifting
159
+ - Add an explicit apology in the first sentence
160
+ - End with a single, specific action item the customer should take
161
+ - Tone: empathetic but professional, not overly apologetic
162
+ - Length: match original (under 150 words)
163
+ ```
164
+
165
+ ## Best Use Cases
166
+
167
+ 1. **Code Transformations**
168
+ - Refactoring (callbacks → async/await, class → functional, etc.)
169
+ - Language migration
170
+ - Pattern replacement (e.g., raw SQL → ORM)
171
+
172
+ 2. **Content Rewrites**
173
+ - Tone changes (technical → business-friendly)
174
+ - Audience shifts (developers → executives)
175
+ - Style changes (formal → casual)
176
+
177
+ 3. **Document Restructuring**
178
+ - README reorganization
179
+ - Proposal reformatting
180
+ - Report restructuring
181
+
182
+ 4. **Version Upgrades**
183
+ - API migration guides
184
+ - Framework upgrades
185
+ - Standard/spec changes
186
+
187
+ 5. **Communication Transforms**
188
+ - Email tone adjustments
189
+ - Feedback softening
190
+ - Stakeholder translation
191
+
192
+ ## Selection Criteria
193
+
194
+ **Choose BAB when:**
195
+ - ✅ You have existing content that needs transformation
196
+ - ✅ There is a clear current state and desired state
197
+ - ✅ Rules for transformation need to be explicit
198
+ - ✅ Something must be preserved while something else changes
199
+ - ✅ The task is "change this into that"
200
+
201
+ **Avoid BAB when:**
202
+ - ❌ Creating from scratch (no "before" exists) → use CO-STAR, RISEN, or RTF
203
+ - ❌ Reasoning through a problem → use Chain of Thought
204
+ - ❌ Need to specify audience, tone, style in detail → use CO-STAR
205
+ - ❌ Complex multi-step process → use RISEN
206
+
207
+ ## Common Mistakes
208
+
209
+ 1. **Vague Before**
210
+ - Include specific details about current problems, not just "it's bad"
211
+ - Quote actual content when possible
212
+
213
+ 2. **Vague After**
214
+ - Define success criteria explicitly
215
+ - Include the audience/consumer of the result
216
+
217
+ 3. **Missing Bridge Rules**
218
+ - Always specify what must be preserved
219
+ - Define constraints on the transformation approach
220
+ - State what should NOT change
221
+
222
+ 4. **Using BAB for Net-New Creation**
223
+ - If there's no "before", use a different framework
224
+ - BAB requires something to transform
225
+
226
+ ## Quick Reference
227
+
228
+ | Component | Focus | Key Question |
229
+ |-----------|-------|--------------|
230
+ | Before | Current state | "What exists now / what's wrong?" |
231
+ | After | Desired state | "What should it become?" |
232
+ | Bridge | Transformation rules | "How do we get there?" |
233
+
234
+ ## BAB vs. Other Frameworks
235
+
236
+ | Situation | Framework |
237
+ |---|---|
238
+ | Transform existing content | **BAB** |
239
+ | Create from scratch for an audience | CO-STAR |
240
+ | Simple task, no transformation | RTF / CTF |
241
+ | Multi-step process | RISEN |
242
+ | Reasoning through a problem | Chain of Thought |