@denizokcu/haze 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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 0.1.1 - 2026-06-07
6
+
7
+ - Bundled ripgrep with `@vscode/ripgrep` and updated the `grep` tool to use the package-provided binary path, removing the requirement for users to install `rg` separately or expose it on `PATH`.
8
+ - Updated release documentation and site copy for the 0.1.1 patch release.
9
+
5
10
  ## 0.1.0 - 2026-06-07
6
11
 
7
12
  - Added ripgrep-backed `grep` for fast workspace search with regex, glob, context-line, case-insensitive, and result-limit options.
@@ -3,6 +3,7 @@ import { promisify } from 'node:util';
3
3
  import fs from 'node:fs/promises';
4
4
  import path from 'node:path';
5
5
  import { tool } from 'ai';
6
+ import { rgPath } from '@vscode/ripgrep';
6
7
  import { z } from 'zod';
7
8
  import { walkDir } from '../utils/fs.js';
8
9
  import { workspaceRoot, resolveWorkspacePath, workspaceRelativePath } from '../utils/path.js';
@@ -330,7 +331,7 @@ export const hazeTools = {
330
331
  args.push('--', pattern, absolutePath);
331
332
  let stdout = '';
332
333
  try {
333
- const result = await execFile('rg', args, { cwd: workspaceRoot(), timeout: 30_000 });
334
+ const result = await execFile(rgPath, args, { cwd: workspaceRoot(), timeout: 30_000 });
334
335
  stdout = result.stdout;
335
336
  }
336
337
  catch (error) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@denizokcu/haze",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "A pragmatic agentic CLI for building apps from the terminal.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -45,6 +45,7 @@
45
45
  "dependencies": {
46
46
  "@ai-sdk/openai": "3.0.67",
47
47
  "@inquirer/prompts": "8.5.2",
48
+ "@vscode/ripgrep": "1.18.0",
48
49
  "ai": "6.0.194",
49
50
  "cli-highlight": "2.1.11",
50
51
  "commander": "15.0.0",