@bluelibs/runner 6.3.0 → 6.3.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/.agents/skills/core/SKILL.md +37 -0
- package/.agents/skills/durable-workflows/SKILL.md +117 -0
- package/.agents/skills/remote-lanes/SKILL.md +114 -0
- package/package.json +1 -11
- package/readmes/BENCHMARKS.md +131 -0
- package/readmes/COMPARISON.md +233 -0
- package/readmes/CRITICAL_THINKING.md +49 -0
- package/readmes/DURABLE_WORKFLOWS.md +2270 -0
- package/readmes/DURABLE_WORKFLOWS_AI.md +258 -0
- package/readmes/ENTERPRISE.md +219 -0
- package/readmes/FLUENT_BUILDERS.md +524 -0
- package/readmes/FULL_GUIDE.md +6694 -0
- package/readmes/FUNCTIONAL.md +350 -0
- package/readmes/MULTI_PLATFORM.md +556 -0
- package/readmes/OOP.md +627 -0
- package/readmes/REMOTE_LANES.md +947 -0
- package/readmes/REMOTE_LANES_AI.md +154 -0
- package/readmes/REMOTE_LANES_HTTP_POLICY.md +330 -0
- package/readmes/SERIALIZER_PROTOCOL.md +337 -0
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# Critical Thinking Checklist
|
|
2
|
+
|
|
3
|
+
← [Back to main README](../README.md)
|
|
4
|
+
|
|
5
|
+
## Before Starting Work
|
|
6
|
+
|
|
7
|
+
- "Think critically about whether this change is actually needed"
|
|
8
|
+
- "Question the assumptions behind this approach"
|
|
9
|
+
- "What's the real problem we're solving? Is this the best solution?"
|
|
10
|
+
- "Apply second-order thinking - what could go wrong with this approach?"
|
|
11
|
+
- "Is this over-engineering? What's the simplest thing that could work?"
|
|
12
|
+
|
|
13
|
+
## During Design/Planning
|
|
14
|
+
|
|
15
|
+
- "What are the trade-offs of this approach? Be specific."
|
|
16
|
+
- "How could this make the code worse, not better?"
|
|
17
|
+
- "Where are we introducing unnecessary complexity?"
|
|
18
|
+
- "Does this follow the KISS principle? If not, why?"
|
|
19
|
+
- "What would a future developer think of this code?"
|
|
20
|
+
- "Are we optimizing prematurely? What's the actual evidence this is needed?"
|
|
21
|
+
|
|
22
|
+
## For DRY/Similar Patterns
|
|
23
|
+
|
|
24
|
+
- "Is this repetition actually harmful, or does it serve clarity?"
|
|
25
|
+
- "Does consolidating this code make it more complex than the repetition?"
|
|
26
|
+
- "Are we sacrificing type safety or readability for DRY?"
|
|
27
|
+
- "Is this a case where WET (Write Everything Twice) is better than DRY?"
|
|
28
|
+
|
|
29
|
+
## For Testing
|
|
30
|
+
|
|
31
|
+
- "Are these tests actually valuable or just chasing coverage?"
|
|
32
|
+
- "What edge cases are we missing?"
|
|
33
|
+
- "How could this test give false confidence?"
|
|
34
|
+
- "Are we testing implementation details or behavior?"
|
|
35
|
+
|
|
36
|
+
## After Implementation
|
|
37
|
+
|
|
38
|
+
- "Review this critically - what would you improve?"
|
|
39
|
+
- "What's the weakest part of this solution?"
|
|
40
|
+
- "If you were taking over this code, what would you question?"
|
|
41
|
+
- "Does this solve the original problem or create new ones?"
|
|
42
|
+
|
|
43
|
+
## General Meta-Prompts
|
|
44
|
+
|
|
45
|
+
- "You're overlooking something obvious. What is it?"
|
|
46
|
+
- "Challenge your own answer - what's wrong with it?"
|
|
47
|
+
- "Play devil's advocate against your own approach"
|
|
48
|
+
- "What's the counter-argument to doing this?"
|
|
49
|
+
- "Slow down and think - is this really necessary?"
|