@hazeljs/cli 0.6.0 → 0.6.5

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hazeljs-ai-native-app",
3
- "version": "0.6.0",
3
+ "version": "0.6.5",
4
4
  "description": "A HazelJS AI-native application with agents, RAG, and chat",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
package/README.md CHANGED
@@ -286,9 +286,30 @@ npm run lint # Lint
286
286
 
287
287
  Contributions are welcome! Please read our [Contributing Guide](../../CONTRIBUTING.md) for details.
288
288
 
289
+ ## For LLM Agents & Tool Integration
290
+
291
+ The CLI includes a machine-readable manifest (`cli-manifest.json`) that enables perfect integration with AI agents:
292
+
293
+ ```bash
294
+ # Get all available generators as JSON
295
+ hazel g --list --list-json
296
+
297
+ # Preview changes without writing files
298
+ hazel g controller users --dry-run --json
299
+
300
+ # Get machine-readable output for any command
301
+ hazel g service users --json
302
+ ```
303
+
304
+ The manifest is automatically generated during build and always reflects the current package version. It includes:
305
+ - Complete command schemas with options and arguments
306
+ - All available generators with their capabilities
307
+ - Package registry for `hazel add` commands
308
+ - JSON schema validation for agent tool-use
309
+
289
310
  ## License
290
311
 
291
- Apache 2.0 © [HazelJS](https://hazeljs.ai)
312
+ Apache-2.0 © [HazelJS](https://hazeljs.ai)
292
313
 
293
314
  ## Links
294
315