@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.js
CHANGED
|
@@ -4459,6 +4459,26 @@ function buildBaseBundle(paths = DEFAULT_AGENT_PATHS) {
|
|
|
4459
4459
|
].join("\n"),
|
|
4460
4460
|
tags: ["workflow"]
|
|
4461
4461
|
},
|
|
4462
|
+
{
|
|
4463
|
+
name: "no-ai-attribution",
|
|
4464
|
+
description: "Never add AI signatures or attribution to issues, PRs, comments, or commits",
|
|
4465
|
+
scope: AGENT_RULE_SCOPE.ALWAYS,
|
|
4466
|
+
content: [
|
|
4467
|
+
"# No AI Attribution",
|
|
4468
|
+
"",
|
|
4469
|
+
"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.",
|
|
4470
|
+
"",
|
|
4471
|
+
"This applies to all GitHub-facing content:",
|
|
4472
|
+
"",
|
|
4473
|
+
"- **PR descriptions** \u2014 no `\u{1F916} Generated with Claude Code` (or similar) footer",
|
|
4474
|
+
"- **Issue bodies** \u2014 no attribution lines",
|
|
4475
|
+
"- **Issue and PR comments** \u2014 no signatures",
|
|
4476
|
+
"- **Commit messages** \u2014 no `Co-Authored-By: Claude ...` trailer and no `Generated with ...` line",
|
|
4477
|
+
"",
|
|
4478
|
+
"Content an agent produces must be indistinguishable in format from content a human teammate would write."
|
|
4479
|
+
].join("\n"),
|
|
4480
|
+
tags: ["workflow"]
|
|
4481
|
+
},
|
|
4462
4482
|
{
|
|
4463
4483
|
name: "branch-naming-conventions",
|
|
4464
4484
|
description: "Branch format (type/issue-description), create-on-GitHub-then-fetch workflow",
|