agent-factorio 0.3.3 → 0.3.4

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.
package/commands/push.mjs CHANGED
@@ -39,8 +39,13 @@ export async function pushCommand() {
39
39
  console.log();
40
40
 
41
41
  // 3. Agent name, vendor, model
42
- const defaultName = localConfig?.agentName || path.basename(projectRoot);
43
- const agentName = await ask("Agent name", defaultName);
42
+ let agentName;
43
+ if (localConfig?.agentName) {
44
+ agentName = localConfig.agentName;
45
+ label("Agent", `${agentName} (saved)`);
46
+ } else {
47
+ agentName = await ask("Agent name", path.basename(projectRoot));
48
+ }
44
49
 
45
50
  const vendorOptions = ["anthropic", "openai", "google"];
46
51
  let vendor;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-factorio",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
4
4
  "description": "CLI for AgentFactorio — AI Agent Fleet Management hub",
5
5
  "type": "module",
6
6
  "bin": {