Organization-wide configuration for Project Bluefin.
Organization-wide instructions for coding agents working across all Project Bluefin repositories. This file provides:
- Organization overview and principles
- Development standards and commit conventions
- AI attribution requirements
- Common build tools and patterns
- Links to repository-specific instructions
All repositories should create their own AGENTS.md for repo-specific details while inheriting from this org-wide configuration.
This repository contains the shared Renovate configuration for all Project Bluefin repositories.
org-inherited-config.json- Organization-wide Renovate settings inherited by all reposrenovate-config.json- Renovate bot configuration for autodiscovery (inherits from ublue-os/renovate-config)renovate.json- This repo's own Renovate config
- Best practices preset - Uses Renovate's recommended configuration
- Semantic commits - Ensures all PRs use conventional commit format
- Custom managers - Supports custom image version files in YAML format
- Autodiscovery - Automatically enables Renovate for all org repositories
- Inherits from ublue-os - Uses ublue-os/renovate-config as the base configuration
Repositories can inherit the org configuration by adding this to their .github/renovate.json5:
{
"extends": ["github>projectbluefin/.github:org-inherited-config"]
}Or inherit directly from ublue-os:
{
"extends": ["github>ublue-os/renovate-config:org-inherited-config"]
}Or simply rely on autodiscovery if they don't need custom overrides.