@agentforge/testing 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 (2) hide show
  1. package/README.md +13 -3
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -1,8 +1,16 @@
1
1
  # @agentforge/testing
2
2
 
3
- Testing utilities and helpers for the AgentForge framework.
3
+ > Testing utilities and helpers for the AgentForge framework
4
4
 
5
- ## Installation
5
+ [![npm version](https://img.shields.io/npm/v/@agentforge/testing)](https://www.npmjs.com/package/@agentforge/testing)
6
+ [![TypeScript](https://img.shields.io/badge/TypeScript-5.9-blue)](https://www.typescriptlang.org/)
7
+ [![License](https://img.shields.io/badge/license-MIT-green)](../../LICENSE)
8
+
9
+ ## ๐ŸŽ‰ Status: Production Ready & Published
10
+
11
+ **Complete testing toolkit** | **Full TypeScript support** | **Comprehensive documentation**
12
+
13
+ ## ๐Ÿ“ฆ Installation
6
14
 
7
15
  ```bash
8
16
  npm install --save-dev @agentforge/testing
@@ -12,13 +20,15 @@ pnpm add -D @agentforge/testing
12
20
  yarn add -D @agentforge/testing
13
21
  ```
14
22
 
15
- ## Features
23
+ ## โœจ Features
16
24
 
17
25
  - ๐ŸŽญ **Mock Factories** - Create mock LLMs, tools, and states for testing
18
26
  - ๐Ÿ”ง **Test Helpers** - Assertion helpers and state builders
19
27
  - ๐Ÿ“ฆ **Fixtures** - Pre-built sample agents, tools, and conversations
20
28
  - ๐Ÿƒ **Test Runners** - Agent test runner and conversation simulator
21
29
  - ๐Ÿ“ธ **Snapshot Testing** - State and message snapshot utilities
30
+ - โœ… **Full TypeScript** - Complete type safety and inference
31
+ - ๐Ÿงช **Vitest Integration** - Works seamlessly with Vitest
22
32
 
23
33
  ## Quick Start
24
34
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentforge/testing",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Testing utilities and helpers for AgentForge framework",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -20,8 +20,8 @@
20
20
  "dependencies": {
21
21
  "@langchain/core": "^0.3.23",
22
22
  "zod": "^3.24.1",
23
- "@agentforge/core": "0.1.0",
24
- "@agentforge/patterns": "0.1.0"
23
+ "@agentforge/core": "0.1.1",
24
+ "@agentforge/patterns": "0.1.1"
25
25
  },
26
26
  "devDependencies": {
27
27
  "@eslint/js": "^9.17.0",