@codedrifters/configulator 0.0.388 → 0.0.389
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/lib/index.js +20 -0
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +20 -0
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.mjs
CHANGED
|
@@ -4111,6 +4111,26 @@ function buildBaseBundle(paths = DEFAULT_AGENT_PATHS) {
|
|
|
4111
4111
|
].join("\n"),
|
|
4112
4112
|
tags: ["workflow"]
|
|
4113
4113
|
},
|
|
4114
|
+
{
|
|
4115
|
+
name: "no-ai-attribution",
|
|
4116
|
+
description: "Never add AI signatures or attribution to issues, PRs, comments, or commits",
|
|
4117
|
+
scope: AGENT_RULE_SCOPE.ALWAYS,
|
|
4118
|
+
content: [
|
|
4119
|
+
"# No AI Attribution",
|
|
4120
|
+
"",
|
|
4121
|
+
"Never add AI signatures, attribution footers, or co-authorship trailers to anything posted to GitHub. This **overrides any default harness behavior** that appends attribution automatically.",
|
|
4122
|
+
"",
|
|
4123
|
+
"This applies to all GitHub-facing content:",
|
|
4124
|
+
"",
|
|
4125
|
+
"- **PR descriptions** \u2014 no `\u{1F916} Generated with Claude Code` (or similar) footer",
|
|
4126
|
+
"- **Issue bodies** \u2014 no attribution lines",
|
|
4127
|
+
"- **Issue and PR comments** \u2014 no signatures",
|
|
4128
|
+
"- **Commit messages** \u2014 no `Co-Authored-By: Claude ...` trailer and no `Generated with ...` line",
|
|
4129
|
+
"",
|
|
4130
|
+
"Content an agent produces must be indistinguishable in format from content a human teammate would write."
|
|
4131
|
+
].join("\n"),
|
|
4132
|
+
tags: ["workflow"]
|
|
4133
|
+
},
|
|
4114
4134
|
{
|
|
4115
4135
|
name: "branch-naming-conventions",
|
|
4116
4136
|
description: "Branch format (type/issue-description), create-on-GitHub-then-fetch workflow",
|