Skip to content

fix(agentic): substitute the template self-name - #73

Merged
hyperpolymath merged 1 commit into
mainfrom
fix/agentic-self-name-leak
Aug 27, 2026
Merged

fix(agentic): substitute the template self-name#73
hyperpolymath merged 1 commit into
mainfrom
fix/agentic-self-name-leak

Conversation

@hyperpolymath

Copy link
Copy Markdown
Owner

.machine_readable/6a2/AGENTIC.a2ml still identified this repo as its own template:

# AGENTIC.a2ml - AI agent interaction patterns for rsr-template-repo
project = "rsr-template-repo"

An agent reading this file to learn what repo it is in was told rsr-template-repo.

Scope: this is the last one

Measured across 1,018 AGENTIC.a2ml copies in the estate, this is the only unsubstituted self-name remaining. The other occurrences of that string are deliberate prose — chronicles-of-slavia narrates its own past leak, boj-server-cartridges cites the template ADR. So this is the last real instance, not the first of many.

Placeholder hygiene is otherwise clean: scanning all 1,018 for {{…}}, ${…}, PROJECT_NAME, REPLACE_ME, PENDING, TODO, FIXME and others returns only false positives (prose about placeholders). rsr-template-repo/scripts/check-no-placeholders.sh is doing its job — it simply does not check the self-name.

Not a licence change, so LICENCE-POLICY.adoc A2 does not apply.

Related: standards#646.

🤖 Generated with Claude Code

AGENTIC.a2ml still identified this repo as its own template:

    # AGENTIC.a2ml - AI agent interaction patterns for rsr-template-repo
    project = "rsr-template-repo"

An agent reading this file to learn what repo it is in was told
"rsr-template-repo".

Measured context: across 1,018 AGENTIC.a2ml copies in the estate this is
the ONLY unsubstituted self-name left. The other occurrences of the
string are deliberate prose - chronicles-of-slavia narrates its own past
leak, boj-server-cartridges cites the template's ADR - so this is the
last real instance, not the first of many.

Cause: `just repo-init`'s token-substitution pass rewrites placeholder
tokens, and a separate pass handles the self-name, but this file was
instantiated before or outside that second pass. Not a licence change,
so LICENCE-POLICY A2 does not apply.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
@coderabbitai

coderabbitai Bot commented Aug 26, 2026

Copy link
Copy Markdown

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: 9c8b9800-060a-40af-8d41-b9eb30346136

📥 Commits

Reviewing files that changed from the base of the PR and between 4d3da78 and bb682da.

📒 Files selected for processing (1)
  • .machine_readable/6a2/AGENTIC.a2ml

Included review availability: Your plan provides up to 1 included review per hour; 0 remain after this review.

📜 Recent review details
⏰ Context from checks skipped due to timeout. (2)
  • GitHub Check: Codacy Static Code Analysis
  • GitHub Check: scan / Hypatia Neurosymbolic Analysis
⚠️ CI failures not shown inline (16)

GitHub Actions: OpenSSF Compliance / 0_openssf-compliance.txt: fix(agentic): substitute the template self-name

Conclusion: failure

View job details

##[group]Run SECFILE=""
 �[36;1mSECFILE=""�[0m
 �[36;1m[ -f "SECURITY.md" ] && SECFILE="SECURITY.md"�[0m
 �[36;1m[ -f "SECURITY.adoc" ] && SECFILE="SECURITY.adoc"�[0m
 �[36;1m[ -f ".github/SECURITY.md" ] && SECFILE=".github/SECURITY.md"�[0m
 �[36;1m�[0m
 �[36;1mif [ -z "$SECFILE" ]; then�[0m
 �[36;1m  echo "::error::SECURITY.md (or SECURITY.adoc) is required for OpenSSF Best Practices"�[0m

GitHub Actions: Rust CI / 2_rust-ci _ Cargo check + clippy + fmt.txt: fix(agentic): substitute the template self-name

Conclusion: failure

View job details

##[group]Run cargo fmt --all -- --check
 �[36;1mcargo fmt --all -- --check�[0m
 shell: /usr/bin/bash -e {0}
 env:
   CARGO_HOME: /home/runner/.cargo
   CARGO_INCREMENTAL: 0
   CARGO_TERM_COLOR: always
   CACHE_ON_FAILURE: false
 ##[endgroup]
 Diff in /home/runner/work/proof-burrower/proof-burrower/crates/burrower-cli/src/main.rs:87:
          /// The proof goal as a string. Quote it.
          goal: String,
          /// Path to the echidna binary.
 -        #[arg(long, default_value = "/var/mnt/eclipse/repos/echidna/target/debug/echidna")]
 +        #[arg(
 +            long,
 +            default_value = "/var/mnt/eclipse/repos/echidna/target/debug/echidna"
 +        )]
          echidna: PathBuf,
          /// Per-attempt timeout (seconds), passed to `echidna prove -t`.
          #[arg(long, default_value_t = 60)]
 Diff in /home/runner/work/proof-burrower/proof-burrower/crates/burrower-cli/src/main.rs:174:
          LedgerCmd::Recent { path, limit } => {
              let l = Ledger::open(&path)?;
              let recs = l.recent(limit)?;
 -            println!("Burrow Ledger — last {} record(s) (newest first):\n", recs.len());
 +            println!(
 +                "Burrow Ledger — last {} record(s) (newest first):\n",
 +                recs.len()
 +            );
              for r in recs {
                  println!("[{}] {} · {}", r.timestamp, r.specialist, r.goal_hash);
                  println!("    goal: {}", r.goal_excerpt);
 Diff in /home/runner/work/proof-burrower/proof-burrower/crates/burrower-cli/src/main.rs:206:
                  );
              }
          }
 -        LedgerCmd::AntiPatterns { path, for_specialist } => {
 +        LedgerCmd::AntiPatterns {
 +            path,
 +            for_specialist,
 +        } => {
              let l = Ledger::open(&path)?;
              let antis = l.anti_patterns_for(&for_specialist)?;
              println!(
 Diff in /home/runner/work/proof-burrower/proof-burrower/crates/burrower-cli/src/main.r...

GitHub Actions: Rust CI / rust-ci _ Cargo check + clippy + fmt: fix(agentic): substitute the template self-name

Conclusion: failure

View job details

##[group]Run cargo fmt --all -- --check
 �[36;1mcargo fmt --all -- --check�[0m
 shell: /usr/bin/bash -e {0}
 env:
   CARGO_HOME: /home/runner/.cargo
   CARGO_INCREMENTAL: 0
   CARGO_TERM_COLOR: always
   CACHE_ON_FAILURE: false
 ##[endgroup]
 Diff in /home/runner/work/proof-burrower/proof-burrower/crates/burrower-cli/src/main.rs:87:
          /// The proof goal as a string. Quote it.
          goal: String,
          /// Path to the echidna binary.
 -        #[arg(long, default_value = "/var/mnt/eclipse/repos/echidna/target/debug/echidna")]
 +        #[arg(
 +            long,
 +            default_value = "/var/mnt/eclipse/repos/echidna/target/debug/echidna"
 +        )]
          echidna: PathBuf,
          /// Per-attempt timeout (seconds), passed to `echidna prove -t`.
          #[arg(long, default_value_t = 60)]
 Diff in /home/runner/work/proof-burrower/proof-burrower/crates/burrower-cli/src/main.rs:174:
          LedgerCmd::Recent { path, limit } => {
              let l = Ledger::open(&path)?;
              let recs = l.recent(limit)?;
 -            println!("Burrow Ledger — last {} record(s) (newest first):\n", recs.len());
 +            println!(
 +                "Burrow Ledger — last {} record(s) (newest first):\n",
 +                recs.len()
 +            );
              for r in recs {
                  println!("[{}] {} · {}", r.timestamp, r.specialist, r.goal_hash);
                  println!("    goal: {}", r.goal_excerpt);
 Diff in /home/runner/work/proof-burrower/proof-burrower/crates/burrower-cli/src/main.rs:206:
                  );
              }
          }
 -        LedgerCmd::AntiPatterns { path, for_specialist } => {
 +        LedgerCmd::AntiPatterns {
 +            path,
 +            for_specialist,
 +        } => {
              let l = Ledger::open(&path)?;
              let antis = l.anti_patterns_for(&for_specialist)?;
              println!(
 Diff in /home/runner/work/proof-burrower/proof-burrower/crates/burrower-cli/src/main.r...

GitHub Actions: OpenSSF Compliance / openssf-compliance: fix(agentic): substitute the template self-name

Conclusion: failure

View job details

##[group]Run SECFILE=""
 �[36;1mSECFILE=""�[0m
 �[36;1m[ -f "SECURITY.md" ] && SECFILE="SECURITY.md"�[0m
 �[36;1m[ -f "SECURITY.adoc" ] && SECFILE="SECURITY.adoc"�[0m
 �[36;1m[ -f ".github/SECURITY.md" ] && SECFILE=".github/SECURITY.md"�[0m
 �[36;1m�[0m
 �[36;1mif [ -z "$SECFILE" ]; then�[0m
 �[36;1m  echo "::error::SECURITY.md (or SECURITY.adoc) is required for OpenSSF Best Practices"�[0m

GitHub Actions: OpenSSF Compliance / openssf-compliance: fix(agentic): substitute the template self-name

Conclusion: failure

View job details

##[group]Run if [ ! -f "LICENSE" ] && [ ! -f "LICENSE.txt" ] && [ ! -f "LICENSE.md" ]; then
 �[36;1mif [ ! -f "LICENSE" ] && [ ! -f "LICENSE.txt" ] && [ ! -f "LICENSE.md" ]; then�[0m
 �[36;1m  echo "::error::LICENSE file is required for OpenSSF Best Practices"�[0m

GitHub Actions: OpenSSF Compliance / openssf-compliance: fix(agentic): substitute the template self-name

Conclusion: failure

View job details

##[group]Run if [ ! -f "CONTRIBUTING.md" ] && [ ! -f "CONTRIBUTING.adoc" ]; then
 �[36;1mif [ ! -f "CONTRIBUTING.md" ] && [ ! -f "CONTRIBUTING.adoc" ]; then�[0m
 �[36;1m  echo "::error::CONTRIBUTING file is required for OpenSSF Best Practices"�[0m

GitHub Actions: Dogfood Gate / 1_Validate eclexiaiser manifest.txt: fix(agentic): substitute the template self-name

Conclusion: failure

View job details

##[group]Run if [ ! -f "eclexiaiser.toml" ]; then
 �[36;1mif [ ! -f "eclexiaiser.toml" ]; then�[0m
 �[36;1m  # Check if repo has a Containerfile — if so, recommend eclexiaiser�[0m
 �[36;1m  if [ -f "Containerfile" ]; then�[0m
 �[36;1m    echo "::warning::Containerfile present but no eclexiaiser.toml. Run \`eclexiaiser init\` to scaffold energy/carbon budgets."�[0m
 �[36;1m  fi�[0m
 �[36;1m  echo "has_manifest=false" >> "$GITHUB_OUTPUT"�[0m
 �[36;1m  exit 0�[0m
 �[36;1mfi�[0m
 �[36;1m�[0m
 �[36;1mecho "has_manifest=true" >> "$GITHUB_OUTPUT"�[0m
 �[36;1m�[0m
 �[36;1m# Validate TOML structure using Python 3.11+ tomllib�[0m
 �[36;1mpython3 -c "�[0m
 �[36;1mimport tomllib, sys�[0m
 �[36;1mwith open('eclexiaiser.toml', 'rb') as f:�[0m
 �[36;1m    data = tomllib.load(f)�[0m
 �[36;1mproject = data.get('project', {})�[0m
 �[36;1mif not project.get('name', '').strip():�[0m
 �[36;1m    print('ERROR: project.name is required', file=sys.stderr)�[0m
 �[36;1m    sys.exit(1)�[0m
 �[36;1mfunctions = data.get('functions', [])�[0m
 �[36;1mif not functions:�[0m
 �[36;1m    print('ERROR: at least one [[functions]] entry is required', file=sys.stderr)�[0m
 �[36;1m    sys.exit(1)�[0m
 �[36;1mfor fn in functions:�[0m
 �[36;1m    if not fn.get('name', '').strip():�[0m
 �[36;1m        print('ERROR: function name cannot be empty', file=sys.stderr)�[0m
 �[36;1m        sys.exit(1)�[0m
 �[36;1m    if not fn.get('source', '').strip():�[0m
 �[36;1m        print(f'ERROR: function {fn[\"name\"]} has no source path', file=sys.stderr)�[0m
 �[36;1m        sys.exit(1)�[0m
 �[36;1mprint(f'Valid: {project[\"name\"]} ({len(functions)} function(s))')�[0m
 �[36;1m" || {�[0m
 �[36;1m  echo "::error file=eclexiaiser.toml::Invalid eclexiaiser.toml — see step output for details"�[0m

GitHub Actions: OpenSSF Compliance / openssf-compliance: fix(agentic): substitute the template self-name

Conclusion: failure

View job details

##[group]Run if [ ! -f "README.md" ] && [ ! -f "README.adoc" ] && [ ! -f "README.rst" ] && [ ! -f "README.txt" ] && [ ! -f "README" ]; then
 �[36;1mif [ ! -f "README.md" ] && [ ! -f "README.adoc" ] && [ ! -f "README.rst" ] && [ ! -f "README.txt" ] && [ ! -f "README" ]; then�[0m
 �[36;1m  echo "::error::README file is required for OpenSSF Best Practices"�[0m

GitHub Actions: Dogfood Gate / Validate eclexiaiser manifest: fix(agentic): substitute the template self-name

Conclusion: failure

View job details

##[group]Run if [ ! -f "eclexiaiser.toml" ]; then
 �[36;1mif [ ! -f "eclexiaiser.toml" ]; then�[0m
 �[36;1m  # Check if repo has a Containerfile — if so, recommend eclexiaiser�[0m
 �[36;1m  if [ -f "Containerfile" ]; then�[0m
 �[36;1m    echo "::warning::Containerfile present but no eclexiaiser.toml. Run \`eclexiaiser init\` to scaffold energy/carbon budgets."�[0m
 �[36;1m  fi�[0m
 �[36;1m  echo "has_manifest=false" >> "$GITHUB_OUTPUT"�[0m
 �[36;1m  exit 0�[0m
 �[36;1mfi�[0m
 �[36;1m�[0m
 �[36;1mecho "has_manifest=true" >> "$GITHUB_OUTPUT"�[0m
 �[36;1m�[0m
 �[36;1m# Validate TOML structure using Python 3.11+ tomllib�[0m
 �[36;1mpython3 -c "�[0m
 �[36;1mimport tomllib, sys�[0m
 �[36;1mwith open('eclexiaiser.toml', 'rb') as f:�[0m
 �[36;1m    data = tomllib.load(f)�[0m
 �[36;1mproject = data.get('project', {})�[0m
 �[36;1mif not project.get('name', '').strip():�[0m
 �[36;1m    print('ERROR: project.name is required', file=sys.stderr)�[0m
 �[36;1m    sys.exit(1)�[0m
 �[36;1mfunctions = data.get('functions', [])�[0m
 �[36;1mif not functions:�[0m
 �[36;1m    print('ERROR: at least one [[functions]] entry is required', file=sys.stderr)�[0m
 �[36;1m    sys.exit(1)�[0m
 �[36;1mfor fn in functions:�[0m
 �[36;1m    if not fn.get('name', '').strip():�[0m
 �[36;1m        print('ERROR: function name cannot be empty', file=sys.stderr)�[0m
 �[36;1m        sys.exit(1)�[0m
 �[36;1m    if not fn.get('source', '').strip():�[0m
 �[36;1m        print(f'ERROR: function {fn[\"name\"]} has no source path', file=sys.stderr)�[0m
 �[36;1m        sys.exit(1)�[0m
 �[36;1mprint(f'Valid: {project[\"name\"]} ({len(functions)} function(s))')�[0m
 �[36;1m" || {�[0m
 �[36;1m  echo "::error file=eclexiaiser.toml::Invalid eclexiaiser.toml — see step output for details"�[0m

GitHub Actions: OpenSSF Compliance / openssf-compliance: fix(agentic): substitute the template self-name

Conclusion: failure

View job details

##[group]Run if [ ! -d ".machine_readable" ]; then
 �[36;1mif [ ! -d ".machine_readable" ]; then�[0m
 �[36;1m  echo "::error::.machine_readable/ directory is required"�[0m

GitHub Actions: Dogfood Gate / 2_Validate A2ML manifests.txt: fix(agentic): substitute the template self-name

Conclusion: failure

View job details

##[group]A2ML Manifest Validation
 Scanning . for .a2ml files...
 Found 141 .a2ml file(s)
   Validating: ./.github/0.1-AI-MANIFEST.a2ml
 ##[warning]Missing SPDX-License-Identifier in first 10 lines
   Validating: ./.machine_readable/0.1-AI-MANIFEST.a2ml
   Validating: ./.machine_readable/6a2/0-AI-MANIFEST.a2ml
 ##[warning]Missing SPDX-License-Identifier in first 10 lines
   Validating: ./.machine_readable/6a2/AGENTIC.a2ml
   Validating: ./.machine_readable/6a2/ECOSYSTEM.a2ml
   Validating: ./.machine_readable/6a2/META.a2ml
   Validating: ./.machine_readable/6a2/NEUROSYM.a2ml
   Validating: ./.machine_readable/6a2/PLAYBOOK.a2ml
   Validating: ./.machine_readable/6a2/STATE.a2ml
   Validating: ./.machine_readable/6a2/anchor/0-AI-MANIFEST.a2ml
 ##[warning]Missing SPDX-License-Identifier in first 10 lines
   Validating: ./.machine_readable/6a2/anchor/ANCHOR.a2ml
   Validating: ./.machine_readable/6a2/anchor/ANCHOR_2026_05_21.a2ml
 ##[warning]Missing SPDX-License-Identifier in first 10 lines
   Validating: ./.machine_readable/CLADE.a2ml
   Validating: ./.machine_readable/ENSAID_CONFIG.a2ml
   Validating: ./.machine_readable/ai/0.2-AI-MANIFEST.a2ml
   Validating: ./.machine_readable/ai/AI.a2ml
 ##[warning]Missing SPDX-License-Identifier in first 10 lines
   Validating: ./.machine_readable/anchors/0.2-AI-MANIFEST.a2ml
   Validating: ./.machine_readable/bot_directives/coverage.a2ml
   Validating: ./.machine_readable/bot_directives/debt.a2ml
   Validating: ./.machine_readable/bot_directives/methodology.a2ml
   Validating: ./.machine_readable/configs/0.2-AI-MANIFEST.a2ml
   Validating: ./.machine_readable/contractiles/Adjustfile.a2ml
   Validating: ./.machine_readable/contractiles/INDEX.a2ml
   Validating: ./.machine_readable/contractiles/Intentfile.a2ml
   Validating: ./.machine_readable/contractiles/Mustfile.a2ml
   Validating: ./.machine_readable/contractiles/Trustfile.a2ml
   Validating: ./.machine_readable/integrations/feedback-o-tron.a2ml
   Validating: ./.machine_rea...

GitHub Actions: Dogfood Gate / Validate A2ML manifests: fix(agentic): substitute the template self-name

Conclusion: failure

View job details

##[group]A2ML Manifest Validation
 Scanning . for .a2ml files...
 Found 141 .a2ml file(s)
   Validating: ./.github/0.1-AI-MANIFEST.a2ml
 ##[warning]Missing SPDX-License-Identifier in first 10 lines
   Validating: ./.machine_readable/0.1-AI-MANIFEST.a2ml
   Validating: ./.machine_readable/6a2/0-AI-MANIFEST.a2ml
 ##[warning]Missing SPDX-License-Identifier in first 10 lines
   Validating: ./.machine_readable/6a2/AGENTIC.a2ml
   Validating: ./.machine_readable/6a2/ECOSYSTEM.a2ml
   Validating: ./.machine_readable/6a2/META.a2ml
   Validating: ./.machine_readable/6a2/NEUROSYM.a2ml
   Validating: ./.machine_readable/6a2/PLAYBOOK.a2ml
   Validating: ./.machine_readable/6a2/STATE.a2ml
   Validating: ./.machine_readable/6a2/anchor/0-AI-MANIFEST.a2ml
 ##[warning]Missing SPDX-License-Identifier in first 10 lines
   Validating: ./.machine_readable/6a2/anchor/ANCHOR.a2ml
   Validating: ./.machine_readable/6a2/anchor/ANCHOR_2026_05_21.a2ml
 ##[warning]Missing SPDX-License-Identifier in first 10 lines
   Validating: ./.machine_readable/CLADE.a2ml
   Validating: ./.machine_readable/ENSAID_CONFIG.a2ml
   Validating: ./.machine_readable/ai/0.2-AI-MANIFEST.a2ml
   Validating: ./.machine_readable/ai/AI.a2ml
 ##[warning]Missing SPDX-License-Identifier in first 10 lines
   Validating: ./.machine_readable/anchors/0.2-AI-MANIFEST.a2ml
   Validating: ./.machine_readable/bot_directives/coverage.a2ml
   Validating: ./.machine_readable/bot_directives/debt.a2ml
   Validating: ./.machine_readable/bot_directives/methodology.a2ml
   Validating: ./.machine_readable/configs/0.2-AI-MANIFEST.a2ml
   Validating: ./.machine_readable/contractiles/Adjustfile.a2ml
   Validating: ./.machine_readable/contractiles/INDEX.a2ml
   Validating: ./.machine_readable/contractiles/Intentfile.a2ml
   Validating: ./.machine_readable/contractiles/Mustfile.a2ml
   Validating: ./.machine_readable/contractiles/Trustfile.a2ml
   Validating: ./.machine_readable/integrations/feedback-o-tron.a2ml
   Validating: ./.machine_rea...

GitHub Actions: Dogfood Gate / 3_Groove manifest check.txt: fix(agentic): substitute the template self-name

Conclusion: failure

View job details

##[group]Run # Check for static or dynamic Groove endpoints
 �[36;1m# Check for static or dynamic Groove endpoints�[0m
 �[36;1mHAS_MANIFEST="false"�[0m
 �[36;1mHAS_GROOVE_CODE="false"�[0m
 �[36;1m�[0m
 �[36;1mif [ -f ".well-known/groove/manifest.json" ]; then�[0m
 �[36;1m  HAS_MANIFEST="true"�[0m
 �[36;1m  # Validate the manifest JSON�[0m
 �[36;1m  if ! jq empty .well-known/groove/manifest.json 2>/dev/null; then�[0m
 �[36;1m    echo "::error file=.well-known/groove/manifest.json::Invalid JSON in Groove manifest"�[0m

GitHub Actions: Dogfood Gate / Groove manifest check: fix(agentic): substitute the template self-name

Conclusion: failure

View job details

##[group]Run # Check for static or dynamic Groove endpoints
 �[36;1m# Check for static or dynamic Groove endpoints�[0m
 �[36;1mHAS_MANIFEST="false"�[0m
 �[36;1mHAS_GROOVE_CODE="false"�[0m
 �[36;1m�[0m
 �[36;1mif [ -f ".well-known/groove/manifest.json" ]; then�[0m
 �[36;1m  HAS_MANIFEST="true"�[0m
 �[36;1m  # Validate the manifest JSON�[0m
 �[36;1m  if ! jq empty .well-known/groove/manifest.json 2>/dev/null; then�[0m
 �[36;1m    echo "::error file=.well-known/groove/manifest.json::Invalid JSON in Groove manifest"�[0m

GitHub Actions: Dogfood Gate / 5_Validate K9 contracts.txt: fix(agentic): substitute the template self-name

Conclusion: failure

View job details

##[group]K9 Configuration Validation
 Scanning . for K9 files (.k9, .k9.ncl)...
 Found 10 K9 file(s)
   Validating: ./.machine_readable/self-validating/examples/ci-config.k9.ncl
   Validating: ./.machine_readable/self-validating/examples/project-metadata.k9.ncl
   Validating: ./.machine_readable/self-validating/examples/setup-repo.k9.ncl
   Validating: ./.machine_readable/self-validating/methodology-guard.k9.ncl
 ##[error]Missing K9! magic number. First non-empty line must be exactly 'K9!'

GitHub Actions: Dogfood Gate / Validate K9 contracts: fix(agentic): substitute the template self-name

Conclusion: failure

View job details

##[group]K9 Configuration Validation
 Scanning . for K9 files (.k9, .k9.ncl)...
 Found 10 K9 file(s)
   Validating: ./.machine_readable/self-validating/examples/ci-config.k9.ncl
   Validating: ./.machine_readable/self-validating/examples/project-metadata.k9.ncl
   Validating: ./.machine_readable/self-validating/examples/setup-repo.k9.ncl
   Validating: ./.machine_readable/self-validating/methodology-guard.k9.ncl
 ##[error]Missing K9! magic number. First non-empty line must be exactly 'K9!'
🔇 Additional comments (1)
.machine_readable/6a2/AGENTIC.a2ml (1)

2-2: LGTM!

Also applies to: 8-8


📝 Walkthrough

Summary by CodeRabbit

  • Documentation
    • Updated the project identification and descriptive header to reflect the new project name.

Walkthrough

The AGENTIC configuration now identifies the project as proof-burrower instead of rsr-template-repo. The configuration version remains 1.0.0.

Changes

Project identity configuration

Layer / File(s) Summary
Update AGENTIC project identity
.machine_readable/6a2/AGENTIC.a2ml
The file description and agentic-config.project value now use proof-burrower. The configuration version remains 1.0.0.

Estimated code review effort: 1 (Trivial) | ~2 minutes

Merge Risk: ⚪ Minimal · up to bb682

This localized change corrects the repository self-name in one agent guidance file without changing runtime behavior; no actionable merge-blocking risk remains after normal checks and review.

Poem

A rabbit checks the project name,

proof-burrower now marks the frame.
The version stays at one point oh,
No other settings change or flow.
Hop, hop, the config is clear!

🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Description check ⚠️ Warning The description explains the change, scope, rationale, and related issue. It omits the required Changes section, RSR Quality Checklist, and Testing section from the repository template. Add the required template sections. List the key changes, complete the RSR Quality Checklist with applicable items checked, and describe the tests performed. State when screenshots are not applicable.
✅ Passed checks (4 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly and concisely describes the main change: replacing the template self-name in the AGENTIC configuration.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check. Docstring coverage is scoped to functions touched by this diff. Analyzed 0 functions across 0…
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
Full details: Docstring Coverage

Explanation

No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check. Docstring coverage is scoped to functions touched by this diff. Analyzed 0 functions across 0 files. (1 skipped: 1 unsupported.)

  • Fix all pre-merge checks with AI
✨ Finishing Touches 💡 1
🛠️ Fix failing CI checks 💡
  • Create stacked PR
  • Commit on current branch

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@gitar-bot

gitar-bot Bot commented Aug 26, 2026

Copy link
Copy Markdown

Important

You are using the Gitar free plan. Upgrade to unlock code review, CI analysis, auto-apply, custom automations, and more.

Gitar

@codacy-production

Copy link
Copy Markdown

Up to standards ✅

🟢 Issues 0 issues

Results:
0 new issues

View in Codacy

AI Reviewer: first review requested successfully. AI can make mistakes. Always validate suggestions.

Run reviewer

TIP This summary will be updated as you push new changes.

@codacy-production codacy-production Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

The pull request is 'Up to Standards' and aligns with the expected configuration updates. No security flaws, major logic bugs, or quality issues were identified that should prevent merging.

While the manual replacement of placeholders fulfills the immediate requirement, the change lacks automated enforcement. The existing validation script, scripts/check-no-placeholders.sh, was not updated to reflect these changes, which leaves a minor gap for potential regressions in future project derivations.

About this PR

  • The change is implemented as a manual fix without updating the scripts/check-no-placeholders.sh script or adding automated validation. This omission makes the repository susceptible to future regressions where template strings could be re-introduced or configuration keys misconfigured without detection.

Test suggestions

  • Verify that AGENTIC.a2ml contains the correct project name in the header and configuration fields.
Prompt proposal for missing tests
Consider implementing these tests if applicable:
1. Verify that AGENTIC.a2ml contains the correct project name in the header and configuration fields.

TIP Improve review quality by adding custom instructions
TIP How was this review? Give us feedback

@hyperpolymath
hyperpolymath merged commit 9343e19 into main Aug 27, 2026
39 of 43 checks passed
@hyperpolymath
hyperpolymath deleted the fix/agentic-self-name-leak branch August 27, 2026 00:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant