Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

frontagent

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

frontagent - npm Package Compare versions

Comparing version
1.0.8
to
1.0.9
+12
-0
CHANGELOG.md

@@ -7,2 +7,14 @@ # Changelog

## [1.0.9] - 2026-05-20
### Fixed
- **mcp-shell**: Enforced the `timeout` parameter that was previously accepted but never used, preventing runaway commands from hanging indefinitely (default 60s with SIGTERM/SIGKILL escalation).
- **mcp-shell**: Added a 10MB output size cap to prevent OOM when commands produce excessive stdout/stderr.
- **shared**: Fixed `matchGlob` to escape regex metacharacters (`.`, `(`, `)`, `[`, `]`, `+`, `{`, `}`) before glob-to-regex conversion. Previously `src/utils.ts` would incorrectly match `src/utilsXts`.
- **shared**: Fixed `deepMerge` to skip `undefined` source values instead of overwriting existing target values. Explicit `null` still overwrites as intended.
- **mcp-file**: Fixed `isRegularFile` and `isDirectory` to return `false` for non-existent paths instead of throwing `ENOENT`.
### Changed
- **shared**: Extracted `DEFAULT_LLM_TEMPERATURE` (0.2) and `DEFAULT_LLM_MAX_TOKENS` (4096) as shared constants. Previously CLI used 0.2 while runtime-node used 0.7, causing inconsistent model behavior.
## [1.0.7] - 2026-05-20

@@ -9,0 +21,0 @@

+2
-2
{
"name": "frontagent",
"version": "1.0.8",
"version": "1.0.9",
"description": "FrontAgent CLI and VS Code extension for frontend AI engineering with SDD constraints, MCP-controlled execution, and RAG planning",

@@ -21,3 +21,3 @@ "type": "module",

"scripts": {
"build": "turbo build && node build.mjs && pnpm --dir apps/vscode package",
"build": "turbo build && node build.mjs && node scripts/sync-vscode-version.mjs && pnpm --dir apps/vscode package",
"bundle": "node build.mjs",

@@ -24,0 +24,0 @@ "dev": "turbo dev",

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display