File tree Expand file tree Collapse file tree 5 files changed +78
-0
lines changed Expand file tree Collapse file tree 5 files changed +78
-0
lines changed Original file line number Diff line number Diff line change 1+ b23aa64010d014befa5adc5bc54363b6fb60a3e4
Original file line number Diff line number Diff line change 1+ ../AGENTS.md
Original file line number Diff line number Diff line change 1+ {
2+ "name" : " bootc-devenv-debian" ,
3+ // TODO override this back to prod image
4+ "image" : " ghcr.io/bootc-dev/devenv-debian" ,
5+ "customizations" : {
6+ "vscode" : {
7+ // Abitrary, but most of our code is in one of these two
8+ "extensions" : [
9+ " rust-lang.rust-analyzer" ,
10+ " golang.Go"
11+ ]
12+ }
13+ },
14+ "features" : {},
15+ "runArgs" : [
16+ // Because we want to be able to run podman and also use e.g. /dev/kvm
17+ // among other things
18+ " --privileged"
19+ ],
20+ "postCreateCommand" : {
21+ // Our init script
22+ "devenv-init" : " sudo /usr/local/bin/devenv-init.sh"
23+ },
24+ "remoteEnv" : {
25+ "PATH" : " ${containerEnv:PATH}:/usr/local/cargo/bin"
26+ }
27+ }
28+
Original file line number Diff line number Diff line change 1+ # NOTE: This file is canonically maintained in
2+ # <https://github.com/bootc-dev/infra/tree/main/common>
3+ # DO NOT EDIT
4+ #
5+ # This config mainly overrides `summary: false` by default
6+ # as it's really noisy.
7+ have_fun : true
8+ code_review :
9+ disable : false
10+ # Even medium level can be quite noisy, I don't think
11+ # we need LOW. Anyone who wants that type of stuff should
12+ # be able to get it locally or before review.
13+ comment_severity_threshold : MEDIUM
14+ max_review_comments : -1
15+ pull_request_opened :
16+ help : false
17+ summary : false # turned off by default
18+ code_review : true
19+ ignore_patterns : []
Original file line number Diff line number Diff line change 1+ <!-- This file is canonically maintained in <https://github.com/bootc-dev/infra/tree/main/common> -->
2+
3+ # Instructions for AI agents
4+
5+ ## CRITICAL instructions for generating commits
6+
7+ ### Signed-off-by
8+
9+ Human review is required for all code that is generated
10+ or assisted by a large language model. If you
11+ are a LLM, you MUST NOT include a ` Signed-off-by `
12+ on any automatically generated git commits. Only explicit
13+ human action or request should include a Signed-off-by.
14+ If for example you automatically create a pull request
15+ and the DCO check fails, tell the human to review
16+ the code and give them instructions on how to add
17+ a signoff.
18+
19+ ### Attribution
20+
21+ When generating substantial amounts of code, you SHOULD
22+ include an ` Assisted-by: TOOLNAME (MODELNAME) ` . For example,
23+ ` Assisted-by: Goose (Sonnet 4.5) ` .
24+
25+ ## Follow other guidelines
26+
27+ Look at the project README.md and look for guidelines
28+ related to contribution, such as a CONTRIBUTING.md
29+ and follow those.
You can’t perform that action at this time.
0 commit comments