@humain/terminal 0.1.0 → 0.1.1

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.
Files changed (34) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/dist/bundle/chunks/{chunk-RM336IEI.js → chunk-LYAMSPR2.js} +18 -18
  3. package/dist/bundle/cli.js +1 -1
  4. package/dist/bundle/index.js +1 -1
  5. package/dist/bundle/rpc-entry.js +1 -1
  6. package/dist/cli.js +1 -5
  7. package/dist/core/agent-session.js +2 -2
  8. package/dist/core/agent-session.js.map +1 -1
  9. package/dist/humain/index.d.ts.map +1 -1
  10. package/dist/humain/index.js +2 -0
  11. package/dist/humain/index.js.map +1 -1
  12. package/dist/humain/node-http.d.ts +3 -0
  13. package/dist/humain/node-http.d.ts.map +1 -0
  14. package/dist/humain/node-http.js +119 -0
  15. package/dist/humain/node-http.js.map +1 -0
  16. package/dist/humain/node-provider.d.ts +4 -0
  17. package/dist/humain/node-provider.d.ts.map +1 -0
  18. package/dist/humain/node-provider.js +359 -0
  19. package/dist/humain/node-provider.js.map +1 -0
  20. package/dist/index.js +1 -51
  21. package/dist/main.d.ts.map +1 -1
  22. package/dist/main.js +16 -0
  23. package/dist/main.js.map +1 -1
  24. package/dist/modes/interactive/components/login-dialog.d.ts +7 -2
  25. package/dist/modes/interactive/components/login-dialog.d.ts.map +1 -1
  26. package/dist/modes/interactive/components/login-dialog.js +46 -21
  27. package/dist/modes/interactive/components/login-dialog.js.map +1 -1
  28. package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
  29. package/dist/modes/interactive/interactive-mode.js +10 -13
  30. package/dist/modes/interactive/interactive-mode.js.map +1 -1
  31. package/docs/humain-terminal.md +6 -0
  32. package/docs/providers.md +19 -1
  33. package/npm-shrinkwrap.json +2 -2
  34. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.1.1] - 2026-09-08
4
+
5
+ ### New Features
6
+
7
+ - **HUMAIN Node login** — Connect with an API key and optional endpoint, discover available coding models, and track session token usage. See [HUMAIN Node](docs/providers.md#humain-node).
8
+
9
+ ### Added
10
+
11
+ - Added HUMAIN Node API-key authentication, dynamic model discovery, OpenAI Responses, Chat Completions, and Anthropic Messages routing, and actionable request diagnostics. See [HUMAIN Node](docs/providers.md#humain-node).
12
+ - Added masked secret entry and cancellable multi-step prompts to interactive provider login.
13
+
14
+ ### Fixed
15
+
16
+ - Respected structured provider retryability and `Retry-After` deadlines in automatic turn retries.
17
+ - Fixed configured HUMAIN Node models being unavailable during initial headless model selection and `--list-models`.
18
+ - Fixed SDK imports and programmatic login against published Pi dependencies by routing package entry points through the bundled runtime.
19
+
3
20
  ## [0.1.0] - 2026-09-08
4
21
 
5
22
  ### New Features