@agentuity/frontend 0.0.108 → 0.0.110

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/AGENTS.md +1 -0
  2. package/package.json +3 -3
package/AGENTS.md CHANGED
@@ -71,6 +71,7 @@ src/
71
71
  - Test with Bun test runner
72
72
  - Mock browser APIs where needed (fetch, WebSocket, EventSource)
73
73
  - Ensure all utilities work without framework dependencies
74
+ - When running tests, prefer using a subagent (Task tool) to avoid context bloat from test output
74
75
 
75
76
  ## Publishing Checklist
76
77
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentuity/frontend",
3
- "version": "0.0.108",
3
+ "version": "0.0.110",
4
4
  "license": "Apache-2.0",
5
5
  "author": "Agentuity employees and contributors",
6
6
  "type": "module",
@@ -26,10 +26,10 @@
26
26
  "prepublishOnly": "bun run clean && bun run build"
27
27
  },
28
28
  "dependencies": {
29
- "@agentuity/core": "0.0.108"
29
+ "@agentuity/core": "0.0.110"
30
30
  },
31
31
  "devDependencies": {
32
- "@agentuity/test-utils": "0.0.108",
32
+ "@agentuity/test-utils": "0.0.110",
33
33
  "@types/bun": "latest",
34
34
  "bun-types": "latest",
35
35
  "typescript": "^5.9.0"