devrage 0.6.1 → 0.6.2
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 -12
- package/dist/cli.js.map +2 -2
- package/dist/lib/slop/index.d.ts.map +1 -1
- package/dist/lib/slop/index.js +0 -11
- package/dist/lib/slop/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -3069,11 +3069,6 @@ var SLOP_SIGNALS = [
|
|
|
3069
3069
|
category: "sycophancy",
|
|
3070
3070
|
pattern: /\b(?:a\s+)?real\s+error\s+in\s+(?:my|the)\s+framing\b/giu
|
|
3071
3071
|
},
|
|
3072
|
-
{
|
|
3073
|
-
tell: "I was wrong",
|
|
3074
|
-
category: "sycophancy",
|
|
3075
|
-
pattern: /\bi\s+was\s+wrong\b/giu
|
|
3076
|
-
},
|
|
3077
3072
|
{
|
|
3078
3073
|
tell: "I overcomplicated it",
|
|
3079
3074
|
category: "sycophancy",
|
|
@@ -3081,7 +3076,6 @@ var SLOP_SIGNALS = [
|
|
|
3081
3076
|
},
|
|
3082
3077
|
// Cross-model corporate/chatbot prose, constrained where a raw word is technical.
|
|
3083
3078
|
{ tell: "delve", category: "stock prose", pattern: /\b(?:delve(?:d|s)?|delving)\b/giu },
|
|
3084
|
-
{ tell: "crucial", category: "stock prose", pattern: /\bcrucial\b/giu },
|
|
3085
3079
|
{ tell: "pivotal", category: "stock prose", pattern: /\bpivotal\b/giu },
|
|
3086
3080
|
{ tell: "tapestry", category: "stock prose", pattern: /\btapestr(?:y|ies)\b/giu },
|
|
3087
3081
|
{
|
|
@@ -3136,11 +3130,6 @@ var SLOP_SIGNALS = [
|
|
|
3136
3130
|
pattern: /\blet(?:['’]s|\s+us)\s+unpack\s+(?:this|that|it)\b/giu
|
|
3137
3131
|
},
|
|
3138
3132
|
{ tell: "at its core", category: "stock prose", pattern: /\bat\s+its\s+core\b/giu },
|
|
3139
|
-
{
|
|
3140
|
-
tell: "successfully implemented",
|
|
3141
|
-
category: "stock prose",
|
|
3142
|
-
pattern: /\bsuccessfully\s+(?:added|completed|created|fixed|implemented|resolved|updated)\b/giu
|
|
3143
|
-
},
|
|
3144
3133
|
{
|
|
3145
3134
|
tell: "Certainly.",
|
|
3146
3135
|
category: "stock prose",
|
|
@@ -4179,7 +4168,7 @@ async function main() {
|
|
|
4179
4168
|
process.exit(0);
|
|
4180
4169
|
}
|
|
4181
4170
|
if (command === "--version") {
|
|
4182
|
-
console.log("0.6.
|
|
4171
|
+
console.log("0.6.2");
|
|
4183
4172
|
process.exit(0);
|
|
4184
4173
|
}
|
|
4185
4174
|
const parsed = parseCommand(args);
|