trident-tui 0.9.6 → 0.9.8

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/bin/cli.js CHANGED
@@ -166,11 +166,12 @@ function main() {
166
166
  if (workingTridentVersion() !== wheelVer) {
167
167
  log('Installing the `trident` command (one-time)…');
168
168
  // Clear any previous (possibly broken or locked) install first, so a Windows
169
- // file lock on the old Scripts dir can't fail the --force reinstall. Both
170
- // the legacy `trident-agent` and the current `trident-agent` tool names are
171
- // cleared. Errors are ignored the wheel fallback covers us regardless.
172
- spawnSync(uv, ['tool', 'uninstall', 'trident-agent'], { stdio: 'ignore' });
169
+ // file lock on the old Scripts dir can't fail the --force reinstall. Both the
170
+ // current `trident-agent` and the legacy `strix-agent` tool names are cleared
171
+ // (the legacy one also removes the old `strix` global command). Errors are
172
+ // ignored the wheel fallback covers us regardless.
173
173
  spawnSync(uv, ['tool', 'uninstall', 'trident-agent'], { stdio: 'ignore' });
174
+ spawnSync(uv, ['tool', 'uninstall', 'strix-agent'], { stdio: 'ignore' });
174
175
  const inst = spawnSync(uv, ['tool', 'install', '--force', wheel], { stdio: 'inherit' });
175
176
  if (inst.status === 0) {
176
177
  spawnSync(uv, ['tool', 'update-shell'], { stdio: 'ignore' });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trident-tui",
3
- "version": "0.9.6",
3
+ "version": "0.9.8",
4
4
  "description": "Trident — AI penetration-testing agent. Run it with `npx trident-tui`; it bootstraps everything and prompts for your API key.",
5
5
  "bin": {
6
6
  "trident-tui": "bin/cli.js"