@codedrifters/configulator 0.0.388 → 0.0.390

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.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",
@@ -18589,6 +18609,7 @@ var PnpmWorkspace = class _PnpmWorkspace extends Component {
18589
18609
  this.minimumReleaseAgeStrict = options.minimumReleaseAgeStrict;
18590
18610
  this.minimumReleaseAgeIgnoreMissingTime = options.minimumReleaseAgeIgnoreMissingTime;
18591
18611
  project.addPackageIgnore(this.fileName);
18612
+ project.tryRemoveFile(this.fileName);
18592
18613
  new YamlFile(this.project, this.fileName, {
18593
18614
  obj: () => {
18594
18615
  const pnpmConfig = {};
@@ -31464,7 +31485,7 @@ var VERSION = {
31464
31485
  /**
31465
31486
  * Version of Projen to use.
31466
31487
  */
31467
- PROJEN_VERSION: "0.101.6",
31488
+ PROJEN_VERSION: "0.101.17",
31468
31489
  /**
31469
31490
  * Version of `actions/setup-node` to use in GitHub workflows.
31470
31491
  * Tracks the version projen currently emits (see node_modules/projen/lib/github/workflows.js).