coder-config 0.51.2-beta → 0.52.1-beta

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -19,7 +19,7 @@
19
19
 
20
20
  <!-- PWA Manifest -->
21
21
  <link rel="manifest" href="/manifest.json">
22
- <script type="module" crossorigin src="/assets/index-CZhSoM0H.js"></script>
22
+ <script type="module" crossorigin src="/assets/index-Bv7rsTjf.js"></script>
23
23
  <link rel="stylesheet" crossorigin href="/assets/index-BiF3i3y5.css">
24
24
  </head>
25
25
  <body>
@@ -86,6 +86,30 @@ function scanFolderForExplorer(dir, manager, label = null) {
86
86
  });
87
87
  }
88
88
 
89
+ // Root AGENTS.md (Codex CLI instruction file)
90
+ const rootAgentsMd = path.join(dir, 'AGENTS.md');
91
+ if (fs.existsSync(rootAgentsMd)) {
92
+ folder.files.push({
93
+ name: 'AGENTS.md (root)',
94
+ path: rootAgentsMd,
95
+ type: 'agentsmd',
96
+ size: fs.statSync(rootAgentsMd).size,
97
+ isRoot: true
98
+ });
99
+ }
100
+
101
+ // Root AGENTS.override.md (Codex CLI local override, typically gitignored)
102
+ const rootAgentsOverrideMd = path.join(dir, 'AGENTS.override.md');
103
+ if (fs.existsSync(rootAgentsOverrideMd)) {
104
+ folder.files.push({
105
+ name: 'AGENTS.override.md (root)',
106
+ path: rootAgentsOverrideMd,
107
+ type: 'agentsmd',
108
+ size: fs.statSync(rootAgentsOverrideMd).size,
109
+ isRoot: true
110
+ });
111
+ }
112
+
89
113
  // Global MCPs (~/.claude.json) - only for home directory
90
114
  if (dir === home) {
91
115
  const claudeJsonPath = path.join(home, '.claude.json');
@@ -150,6 +174,9 @@ function scanClaudeFolder(folder, claudeDir, manager) {
150
174
  // skills folder
151
175
  addSkillsFolder(folder.files, claudeDir);
152
176
 
177
+ // agents folder (.claude/agents/*.md)
178
+ addSubfolder(folder.files, claudeDir, 'agents', '.md', 'agentsmd');
179
+
153
180
  // .env file
154
181
  const envPath = path.join(claudeDir, '.env');
155
182
  if (fs.existsSync(envPath)) {
@@ -425,6 +452,10 @@ function createClaudeFile(body) {
425
452
  case 'claudemd':
426
453
  filePath = path.join(dir, '.claude', 'CLAUDE.md');
427
454
  break;
455
+ case 'agentsmd':
456
+ filePath = path.join(dir, 'AGENTS.md');
457
+ initialContent = content || '# Project Instructions\n\nInstructions for Codex CLI.\n';
458
+ break;
428
459
  default:
429
460
  filePath = path.join(dir, '.claude', name);
430
461
  }