@tiny-fish/cli 0.45.2-next.357 → 0.45.2-next.358

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.
@@ -28,6 +28,8 @@ const HARNESS_FINGERPRINTS = [
28
28
  { name: 'hermes', matches: (env) => hasVarWithPrefix(env, 'HERMES_') },
29
29
  // COMMANDCODE_SCRATCHPAD lands on every child; a disabled scratchpad leaves no marker.
30
30
  { name: 'command-code', matches: (env) => hasVarWithPrefix(env, 'COMMANDCODE_') },
31
+ // Kilo forks opencode and sets OPENCODE=1 too, so it must precede opencode.
32
+ { name: 'kilo', matches: (env) => env['KILO'] === '1' },
31
33
  // Exact key, not a prefix: opencode writes OPENCODE=1 at startup, reads every OPENCODE_* as config.
32
34
  { name: 'opencode', matches: (env) => Boolean(env['OPENCODE']) },
33
35
  // Observed: pi launched from Claude Code inherits CLAUDECODE=1.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tiny-fish/cli",
3
- "version": "0.45.2-next.357",
3
+ "version": "0.45.2-next.358",
4
4
  "description": "TinyFish CLI — run web automations from your terminal",
5
5
  "type": "module",
6
6
  "bin": {