# GoyaAiProject **Repository Path**: goyado/GoyaAiProject ## Basic Information - **Project Name**: GoyaAiProject - **Description**: AI Enterprise Scaffold Base - **Primary Language**: Shell - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-02-12 - **Last Updated**: 2026-02-12 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # AI Enterprise Scaffold Base This repository is a language-agnostic, framework-agnostic scaffold for enterprise projects built with AI-assisted development. ## Baseline Governance - Git model: Trunk-Based - PR review: minimum 1 non-author approval - Changed-lines coverage: >= 80% - Merge strategy: Squash - Release cadence: On-demand - Environments: dev/staging/prod - AI mode: strict blocking ## Repository Layout ```text . ├── AGENTS.md ├── CLAUDE.md ├── README.md ├── .github/ │ ├── CODEOWNERS │ ├── pull_request_template.md │ └── workflows/ ├── .githooks/ ├── docs/ │ ├── README.md │ ├── governance/ │ ├── process/ │ ├── project/ │ ├── references/ │ ├── specs/ │ ├── standards/ │ └── templates/ ├── scripts/ │ ├── ci/ │ ├── quality/ │ ├── release/ │ └── workflow/ ├── .claude/ ├── .cursor/ ├── .cline/ └── .clinerules/ ``` ## Operating Sequence 1. Run pre-development flow: `bash scripts/workflow/pre-dev.sh` 2. Implement change with small scope. 3. Run post-development flow: `bash scripts/workflow/post-dev.sh` 4. Commit with gate: `bash scripts/workflow/git-commit.sh "feat(scope): summary"` 5. Open PR and pass CI gates. 6. Release with workflow dispatch (`release-gate`) when needed. ## Required Documents Per Change 1. `docs/project/development-progress.md` 2. `docs/project/change-log.md` ## CI/PR Controls 1. PR template enforcement. 2. CODEOWNERS review routing. 3. CI gates for policy, changed-lines coverage, and security scans. 4. On-demand release gate workflow. ## Optional Hook Setup ```bash git config core.hooksPath .githooks ```