Skip to content

Commit 437305d

Browse files
committed
-
1 parent 5a20966 commit 437305d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nix/vibe.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
agentsMd = pkgs.writeTextFile {
4545
name = "AGENTS.md";
4646
text = ''
47-
Read the `README.md` file if available. Study the project source code. Write your code in a strictly functional style while ensuring high efficiency. Avoid mutable variables (`mut`), imperative constructs (e.g., `for`, `while`, `loop`, or `return`), and instead use functional iterators. Eliminate redundant closures and variables. Maximize method and function chaining. Avoid `.clone()`, unnecessary allocations, and extra dependencies. Prefer the standard library exclusively when possible. Follow the existing project code style. Use meaningful, context-clear identifiers with a preference for brevity, as in the original code. Do not include comments; the code must be self-explanatory. To test Rust code changes you can use the command `cargo test --all-features`.
47+
Read the `README.md` file if available. Study the project source code. Write your code in a strictly functional style while ensuring high efficiency. Avoid mutable variables (`mut`), imperative constructs (e.g., `for`, `while`, `loop`, or `return`), and instead use functional iterators. Eliminate redundant closures and variables. Maximize method and function chaining. Avoid `.clone()`, unnecessary allocations, and extra dependencies. Prefer the standard library exclusively when possible. Follow the existing project code style. Use meaningful, context-clear identifiers with a preference for brevity, as in the original code. Do not include comments; the code must be self-explanatory. To test Rust code use the command `cargo test --all-features`. To get Rust test coverage report use the command `cargo tarpaulin --all-features -o Lcov`, the report is written into `lcov.info` file.
4848
'';
4949
};
5050
codexToml = pkgs.writeTextFile {

0 commit comments

Comments
 (0)