@songsid/agend 0.0.16-beta.4 → 0.0.16-beta.5

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.
@@ -60,13 +60,13 @@ export class AntigravityBackend {
60
60
  mkdirSync(agentsDir, { recursive: true });
61
61
  // Write AGENTS.md instructions in .agents/ directory
62
62
  if (config.instructions) {
63
- const agentsPath = join(agentsDir, "AGENTS.md");
63
+ const agentsPath = join(agentsDir, "agents.md");
64
64
  appendWithMarker(agentsPath, config.instanceName, config.instructions);
65
65
  }
66
66
  }
67
67
  cleanup(config) {
68
68
  const agentsDir = join(config.workingDirectory, ".agents");
69
- const agentsPath = join(agentsDir, "AGENTS.md");
69
+ const agentsPath = join(agentsDir, "agents.md");
70
70
  if (existsSync(agentsPath)) {
71
71
  removeMarker(agentsPath, config.instanceName);
72
72
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@songsid/agend",
3
- "version": "0.0.16-beta.4",
3
+ "version": "0.0.16-beta.5",
4
4
  "description": "Multi-agent fleet daemon — run any coding CLI (Claude, Gemini, Codex, OpenCode) from Telegram",
5
5
  "type": "module",
6
6
  "workspaces": ["plugins/*"],