fix(rules-injector): respect claude_code config for user rule loading

When claude_code integration is disabled in oh-my-opencode.json, the
rules-injector now skips loading rules from ~/.claude/rules/ to prevent
Claude Code-specific instructions from leaking into non-Claude agents
(e.g., GPT-5.4 Sisyphus), which causes agent hallucination.

Also adds ~/.sisyphus/rules/ and ~/.opencode/rules/ as OpenCode-native
user rule directories that are always searched regardless of config.

Fixes #2920

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Tran Quang
2026-03-29 10:13:55 +07:00
parent 9fc56ab544
commit a1a2bb4b07
6 changed files with 52 additions and 18 deletions
+4 -2
View File
@@ -2,6 +2,7 @@ import { readFileSync, statSync } from "node:fs";
import { homedir } from "node:os";
import { relative, resolve } from "node:path";
import { findProjectRoot, findRuleFiles } from "./finder";
import type { FindRuleFilesOptions } from "./rule-file-finder";
import {
createContentHash,
isDuplicateByContentHash,
@@ -82,6 +83,7 @@ export function createRuleInjectionProcessor(deps: {
workspaceDirectory: string;
truncator: DynamicTruncator;
getSessionCache: (sessionID: string) => SessionInjectedRulesCache;
ruleFinderOptions?: FindRuleFilesOptions;
}): {
processFilePathForInjection: (
filePath: string,
@@ -89,7 +91,7 @@ export function createRuleInjectionProcessor(deps: {
output: ToolExecuteOutput
) => Promise<void>;
} {
const { workspaceDirectory, truncator, getSessionCache } = deps;
const { workspaceDirectory, truncator, getSessionCache, ruleFinderOptions } = deps;
async function processFilePathForInjection(
filePath: string,
@@ -103,7 +105,7 @@ export function createRuleInjectionProcessor(deps: {
const cache = getSessionCache(sessionID);
const home = homedir();
const ruleFileCandidates = findRuleFiles(projectRoot, home, resolved);
const ruleFileCandidates = findRuleFiles(projectRoot, home, resolved, ruleFinderOptions);
const toInject: RuleToInject[] = [];
let dirty = false;