We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 856d725 commit 5efbcd3Copy full SHA for 5efbcd3
1 file changed
src/cli/claude-sm.ts
@@ -248,13 +248,15 @@ class ClaudeSM {
248
249
private startGEPAWatcher(): void {
250
// Find CLAUDE.md and AGENT.md in current directory or project root
251
- const watchFiles = ['CLAUDE.md', 'AGENT.md']
+ const watchFiles = ['CLAUDE.md', 'AGENT.md', 'AGENTS.md']
252
.map((f) => path.join(process.cwd(), f))
253
.filter((p) => fs.existsSync(p));
254
255
if (watchFiles.length === 0) {
256
console.log(
257
- chalk.gray(' Prompt Forge: disabled (no CLAUDE.md or AGENT.md found)')
+ chalk.gray(
258
+ ' Prompt Forge: disabled (no CLAUDE.md, AGENT.md, or AGENTS.md found)'
259
+ )
260
);
261
return;
262
}
0 commit comments