chore: add AGENTS.md + copilot-instructions.md#274
Merged
Conversation
Agent-Logs-Url: https://github.com/jet/propulsion/sessions/f0c5210a-af06-4620-924b-6777f1055827 Co-authored-by: bartelink <206668+bartelink@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
bartelink
May 5, 2026 22:43
View session
|
|
bartelink
marked this pull request as ready for review
May 5, 2026 22:47
There was a problem hiding this comment.
Pull request overview
This PR prepares the repository for AI-assisted workflows by adding agent-facing guidance documents and removing an obsolete Gitpod configuration. It fits the codebase by documenting how to build, test, and navigate this F#/.NET solution.
Changes:
- Add a root
AGENTS.mdwith repo layout, build/test commands, and style guidance. - Add
.github/copilot-instructions.mdwith minimal Copilot-specific build/test and convention notes. - Remove the stale
.gitpod.ymlconfiguration.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
AGENTS.md |
Adds a root-level guide for agents covering repo structure, commands, and coding conventions. |
.gitpod.yml |
Removes the deprecated Gitpod config that no longer has supporting files in the repo. |
.github/copilot-instructions.md |
Adds minimal Copilot instructions for building, testing, and following repo conventions. |
Comment on lines
+23
to
+27
| # Test (requires a local Postgres instance for MessageDb tests) | ||
| dotnet test Propulsion.sln --no-restore --verbosity minimal | ||
| ``` | ||
|
|
||
| The CI workflow (`.github/workflows/ci.yaml`) spins up Postgres and installs `message-db` automatically; for local runs without Postgres the MessageDb-related tests will be skipped or fail. |
Comment on lines
+6
to
+10
|
|
||
| ```bash | ||
| dotnet build Propulsion.sln --configuration Release | ||
| dotnet test Propulsion.sln --no-restore --verbosity minimal | ||
| ``` |
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.
Prepares the repo for AI agent workflows and removes stale Gitpod configuration.
Changes
AGENTS.md— new root-level guide for agents: repo layout, build/test commands, F# style notes, pointer to Copilot instructions.github/copilot-instructions.md— minimal Copilot custom instructions (build commands, key conventions).gitpod.yml— deleted; no associated Dockerfile/scripts existed, and no Gitpod badge was present in the README