For the sake of example, assume I have agentuity version 1.0.0 installed.
If a new release comes out, version 1.0.1 and I run agentuity upgrade, the CLI will force-upgrade the @agentuity/* packages in package.json (by switching latest to 1.0.1, running bun i, and then switching back to latest).
If I go into another project which is using latest in package.json but has version 1.0.0 in node_modules, running agentuity upgrade does nothing. In my opinion, it should do the force-upgrade by switching latest to 1.0.1 and running bun i.
For the sake of example, assume I have
agentuityversion1.0.0installed.If a new release comes out, version
1.0.1and I runagentuity upgrade, the CLI will force-upgrade the@agentuity/*packages inpackage.json(by switchinglatestto1.0.1, runningbun i, and then switching back tolatest).If I go into another project which is using
latestinpackage.jsonbut has version1.0.0innode_modules, runningagentuity upgradedoes nothing. In my opinion, it should do the force-upgrade by switchinglatestto1.0.1and runningbun i.