@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, "
|
|
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, "
|
|
69
|
+
const agentsPath = join(agentsDir, "agents.md");
|
|
70
70
|
if (existsSync(agentsPath)) {
|
|
71
71
|
removeMarker(agentsPath, config.instanceName);
|
|
72
72
|
}
|
package/package.json
CHANGED