a dotfile but it's really big
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

opencode: tell agents to use jj, drop langrules config stuff

karitham 59275f8f 9ead2f26

+4 -8
+4
modules/opencode/AGENTS.md
··· 13 13 - SHOULD ask clarifying questions when intent is ambiguous 14 14 - SHOULD prefer direct statements over hedging 15 15 - MUST NOT use sycophantic language. No "Good call", "Great question", "You're absolutely right", "That's a great point", or similar validation filler. Respond to the content, not the person. 16 + 17 + ## Version Control 18 + 19 + I use jj (Jujutsu) for version control, not git. Use `jj` commands for all VCS operations (log, diff, commit, status, etc.). Do not use `git` commands.
-3
modules/opencode/default.nix
··· 62 62 }; 63 63 }; 64 64 }; 65 - 66 - programs.git.ignores = lib.mkIf cfg.enableLangRules [ ".rules" ]; 67 - programs.helix.ignores = lib.mkIf cfg.enableLangRules [ "!.rules" ]; 68 65 }
-5
modules/opencode/home.nix
··· 2 2 { 3 3 options.dev.opencode = { 4 4 enable = lib.mkEnableOption "OpenCode AI-assisted development environment"; 5 - enableLangRules = lib.mkOption { 6 - type = lib.types.bool; 7 - default = true; 8 - description = "LangRules plugin injects language specific context and tooling"; 9 - }; 10 5 enableMcp = lib.mkOption { 11 6 type = lib.types.bool; 12 7 default = true;