llmist 0.1.2 → 0.1.3

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/README.md CHANGED
@@ -38,14 +38,23 @@ bun add llmist
38
38
  ## 🖥️ Command Line Interface
39
39
 
40
40
  ```bash
41
- # Quick chat
42
- bunx llmist chat "Explain TypeScript generics" --model haiku
41
+ # Quick completion
42
+ bunx llmist complete "Explain TypeScript generics" --model haiku
43
43
 
44
44
  # Agent with tools
45
45
  bunx llmist agent "Calculate 15 * 23" --gadget ./calculator.ts --model sonnet
46
46
 
47
47
  # Pipe input
48
- cat document.txt | llmist chat "Summarize" --model gpt-5-nano
48
+ cat document.txt | llmist complete "Summarize" --model gpt-5-nano
49
+ ```
50
+
51
+ **Built-in gadgets** are included by default in agent mode:
52
+ - `AskUser` - Prompts for user input when clarification is needed
53
+ - `TellUser` - Displays important messages (info/success/warning/error) and can end conversations
54
+
55
+ ```bash
56
+ # Disable built-in gadgets
57
+ bunx llmist agent "Task" --no-builtins -g ./my-tools.ts
49
58
  ```
50
59
 
51
60
  📖 **[CLI Reference](./docs/CLI.md)** | **[CLI Gadgets Guide](./docs/CLI_GADGETS.md)**
package/dist/cli.cjs CHANGED
@@ -4255,7 +4255,7 @@ var import_commander3 = require("commander");
4255
4255
  // package.json
4256
4256
  var package_default = {
4257
4257
  name: "llmist",
4258
- version: "0.1.2",
4258
+ version: "0.1.3",
4259
4259
  description: "Universal TypeScript LLM client with streaming-first agent framework. Works with any model - no structured outputs or native tool calling required. Implements its own flexible grammar for function calling.",
4260
4260
  type: "module",
4261
4261
  main: "dist/index.cjs",
@@ -4300,7 +4300,7 @@ var package_default = {
4300
4300
  prepare: "node scripts/install-hooks.js || true"
4301
4301
  },
4302
4302
  bin: {
4303
- llmist: "dist/cli.cjs"
4303
+ llmist: "dist/cli.js"
4304
4304
  },
4305
4305
  repository: {
4306
4306
  type: "git",