devrage 0.6.0 → 0.6.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/dist/cli.js +1 -21
- package/dist/cli.js.map +2 -2
- package/dist/lib/slop/index.d.ts.map +1 -1
- package/dist/lib/slop/index.js +0 -20
- package/dist/lib/slop/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -3059,16 +3059,6 @@ var SLOP_SIGNALS = [
|
|
|
3059
3059
|
category: "sycophancy",
|
|
3060
3060
|
pattern: /\byou(?:['’]re|\s+are)\s+right\s+to\s+(?:call|point|flag)\s+(?:me|that|this)\s+out\b/giu
|
|
3061
3061
|
},
|
|
3062
|
-
{
|
|
3063
|
-
tell: "good question",
|
|
3064
|
-
category: "sycophancy",
|
|
3065
|
-
pattern: /\b(?:(?:that(?:['’]s|\s+is)|this\s+is)\s+)?(?:a\s+)?(?:good|great|excellent)\s+question\b/giu
|
|
3066
|
-
},
|
|
3067
|
-
{
|
|
3068
|
-
tell: "good catch",
|
|
3069
|
-
category: "sycophancy",
|
|
3070
|
-
pattern: /\b(?:(?:that(?:['’]s|\s+is)|this\s+is)\s+)?(?:a\s+)?(?:good|great|excellent)\s+catch\b/giu
|
|
3071
|
-
},
|
|
3072
3062
|
{
|
|
3073
3063
|
tell: "real gap",
|
|
3074
3064
|
category: "sycophancy",
|
|
@@ -3130,11 +3120,6 @@ var SLOP_SIGNALS = [
|
|
|
3130
3120
|
category: "stock prose",
|
|
3131
3121
|
pattern: /\b(?:(?:it\s+is|it(?:['’]s))\s+)?important\s+to\s+note\b/giu
|
|
3132
3122
|
},
|
|
3133
|
-
{
|
|
3134
|
-
tell: "worth noting",
|
|
3135
|
-
category: "stock prose",
|
|
3136
|
-
pattern: /\b(?:(?:it\s+is|it(?:['’]s))\s+)?worth\s+noting\b/giu
|
|
3137
|
-
},
|
|
3138
3123
|
{
|
|
3139
3124
|
tell: "let me break this down",
|
|
3140
3125
|
category: "stock prose",
|
|
@@ -3151,11 +3136,6 @@ var SLOP_SIGNALS = [
|
|
|
3151
3136
|
pattern: /\blet(?:['’]s|\s+us)\s+unpack\s+(?:this|that|it)\b/giu
|
|
3152
3137
|
},
|
|
3153
3138
|
{ tell: "at its core", category: "stock prose", pattern: /\bat\s+its\s+core\b/giu },
|
|
3154
|
-
{
|
|
3155
|
-
tell: "comprehensive",
|
|
3156
|
-
category: "stock prose",
|
|
3157
|
-
pattern: /\bcomprehensive\s+(?:analysis|approach|coverage|error\s+handling|guide|implementation|overview|solution|suite)\b/giu
|
|
3158
|
-
},
|
|
3159
3139
|
{
|
|
3160
3140
|
tell: "successfully implemented",
|
|
3161
3141
|
category: "stock prose",
|
|
@@ -4199,7 +4179,7 @@ async function main() {
|
|
|
4199
4179
|
process.exit(0);
|
|
4200
4180
|
}
|
|
4201
4181
|
if (command === "--version") {
|
|
4202
|
-
console.log("0.6.
|
|
4182
|
+
console.log("0.6.1");
|
|
4203
4183
|
process.exit(0);
|
|
4204
4184
|
}
|
|
4205
4185
|
const parsed = parseCommand(args);
|