You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# AGENTS.md — agent instructions and operational contract
2
+
3
+
This file is written for automated coding agents (for example: Copilot coding agents). It exists to provide a concise operational contract and guardrails for agents working in this repository. It is not the canonical source for design or style rules. Those live in the developer documentation linked below.
4
+
5
+
## Organization-wide guidelines (required)
6
+
7
+
- Follow the prioritized shared instructions in [hoverkraft-tech/.github/AGENTS.md](https://github.com/hoverkraft-tech/.github/blob/main/AGENTS.md) before working in this repository.
8
+
9
+
## Quick Start
10
+
11
+
This project contains **opinionated GitHub Actions and reusable workflows** to standardize OCI image build, publication, and Helm chart promotion pipelines. For comprehensive documentation, see the main [README.md](README.md).
12
+
13
+
### Key Sections to Reference
14
+
15
+
-**[Overview](README.md#overview)** – Project purpose and scope
16
+
-**[Actions](README.md#actions)** – Catalog of container-focused actions grouped by category
17
+
-**[Reusable Workflows](README.md#reusable-workflows)** – Orchestration playbooks for common CI tasks
18
+
-**[Contributing](README.md#contributing)** – Contribution guidelines, action structure patterns, and development standards
19
+
-**[Development Workflow](README.md#development-workflow)** – Commands for linting, testing, and local development
20
+
21
+
## Agent-Specific Development Patterns
22
+
23
+
### Critical Workflow Knowledge
24
+
25
+
```bash
26
+
# Essential commands for development
27
+
make lint # Run the dockerized Super Linter
28
+
make lint-fix # Attempt auto-fixes for lint findings
29
+
make test-build-application # Build and push the sample test application image
30
+
make test-ct-install # Validate Helm charts via chart-testing
31
+
```
32
+
33
+
For detailed documentation on each action and workflow, refer to the individual readme files linked in the main [README.md](README.md).
Copy file name to clipboardExpand all lines: README.md
+78-5Lines changed: 78 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,14 +10,18 @@
10
10
11
11
</div>
12
12
13
-
Opinionated GitHub Actions and workflows for continuous integration in container (OCI) context
14
-
15
13
---
16
14
15
+
## Overview
16
+
17
+
Opinionated GitHub Actions and reusable workflows to build, test, sign, and distribute container images and Helm charts. The goal is to offer a consistent supply-chain friendly pipeline for OCI assets managed within GitHub Actions.
18
+
17
19
## Actions
18
20
19
21
### Docker
20
22
23
+
_Actions that operate on OCI images across their build, metadata, and lifecycle management phases._
0 commit comments