feat: repository integrity and end-to-end baseline (A–F) - #5
Merged
AcingTime420 merged 2 commits intoJul 30, 2026
Merged
Conversation
A) Repository hygiene: - Add root .gitignore covering bin/, obj/, out/, dist/, TestResults/, coverage/, node_modules/, .next/, .idea/ caches, *.iml, .env, etc. B) Clean-clone reproducibility: - Add scripts/validate-premerge.sh (Linux/macOS, 5-step validator) - Add scripts/validate-premerge.ps1 (Windows/PowerShell variant) - Fix pre-existing Kotlin build error: remove duplicate stub objects from GuardianService.kt (MalwareScanner, AnomalyDetector, NetworkThreatMonitor clash with actual threat/ implementations) - Fix Makefile duplicate AcingVaultEmulator.kt source entry C) CI workflows: - Add .github/workflows/ci.yml (clean-clone validation + Kotlin build) - Add .github/workflows/repo-integrity.yml (no tracked artifacts check) E) Governance + ADR scaffolding: - ARCHITECTURE.md, CONTRIBUTING.md, SECURITY.md, SUPPORT.md - RELEASE_PROCESS.md, DEPRECATION_POLICY.md, THREAT_MODEL.md - DATA_CLASSIFICATION.md, PRIVACY.md - docs/adr/README.md, docs/adr/ADR-001-canonical-repo-structure.md F) Evidence report: - docs/evidence/repository-integrity-baseline.md README: add root README with baseline validation instructions
Copilot
AI
changed the title
[WIP] Implement repository integrity and end-to-end baseline remediation
feat: repository integrity and end-to-end baseline (A–F)
Jul 30, 2026
AcingTime420
marked this pull request as ready for review
July 30, 2026 17:57
15 tasks
Copilot AI
added a commit
that referenced
this pull request
Aug 8, 2026
…nflicts) Resolves all merge conflicts between feature/genesis-irp-v1.3.1-import-clean and master (post PR #5 repository integrity baseline). Conflict resolutions: - .github/workflows/ci.yml: combined master integrity checks + feature branch .NET/Node.js/Docker pipeline jobs into a single unified workflow - .gitignore: merged both ignore rule sets, keeping master's structured layout and adding Android/Gradle patterns from the feature branch - README.md: kept master's Acing IU Genesis documentation (discarded AI Studio boilerplate inadvertently included in the feature branch) - scripts/validate-premerge.sh: kept master's comprehensive validation script - scripts/validate-premerge.ps1: kept master's PowerShell validation wrapper Co-authored-by: AcingTime420 <271400013+AcingTime420@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Converts the repo from an ad-hoc collection of sources into a controlled, reproducible product baseline. Addresses repository hygiene, CI enforcement, clean-clone validation, and governance scaffolding.
Repository hygiene
.gitignoreadded — coversbin/,obj/,out/,dist/,TestResults/,coverage/,node_modules/,.next/,*.pdb/.suo/.user,.env/.env.*(!.env.example),.idea/volatile files,*.imlBuild fix (pre-existing break)
GuardianService.ktdefined stubs forMalwareScanner,AnomalyDetector,NetworkThreatMonitorthat shadowed the actualthreat/*.ktimplementations → Kotlin compilation failed with redeclaration errorsAcingVaultEmulator.kttwice inKOTLIN_SRCSClean-clone validation
scripts/validate-premerge.sh— 5-step validator: tracked-artifact check → env setup → Kotlin/Make build → Docker Compose (conditional) → health checks (conditional skip with reason)scripts/validate-premerge.ps1— Windows/PowerShell equivalentCI
.github/workflows/ci.yml— installs Kotlin, runsvalidate-premerge.sh, uploads logs on failure.github/workflows/repo-integrity.yml— dedicated job; blocks merge if any ofbin/obj/out/dist/TestResults/coverage/node_modules/.nextare trackedGovernance
11 documents created, all using explicit
✅ Implemented / 🧪 Experimental / 📋 Plannedstatus labels — no unimplemented capabilities claimed as implemented:ARCHITECTURE.md,CONTRIBUTING.md,SECURITY.md,SUPPORT.md,RELEASE_PROCESS.md,DEPRECATION_POLICY.md,THREAT_MODEL.md,DATA_CLASSIFICATION.md,PRIVACY.md,docs/adr/README.md,docs/adr/ADR-001-canonical-repo-structure.mdEvidence + README
docs/evidence/repository-integrity-baseline.md— full change inventory, check results, known gaps, intentionally deferred itemsREADME.mdcreated with feature-status table, prerequisites, quick-start, and validation instructionsIntentionally deferred
validate-premerge.shCompose step is conditional and activates automatically oncedocker-compose.ymllands.idea/and pre-existing*.imltracked files — follow-upgit rm --cachedneeded (.gitignorenow blocks new additions)