micro-models-agent 0.12.0 → 0.12.2

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/dist/i18n/en.json CHANGED
@@ -185,8 +185,6 @@
185
185
  "cli.manage_context": "Manage context window",
186
186
  "cli.invalid_context_size": "Invalid context size. Must be a number >= 1024",
187
187
  "cli.context_set": "Context window set to: {size} tokens",
188
- "cli.manage_context": "Manage context window",
189
- "cli.invalid_context_size": "Invalid context size. Must be a number >= 1024",
190
188
  "repl.reload": "Reload agent with current config",
191
189
  "repl.reload_usage": "Usage: /reload",
192
190
  "repl.reloading": "Reloading agent...",
@@ -5,7 +5,7 @@ import { isPathInScope } from "../modules/security/path-validator";
5
5
  import { DEFAULT_SECURITY_CONFIG } from "../config/security";
6
6
  import { logSecurityBlock } from "../modules/security/audit-log";
7
7
  /** Default number of lines returned when the caller omits `limit`. */
8
- const DEFAULT_LIMIT = 300;
8
+ const DEFAULT_LIMIT = 100;
9
9
  export const readFileTool = {
10
10
  name: "read_file",
11
11
  description: `Read a file from the filesystem. Reads up to ${DEFAULT_LIMIT} lines at a time by default; use offset to page through large files.`,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "micro-models-agent",
3
- "version": "0.12.0",
3
+ "version": "0.12.2",
4
4
  "description": "Micro Models Agent (MMA) — LLM agent harness for small models (Qwen3.5-9B, 32K-64K context)",
5
5
  "type": "module",
6
6
  "bin": {